@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400&display=swap');

:root {
    --primary-color: #a484e8;
    --secondary-color: #111111;
    --text-color: #ffffff;
    --background-dark: #a484e8;
    --accent-light: #a484e8;
    --accent-white: #ffffff;
    --accent-grey: #e6e6e6;
    --dark-purple: #a484e8;
    --title-color: #a484e8;
    --background-color: #111111;
    /* Admin accent aliases */
    --accent-color: #a484e8;
    --accent-dark: #8b6ad4;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: var(--background-color);
    color: var(--secondary-color);
    position: relative;
    height: 100vh;
}

/* Navbar Styles */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: transparent;
    z-index: 9998;
}

.navbar-scrolled {
    position: fixed;
    top: -100px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    transition: transform 0.3s ease-in-out;
    transform: translateY(-100%);
}

.navbar-scrolled.visible {
    transform: translateY(100px);
}

.logo {
    font-size: 2rem;
    font-weight: 200;
    color: var(--primary-color);
    font-family: 'Great Vibes', cursive;
    line-height: 1.2;
    text-decoration: none;
}

.nav-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9997;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.nav-menu.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.nav-menu a {
    color: var(--accent-white);
    text-decoration: none;
    font-size: 1.8rem;
    margin: 1rem 0;
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    color: var(--accent-light);
}

@media (max-width: 768px) {
    .nav-menu {
        display: flex;
    }
}

.navbar.scrolled .nav-links a {
    color: var(--accent-white);
    opacity: 1;
    transform: translateY(0);
}

.nav-links.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.nav-links.active a {
    transform: translateY(0);
    opacity: 1;
}

.nav-links.active a:nth-child(1) {
    transition-delay: 0.2s;
}

.nav-links.active a:nth-child(2) {
    transition-delay: 0.3s;
}

.nav-links.active a:nth-child(3) {
    transition-delay: 0.4s;
}

.nav-links.active a:nth-child(4) {
    transition-delay: 0.5s;
}

/* Hero Section */
.hero {
    position: relative;
    margin-top: 0;
    background: #111111;
    overflow: hidden;
}

.hero-content {
    position: absolute;
    text-align: center;
    flex: 1;
    left: 50%;
    top: 50%;
    width: 80%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.hero-image {
    display: block;
    left: 0;
    top: 0;
    width: 100%;
    min-height: 50vh;
    max-height: 70vh;
    opacity: 0.4;
    object-fit: cover;
    z-index: 1;
}

.hero h1 {
    font-size: 1.42rem;
    margin-bottom: 0.5rem;
    color: lightgrey;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    letter-spacing: 0.05em;
    text-transform: lowercase;
}

.hero h1::first-letter {
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: calc(3vw + 20px);
    margin-bottom: 1rem;
    color: white;
    /* color: #a484e8; */
    white-space: nowrap;
    font-family: 'Great Vibes', cursive;
    font-weight: normal;
    letter-spacing: 0.02em;
}

.hero p {
    font-size: calc(1vw + 5px);
    margin-bottom: 1.5rem;
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.8;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    letter-spacing: 0.05em;
}

@media (max-width: 1024px) {
    .hero-content {
        max-width: 100%;
        text-align: center;
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.1rem;
    }
}

/* Frame Section */

.clip-path-svg {
    width: 0;
    height: 0;
    position: absolute;
}

.frame-section {
    position: relative;
    bottom: 100px;
    margin: 0 0 -100px 0;
    width: 100%;
    background: none;
    padding: 0;
    clip-path: url(#frame-clip-path);
}

.frame-content {
    position: relative;
    display: flex;
    width: 100%;
    overflow: hidden;
}

.frame-content::before {
    content: '';
    position: absolute;
    top: -250px;
    left: 0;
    width: 100%;
    height: 250px;
    clip-path: polygon(0 100%, 50.05% 70%, 50.05% 100%);
    background-color: #1e0f2f;
    z-index: 2;
}

.frame-content::after {
    content: '';
    position: absolute;
    top: -250px;
    left: 50%;
    width: 50%;
    height: 250px;
    clip-path: polygon(0 70%, 100% 100%, 0 100%);
    background-color: black;
    z-index: 0;
}

.frame-left {
    padding: 80px 0 80px 2rem;
    flex: 1;
    background: rgb(227,181,169);
    box-sizing: border-box;
    color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
}

.frame-left .timetable {
    font-size: calc(0.75vw + 10px);
    display: grid;
    grid-template-columns: 1fr auto;
    column-gap: 1em;
    margin-left: auto;
}

.frame-left h2 {
    font-size: calc(2vw + 15px);
    margin-bottom: 2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: black;
    text-align: left;
    margin-left: 0;
    text-align: center;
    width: 100%;
}

.frame-left .hours {
    margin-bottom: 0.3rem;
    margin-left: auto;
    width: 80%;
    min-width: calc(20vw + 50px);
    font-weight: 700;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    padding-right: 0;
    overflow: hidden;
}

.frame-left .hours::after {
    content: '';
    right: 0;
    flex-grow: 1;
    height: 2px;
    background-color: black;
    z-index: 1;
}

.frame-right {
    flex: 1;
    background: black;
    padding: 2rem 3rem;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.salon-image {
    width: calc(30% + 200px);
    object-fit: cover;
}

.services {
    padding: 4rem calc(20% - 100px);
    background-color: #111111;
    color: var(--accent-white);
}

@media (max-width: 1000px) {
    .services {
        padding: 4rem 0;
    }
}

@media (max-width: 600px) {

    .salon-image {
        width: 100%;
        clip-path: url(#frame-clip-path);
        height: 30vh;
    }

    .frame-content {
        flex-direction: column-reverse;
    }

    .frame-section {
        clip-path: none;
    }

    .frame-left {
        padding: 2rem 0;
        transform: translateY(-1px);
    }

    .frame-left .hours {
        min-width: calc(35vw + 50px);
    }

    .frame-content::before,
    .frame-content::after {
        width: 100%;
    }

    .frame-right {
        margin-top: 1rem;
    }
}

/* Services Section */
.service-choice {
    display: none;
}

.service-choice h2 {
    font-size: 2rem;
    color: #111111;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    letter-spacing: 0.05em;
    margin: 0;
}



.salon-header {
    text-align: center;
    margin-bottom: 3rem;
}

.salon-header h1 {
    font-size: 2.5rem;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.salon-header p {
    font-size: 1rem;
    color: #888;
    font-family: 'Montserrat', sans-serif;
}

.service-categories {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin: 3rem auto;
    width: 100%;
}

.service-category {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    width: fit-content;
    cursor: pointer;
    transition: transform 0.3s ease;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
}

.service-category:focus {
    outline: none;
}

.service-category:focus-visible {
    outline: 2px solid #a484e8;
    outline-offset: 4px;
    border-radius: 4px;
}

.service-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    background-color: transparent;
    mix-blend-mode: normal;
    filter: brightness(0.85) opacity(0.85);
    transition: filter 0.3s ease;
}

.category-title {
    color: #a484e8;
    font-size: 1.2rem;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.05em;
    margin: 0;
    text-align: center;
    opacity: 0.85;
    transition: all 0.3s ease;
}

.service-details-category {
    display: none;
    margin-top: 0;
    padding-top: 0;
    max-width: 800px;
    overflow: hidden;
}

.service-details-category.active {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow: hidden;
}

.service-details-list {
    padding: 1rem;
    margin-top: 0;
    max-width: 800px;
    overflow: hidden;
}

.service-list {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
    padding: 0 2rem;
    overflow: hidden;
    width: 100%;
}

.service-categories-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0;
    overflow: hidden;
}

.service-category-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    cursor: pointer;
}

@media (max-width: 1000px) {
    .service-category-item {
        width: 100%;
        padding: 0.25em 0.5em;
    }

    .service-list {
        padding: 0 5%;
    }
}

.select-service-btn {
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 6px 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin: 1rem 0.8rem 0 auto;
}

.select-service-btn:hover {
    background-color: var(--dark-purple);
    transform: translateY(-2px);
}

.service-category-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.service-category-item.active {
    border: 1px solid var(--primary-color);
    color: var(--text-color);
}

@media screen and (max-width: 1000px) {
    .service-categories-list {
        overflow: hidden;
        max-height: none;
        border-bottom: 3px solid #eee;
        padding-bottom: 1rem;
        margin-bottom: 1rem;
    }

    .service-list {
        grid-template-columns: 1fr;
        gap: 1rem;
        overflow: hidden;
    }

    .service-details-list {
        padding: 0;
        overflow: hidden;
    }

    .service-detail-item {
        grid-template-columns: 1fr auto;
        gap: 1rem;
        overflow: hidden;
    }
}

.service-category-item h3 {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.service-category-item .price {
    font-size: 1rem;
    color: #a484e8;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    letter-spacing: 0.05em;
    white-space: nowrap;
    margin-left: 5px;
}

.service-detail-item {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    max-width: 800px;
    overflow: hidden;
}

.service-detail-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.service-detail-item.active {
    border: 1px solid var(--primary-color);
    color: var(--text-color);
}

.service-detail-item .service-info h3 {
    font-size: 17.6px;
    margin-bottom: 5px;
    font-weight: 500;
    color: #ffffff;
}

.service-info {
    flex: 1;
    margin-right: 1rem;
}

.service-info p, .service-duration {
    font-size: 14px;
    color: var(--accent-white);
    margin-bottom: 5px;
}

.service-detail-item .service-price {
    font-size: 14px;
    color: var(--primary-color);
    margin: 0 0.15rem;
    font-weight: 400;
}

.service-price {
    font-size: 14px;
    color: #a484e8;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    letter-spacing: 0.05em;
    white-space: nowrap;
    padding-left: 1rem;
}

.select-btn {
    padding: 0.5rem 1rem;
    background-color: transparent;
    border: 1px solid #a484e8;
    border-radius: 4px;
    color: #a484e8;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-btn:hover {
    background-color: #a484e8;
    color: #fff;
}

@media (max-width: 1000px) {
    .service-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-details-list {
        padding: 0;
    }

    .service-detail-item {
        grid-template-columns: 1fr auto;
        gap: 1rem;
    }

    .select-btn {
        grid-column: 1 / -1;
        justify-self: end;
    }
}

.service-image {
    width: 500px;
    height: 350px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 1.5rem;
    background-color: rgba(164, 132, 232, 0.1);
    border-radius: 8px;
}

.service-image h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.service-image .price {
    font-size: 1.1rem;
    color: #a484e8;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-info {
    grid-row: 1 / 3;
    padding-right: 1rem;
}

.service-info h3 {
    font-size: 1.5rem;
    color: var(--accent-white);
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.service-info p {
    font-size: 1rem;
    color: #888;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.service-price {
    font-size: 1.5rem;
    color: #a484e8;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    letter-spacing: 0.05em;
    white-space: nowrap;
    padding-left: 2rem;
}

@media (max-width: 1024px) {
    .service-item {
        grid-template-columns: 300px 1fr auto;
        gap: 2rem;
    }

    .service-image {
        width: 300px;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .service-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-image {
        width: 100%;
        height: 200px;
    }

    .service-price {
        padding-left: 0;
    }

    .service-title h2 {
        font-size: 2.5rem;
    }

    .service-detail-item .service-info h3 {
        font-size: 17.6px;
    }
}

/* Hamburger Menu */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    width: 30px;
    height: 30px;
    position: relative;
    padding: 5px;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background-color: var(--text-color);
    position: absolute;
    transition: all 0.4s ease-in-out;
    transform-origin: center;
}

.hamburger span:first-child {
    top: 8px;
}

.hamburger span:nth-child(2) {
    top: 14px;
}

.hamburger span:last-child {
    top: 20px;
}

.hamburger.active span:first-child {
    transform: rotate(45deg);
    top: 14px;
}

.hamburger.active span:nth-child(2) {
    transform: scaleX(0);
    opacity: 0;
}

.hamburger.active span:last-child {
    transform: rotate(-45deg);
    top: 14px;
}

.user-icon {
    width: 50px;
    height: 50px;
    overflow: hidden;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 1rem;
    color: #ffffff;
    font-size: 20px;
}

.user-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #a484e8;
        padding: 1rem 0;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        align-items: center;
        background-color: #a484e8;
    }

    .nav-links a {
        margin: 0.5rem 0;
    }

    .hamburger {
        display: flex;
    }

    .hero h1 {
        font-size: 1.1rem;
    }
}

.scroll-to-top {
    position: fixed;
    right: 30px;
    top: 30px;
    width: 32px;
    height: 32px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 10000;
    pointer-events: auto;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.scroll-to-top i {
    color: var(--accent-grey);
    font-size: 16px;
    pointer-events: none;
}

.scroll-to-top:hover {
    transform: scale(1.1);
}

/* Why Us Section */
.why-us {
    padding: 6rem 10%;
    background-color: #111111;
    text-align: center;
}

.why-us .main-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    letter-spacing: 0.05em;
    line-height: 1.2;
}

.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.section-title .line {
    height: 2px;
    width: 100px;
    background-color: #a484e8;
}

.section-title h2 {
    color: #a484e8;
    font-size: 1.5rem;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.05em;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-item {
    text-align: center;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item .icon {
    font-size: 2rem;
    color: #a484e8;
    margin-bottom: 1rem;
    font-weight: 600;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    border-radius: 50%;
    transition: all 0.4s ease;
    position: relative;
}

.feature-item:hover .icon {
    background-color: #a484e8;
    color: #ffffff;
    transform: scale(1.2);
    box-shadow: 0 8px 20px rgba(164, 132, 232, 0.4);
}

.feature-item h3 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 0.8rem;
    font-weight: 400;
    line-height: 1.3;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.05em;
}

.feature-item p {
    font-size: 0.9rem;
    color: #888;
    line-height: 1.5;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Shop Section */
.shop {
    position: relative;
    padding: 8rem 10% 4rem;
    background-color: #f5f5f5;
    text-align: center;
    margin-top: -2rem;
    padding-top: 100px;
}

.shop::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 0;
    height: 0;
    margin: 0 auto;
    border-left: 50vw solid transparent;
    border-right: 50vw solid transparent;
    border-top: 50px solid #111111;
}

@media screen and (max-width: 1000px) {
    .shop {
        padding: 4rem 5%;
    }
}

.shop-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.shop-header .line {
    height: 2px;
    width: 100px;
    background-color: #a484e8;
}

.shop-header h3 {
    color: #a484e8;
    font-size: 1.5rem;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.05em;
}

.shop h2 {
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #111111;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.product-card {
    background: white;
    padding: 1rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-image {
    position: relative;
    margin-bottom: 1rem;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.product-logo {
    position: absolute !important;
    top: 10px;
    left: 10px;
    width: 65px !important;
    height: auto !important;
    z-index: 2;
}

.product-info h3 {
    font-size: 1rem;
    color: #111111;
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    letter-spacing: 0.05em;
    min-height: 3em;
}

.product-info p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
}

.price {
    font-size: 1.2rem;
    color: #a484e8;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    white-space: nowrap;
}

@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }

    .shop h2 {
        font-size: 2.5rem;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 8rem 10%;
    background-color: #111111;
    text-align: center;
}

/* Force remove any potential triangles from testimonials */
.testimonials::before,
.testimonials::after {
    display: none !important;
}



.testimonials-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    position: relative;
}

.testimonials-header .line {
    height: 2px;
    width: 100px;
    background-color: #a484e8;
}

.testimonials-header h3 {
    color: #a484e8;
    font-size: 1.5rem;
    font-weight: 300;
    white-space: nowrap;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.05em;
}

.testimonials h2 {
    font-size: 3.5rem;
    margin-bottom: 4rem;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.testimonials-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonials-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(to left, transparent, #111111);
    pointer-events: none;
    z-index: 2;
}

.testimonials-container::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(to right, transparent, #111111);
    pointer-events: none;
    z-index: 2;
}

.testimonials-grid {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0 150px;
    margin: 0 auto;
    position: relative;
    cursor: grab;
    width: 100%;
    justify-content: flex-start;
}

.testimonials-grid:active {
    cursor: grabbing;
}

.testimonials-grid::-webkit-scrollbar {
    display: none;
}

.testimonials-grid {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.testimonial-card {
    text-align: center;
    text-decoration: none;
    min-width: 300px;
    max-width: 300px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(164, 132, 232, 0.2);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(164, 132, 232, 0.2);
}

.testimonial-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #a484e8;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content p {
    font-size: 1rem;
    color: #888;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.testimonial-content h3 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.testimonial-content .stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 15px;
}

.testimonial-content .stars img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.client-type {
    font-size: 0.9rem;
    color: #a484e8;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .testimonials-container {
        max-width: 100%;
    }
    
    .testimonials-container::before {
        width: 60px;
    }
    
    .testimonials-container::after {
        width: 60px;
    }
    
    .testimonials-grid {
        gap: 1rem;
        padding: 0 80px;
    }
    
    .testimonial-card {
        min-width: 250px;
        max-width: 250px;
        padding: 1rem;
    }

    .testimonials h2 {
        font-size: 2.5rem;
    }
}

/* Booking Button */
.booking-button-container {
    opacity: 0.8;
    position: fixed;
    bottom: 40px;
    right: 50px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.booking-button-container:hover {
    opacity: 1;
}

.booking-circle {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 2px solid #a484e8;
    border-radius: 50%;
    animation: circleAnimation 2s infinite ease-in-out;
}

.booking-button {
    position: relative;
    width: 100px;
    height: 100px;
    background: #a484e8;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    text-transform: lowercase;
    transition: transform 0.3s ease;
    line-height: 1.2;
}

.booking-button span {
    font-size: 1rem;
}

.booking-button:hover {
    transform: scale(1.05);
}

@keyframes circleAnimation {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.service-details p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.4;
    position: relative;
    overflow: hidden;
    max-height: 1.4em;
    transition: max-height 0.3s ease;
}

.service-details p.expanded {
    max-height: 500px;
}

.service-details p:not(.expanded)::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, white 80%);
}

.more-btn {
    font-size: 0.9rem;
    color: #666;
    background: none;
    border: none;
    padding: 0;
    margin-left: 0.5rem;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    display: inline-block;
}

.more-btn:hover {
    color: #a484e8;
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .navbar-right {
        gap: 1rem;
    }
}

.icon-title {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.icon-title h2 {
    color: #a484e8;
    font-size: 1.5rem;
    font-weight: 300;
    white-space: nowrap;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.05em;
    margin: 0;
}

.icon-circle {
    width: 64px;
    height: 64px;
    background: #111111;
    border: 2px solid #a484e8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto;
}

.service-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.service-category {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 1rem 0;
    gap: 1rem;
    width: fit-content;
}

.category-title {
    color: #a484e8;
    font-size: 2rem;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.05em;
    margin: 0;
    text-align: center;
}

.service-categories {
    display: flex;
    gap: 4rem;
    margin: 3rem 0;
}

.service-category {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: fit-content;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.service-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    background-color: transparent;
    mix-blend-mode: normal;
    filter: brightness(0.85) opacity(0.85);
    transition: filter 0.3s ease;
}

.category-title {
    color: #a484e8;
    font-size: 1.2rem;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.05em;
    margin: 0;
    text-align: center;
    opacity: 0.85;
    transition: all 0.3s ease;
}

@media screen and (max-width: 600px) {

    .service-categories {
        flex-wrap: wrap;
        gap: 0;
    }

    .service-category {
        width: 50%;
    }
}



.service-category:hover,
.service-category.active {
    transform: translateY(-10px) scale(1.05);
}

.service-category:hover .service-icon,
.service-category.active .service-icon {
    filter: brightness(1.2) opacity(1);
}

.service-category:hover .category-title,
.service-category.active .category-title {
    color: #b89df0;
    opacity: 1;
}

@media (max-width: 768px) {
    .service-category-titles .subcategories {
        grid-template-columns: 1fr;
    }
}

.sign-in-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.sign-in-form input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
}

.sign-in-form button {
    width: 100%;
    padding: 1rem;
    background-color: #a484e8;
    color: white;
    border: none;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.sign-in-form button:hover {
    background-color: #8b6ad4;
}

.sign-in-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 100px);
    padding: 2rem;
}

.sign-in-container h1 {
    color: #a484e8;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.password-container {
    position: relative;
    width: 100%;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #666;
    padding: 5px;
    transition: color 0.3s ease;
}

.toggle-password:hover {
    color: #a484e8;
}

.password-container input {
    padding-right: 35px !important;
}

/* Worker Dashboard Styles */
.dashboard-body {
    background-color: #f5f5f5;
    min-height: 100vh;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.dashboard-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.dashboard-header {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.salon-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.dashboard-logo {
    width: 60px;
    height: auto;
}

.salon-details h1 {
    font-size: 1.5rem;
    color: #111;
    margin: 0;
    font-weight: 500;
}

.salon-details p {
    color: #666;
    margin: 0.2rem 0 0;
    font-size: 0.9rem;
}

.dashboard-content {
    display: grid;
    gap: 2rem;
}

.personal-account-section {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.personal-account-section h2 {
    font-size: 1.2rem;
    color: #111;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.account-info {
    margin-bottom: 2rem;
}

.worker-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f8f8;
    border-radius: 8px;
}

.worker-initial {
    width: 40px;
    height: 40px;
    background: #a484e8;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 500;
}

.worker-details h3 {
    font-size: 1rem;
    color: #111;
    margin: 0;
    font-weight: 500;
}

.worker-details p {
    color: #666;
    margin: 0.2rem 0 0;
    font-size: 0.9rem;
}

.dashboard-menu {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    color: #666;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.menu-item i {
    width: 20px;
}

.menu-item:hover, .menu-item.active {
    background: #f8f8f8;
    color: #a484e8;
}

.menu-item.exit {
    margin-top: auto;
    color: #ff4444;
}

.menu-item.exit:hover {
    background: #fff1f1;
}


.bookings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.bookings-header h2 {
    font-size: 1.2rem;
    color: #111;
    margin: 0;
    font-weight: 500;
}

.date-picker input {
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    width: 200px;
}

.appointments-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}



.appointment-time {
    font-size: 1.1rem;
    color: #a484e8;
    font-weight: 500;
    min-width: 60px;
}

.appointment-details h3 {
    font-size: 1.1rem;
    color: #111;
    margin: 0 0 0.5rem;
    font-weight: 500;
}

.appointment-details p {
    color: #666;
    margin: 0.3rem 0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.appointment-details p i {
    color: #a484e8;
    width: 16px;
}

.appointment-details .comment {
    margin-top: 0.8rem;
    padding-top: 0.8rem;
    border-top: 1px solid #ddd;
}

.no-appointments {
    text-align: center;
    padding: 3rem;
    color: #666;
}

.no-appointments i {
    font-size: 3rem;
    color: #ddd;
    margin-bottom: 1rem;
}

.no-appointments p {
    margin: 0;
}

@media (max-width: 1024px) {
    .dashboard-content {
        grid-template-columns: 1fr;
    }

    .personal-account-section {
        order: 2;
    }
}

@media (max-width: 768px) {
    .dashboard-container {
        padding: 1rem;
    }

    .bookings-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .appointment-time {
        font-size: 1rem;
    }
}

/* Client Review Section Styles */
.add-review-section {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    margin-bottom: 2rem;
}

.add-review-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #a484e8 0%, #9370db 100%);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(164, 132, 232, 0.3);
}

.add-review-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(164, 132, 232, 0.4);
    background: linear-gradient(135deg, #9370db 0%, #8a2be2 100%);
}

.add-review-btn i {
    font-size: 1.1rem;
}

/* Client Review Modal Styles */
.client-review-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.client-review-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.client-review-modal .modal-content {
    position: relative;
    background: white;
    border-radius: 20px;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.client-review-modal .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.client-review-modal .modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: #333;
    font-weight: 600;
}

.close-btn {
    background: none;
    border: none;
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 0;
    line-height: 1;
}

.close-btn:hover {
    color: #666;
}

.client-review-modal form {
    padding: 2rem;
}

.client-review-modal .form-group {
    margin-bottom: 1.5rem;
}

.client-review-modal .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
}

.client-review-modal input,
.client-review-modal textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e1e1e1;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    resize: vertical;
}

.client-review-modal input:focus,
.client-review-modal textarea:focus {
    outline: none;
    border-color: #a484e8;
    box-shadow: 0 0 0 3px rgba(164, 132, 232, 0.1);
}

.client-review-modal textarea {
    min-height: 100px;
}

/* Star Rating Styles */
.star-rating {
    display: flex;
    gap: 0.3rem;
    margin-top: 0.5rem;
}

.star {
    font-size: 2rem;
    color: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
    -webkit-text-stroke: 2px #ffd700;
    text-stroke: 2px #ffd700;
}

.star:hover {
    transform: scale(1.05);
}

.star.active {
    color: #ffd700;
    -webkit-text-stroke: 2px #ffd700;
    text-stroke: 2px #ffd700;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.cancel-btn,
.submit-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cancel-btn {
    background: #f8f8f8;
    color: #666;
}

.cancel-btn:hover {
    background: #e8e8e8;
    color: #333;
}

.submit-btn {
    background: linear-gradient(135deg, #a484e8 0%, #9370db 100%);
    color: white;
}

.submit-btn:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(164, 132, 232, 0.3);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .client-review-modal .modal-content {
        border-radius: 15px;
        margin: 1rem;
    }
    
    .client-review-modal .modal-header,
    .client-review-modal form {
        padding: 1.5rem;
    }
    
    .client-review-modal .modal-header h3 {
        font-size: 1.3rem;
    }
    
    .star {
        font-size: 1.8rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .cancel-btn,
    .submit-btn {
        width: 100%;
        justify-content: center;
    }
}