:root {
    /* Core colors */
    --color-black: #1A1A1A;
    --color-white: #FFFFFF;
    --color-accent: #DDD1C2;

    /* Usage-based aliases */
    --bg-primary: var(--color-black);
    --text-primary: var(--color-white);
    --text-muted: rgba(255, 255, 255, 0.7);
    --border-light: rgba(255, 255, 255, 0.15);
    --accent-primary: var(--color-accent);

    /* Font families */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-color: rgba(221, 209, 194, 0.4) rgba(255, 255, 255, 0.05);
    scrollbar-width: thin;
}

html,
body {
    background-color: var(--bg-primary) !important;
    color: var(--text-primary) !important;
    font-family: var(--font-primary) !important;
}

/* Custom Scrollbar - Webkit (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
    background: rgba(221, 209, 194, 0.4);
    border-radius: 4px;
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(221, 209, 194, 0.7);
}

/* ======================== */
/* HEADER STYLES */
/* ======================== */

header {
    background-color: var(--bg-primary);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
}

.header-container {
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    gap: 1.5rem;
    position: relative;
    min-height: 70px;
}

/* HAMBURGER MENU */
.hamburger-menu {
    display: none;
    flex-shrink: 0;
}

.hamburger-toggle {
    background: none;
    /*border: 0.25px solid var(--color-accent);*/
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding: 0.5rem;
}

.hamburger-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    transition: all 0.3s ease;
    display: block;
}

.hamburger-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-toggle.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* LOGO */
.logo {
    flex-shrink: 0;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

/* NAVIGATION */
.header-nav {
    display: flex;
    justify-content: center;
    flex: 1;
    margin-left: 3rem;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.nav-list a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--accent-primary);
}

.nav-list a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--accent-primary);
}

/* NAV DROPDOWN MENUS */
.nav-item-dropdown {
    position: relative;
}

.nav-item-dropdown>a::after {
    content: '\f078';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 0.75rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.nav-item-dropdown:hover>a::after,
.nav-item-dropdown>a[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(26, 26, 26, 0.92) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    list-style: none;
    padding: 0.75rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    z-index: 1001;
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.dropdown-menu li {
    position: relative;
}

.dropdown-menu li:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(221, 209, 194, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
}

.dropdown-menu a {
    display: block;
    padding: 0.85rem 1.5rem;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: var(--accent-primary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: rgba(221, 209, 194, 0.1);
    color: var(--accent-primary);
    padding-left: 2rem;
}

.dropdown-menu a:hover::before {
    transform: scaleY(1);
}

/* HEADER ICONS */
.header-icons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
}

.icon-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.4rem;
    position: relative;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-link:hover {
    color: var(--accent-primary);
}

.wishlist-mobile-hidden {
    display: none;
}

/* BADGES */
.cart-badge,
.wishlist-badge,
.mobile-nav-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--accent-primary);
    color: var(--bg-primary);
    font-size: 0.65rem;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* SEARCH WRAPPER */
.search-wrapper {
    position: relative;
}

.search-toggle {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.search-toggle:hover {
    color: var(--accent-primary);
}

.search-modal {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 0.5rem;
    min-width: 408px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    display: none;
    z-index: 1000;
}

.search-modal.active {
    display: block;
}

.search-container {
    display: flex;
    gap: 0.5rem;
    position: relative;
}

.search-input {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-light);
    color: var(--text-primary);
    padding: 0.7rem 1rem;
    border-radius: 4px;
    font-family: var(--font-primary);
}

.search-input::placeholder {
    color: var(--text-muted);
}

.search-input:focus {
    outline: none;
    border-color: var(--accent-primary);
    background-color: rgba(255, 255, 255, 0.15);
}

.search-submit,
.search-close {
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.search-submit:hover,
.search-close:hover {
    color: var(--accent-primary);
}

.search-results-container {
    position: absolute;
    top: 140px;
    right: 0;
    background-color: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    max-height: 600px;
    overflow-y: auto;
    display: none;
    z-index: 999;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    padding: 1rem;
    min-width: 400px;
    width: max-content;
}

.search-results-container.active {
    display: block;
}

/* Search Results Styling */
.search-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(221, 209, 194, 0.1);
}

.results-count {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.view-all-link {
    color: var(--accent-primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.view-all-link:hover {
    transform: translateX(2px);
}

.search-results-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-height: 500px;
    overflow-y: auto;
}

.search-result-card {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(221, 209, 194, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.search-result-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(221, 209, 194, 0.2);
    transform: translateX(4px);
}

.result-image-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
}

.result-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.search-result-card:hover .result-product-image {
    transform: scale(1.05);
}

.result-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    background: rgba(16, 185, 129, 0.9);
    color: white;
    font-size: 0.65rem;
    padding: 3px 6px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.result-product-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    gap: 2px;
    padding: 2px 0;
}

.result-product-name {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1.3;
    letter-spacing: 0.2px;
}

.result-product-brand {
    margin: 0;
    font-size: 0.75rem;
    color: var(--accent-primary);
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    opacity: 0.85;
}

.result-product-description {
    margin: 0;
    font-size: 0.73rem;
    color: var(--text-muted);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1.4;
    opacity: 0.7;
}

.result-price-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 4px;
    border-top: 1px solid rgba(221, 209, 194, 0.08);
    gap: 0.5rem;
}

.result-price {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--accent-primary);
    letter-spacing: -0.3px;
}

.result-view-btn {
    background: linear-gradient(135deg, var(--accent-primary) 0%, #c9b8a8 100%);
    color: #1a1a1a;
    border: none;
    border-radius: 4px;
    padding: 5px 10px;
    font-size: 0.7rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.result-view-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(221, 209, 194, 0.3);
}

.search-empty {
    text-align: center;
    padding: 2rem 1rem;
}

.search-empty i {
    font-size: 2.5rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    display: block;
    opacity: 0.5;
}

.search-empty p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

.search-error {
    text-align: center;
    padding: 1.5rem;
    color: #ef4444;
    font-size: 0.9rem;
}

/* Scrollbar styling for search results */
.search-results-grid::-webkit-scrollbar {
    width: 6px;
}

.search-results-grid::-webkit-scrollbar-track {
    background: transparent;
}

.search-results-grid::-webkit-scrollbar-thumb {
    background: rgba(221, 209, 194, 0.3);
    border-radius: 3px;
}

.search-results-grid::-webkit-scrollbar-thumb:hover {
    background: rgba(221, 209, 194, 0.5);
}

/* Search Query Indicator (for shop.php results) */
.search-query-indicator {
    background: linear-gradient(135deg, rgba(221, 209, 194, 0.08) 0%, rgba(221, 209, 194, 0.03) 100%);
    border: 1px solid rgba(221, 209, 194, 0.15);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.search-query-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.search-query-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.search-query-text {
    font-size: 0.95rem;
    color: var(--accent-primary);
    font-weight: 600;
    font-style: italic;
}

.search-query-clear {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(221, 209, 194, 0.1);
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    margin-left: auto;
    font-size: 0.8rem;
}

.search-query-clear:hover {
    background: rgba(221, 209, 194, 0.2);
    color: var(--accent-primary);
    transform: rotate(90deg);
}

/* Responsive Search Media Queries */

/* Tablet (1024px and below) */
@media (max-width: 1024px) {
    .search-results-container {
        min-width: 350px;
        max-width: 90vw;
    }

    .search-result-card {
        grid-template-columns: 70px 1fr;
        gap: 0.5rem;
        padding: 0.5rem;
    }

    .result-image-wrapper {
        width: 70px;
        height: 70px;
    }

    .result-product-name {
        font-size: 0.85rem;
    }

    .result-product-brand {
        font-size: 0.75rem;
    }

    .result-price {
        font-size: 0.85rem;
    }

    .result-view-btn {
        padding: 3px 6px;
        font-size: 0.7rem;
    }
}

/* Tablet (768px and below) */
@media (max-width: 768px) {
    .search-results-container {
        position: fixed;
        top: 160px;
        left: 2.5vw;
        right: 2.5vw;
        min-width: auto;
        width: 95vw;
        max-width: 500px;
        max-height: 70vh;
        z-index: 9999;
    }

    .search-results-grid {
        max-height: 50vh;
    }

    .search-result-card {
        grid-template-columns: 60px 1fr;
        gap: 0.5rem;
        padding: 0.5rem;
    }

    .result-image-wrapper {
        width: 60px;
        height: 60px;
    }

    .result-product-name {
        font-size: 0.8rem;
    }

    .result-product-brand {
        font-size: 0.7rem;
    }

    .result-product-description {
        font-size: 0.65rem;
    }

    .result-price {
        font-size: 0.8rem;
    }

    .result-view-btn {
        padding: 3px 5px;
        font-size: 0.65rem;
    }

    .results-count {
        font-size: 0.8rem;
    }

    .view-all-link {
        font-size: 0.8rem;
    }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
    .search-results-container {
        position: fixed;
        top: 150px;
        left: 0;
        right: 0;
        min-width: auto;
        width: 100vw;
        max-width: 100%;
        max-height: 80vh;
        border-radius: 0 0 12px 12px;
        z-index: 9999;
    }

    .search-results-header {
        flex-direction: row;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .results-count {
        font-size: 0.75rem;
    }

    .view-all-link {
        font-size: 0.75rem;
    }

    .search-results-grid {
        max-height: 60vh;
        gap: 0.5rem;
    }

    .search-result-card {
        grid-template-columns: 50px 1fr;
        gap: 0.5rem;
        padding: 0.4rem;
    }

    .result-image-wrapper {
        width: 50px;
        height: 50px;
    }

    .result-product-info {
        justify-content: center;
    }

    .result-product-name {
        font-size: 0.75rem;
        margin: 0;
    }

    .result-product-brand {
        font-size: 0.65rem;
        margin: 2px 0 0 0;
    }

    .result-product-description {
        display: none;
    }

    .result-price-section {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 4px;
        gap: 0.3rem;
    }

    .result-price {
        font-size: 0.75rem;
    }

    .result-view-btn {
        width: 100%;
        justify-content: center;
        padding: 4px 6px;
        font-size: 0.65rem;
    }

    .result-badge {
        font-size: 0.6rem;
        padding: 2px 4px;
    }

    .search-empty {
        padding: 1.5rem 1rem;
    }

    .search-empty i {
        font-size: 2rem;
    }

    .search-empty p {
        font-size: 0.8rem;
    }

    .search-error {
        padding: 1rem;
        font-size: 0.8rem;
    }

    /* Search Query Indicator - Mobile */
    .search-query-indicator {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .search-query-content {
        width: 100%;
        flex-direction: row;
        gap: 0.25rem;
    }

    .search-query-label {
        font-size: 0.8rem;
    }

    .search-query-text {
        font-size: 0.9rem;
    }

    .search-query-clear {
        width: 24px;
        height: 24px;
        margin-left: auto;
        align-self: flex-end;
    }
}

/* USER PROFILE WRAPPER */
.user-profile-wrapper {
    position: relative;
}

.user-profile-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    position: relative;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.user-profile-btn:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.user-avatar {
    font-size: 1.5rem;
    color: var(--text-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.user-profile-btn:hover .user-avatar {
    color: var(--accent-primary);
    transform: scale(1.1);
}

.user-profile-btn[aria-expanded="true"] .user-avatar {
    color: var(--accent-primary);
}

.user-indicator {
    width: 8px;
    height: 8px;
    background-color: var(--accent-primary);
    border-radius: 50%;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

.user-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    min-width: 320px;
    margin-top: 0.75rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 1px rgba(255, 255, 255, 0.15) inset;
    display: none;
    z-index: 1000;
    opacity: 0;
    transform: translateY(-12px) scale(0.95);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.user-dropdown-menu.active {
    display: block;
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.dropdown-header {
    padding: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.user-info {
    margin: 0;
}

.user-name {
    font-weight: 600;
    margin: 0 0 0.25rem 0;
    color: var(--text-primary);
}

.user-email {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

.dropdown-divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0) 100%);
    margin: 0.5rem 0;
}

.dropdown-item {
    display: flex !important;
    align-items: center;
    gap: 1rem;
    padding: 0.95rem 1.25rem;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: var(--accent-primary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--accent-primary);
    padding-left: 1.5rem;
}

.dropdown-item:hover::before {
    transform: scaleY(1);
}

.dropdown-item i:first-child {
    font-size: 1.1rem;
    min-width: 20px;
    color: white;
}

.item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.item-label {
    font-weight: 500;
    display: block;
    color: white;
}

.item-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: block;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.dropdown-item:hover .item-desc {
    opacity: 1;
}

.dropdown-item i:last-child {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.dropdown-item.logout-item {
    color: #ff6b6b;
}

.dropdown-item.logout-item:hover {
    background-color: rgba(255, 107, 107, 0.1);
}

/* MOBILE NAVIGATION */
.mobile-nav {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--bg-primary);
    border-right: 1px solid var(--border-light);
    overflow-y: auto;
    transition: left 0.3s ease;
    z-index: 999;
}

.mobile-nav.active {
    left: 0;
}

.mobile-nav-list {
    list-style: none;
    padding: 1rem 0;
    margin: 0;
}

.mobile-nav-list li {
    border-bottom: 1px solid var(--border-light);
}

.mobile-nav-list li:last-child {
    border-bottom: none;
}

.mobile-nav-list a,
.mobile-nav-user-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: var(--text-primary);
    text-decoration: none;
    transition: background-color 0.3s ease;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    font-family: var(--font-primary);
    font-size: 0.95rem;
}

.mobile-nav-list a:hover,
.mobile-nav-user-btn:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--accent-primary);
}

.mobile-nav-list a.active {
    color: var(--accent-primary);
}

.mobile-nav-icon-link {
    position: relative;
}

.mobile-nav-badge {
    position: static;
    margin-left: auto;
}

.mobile-nav-divider {
    border: none !important;
    height: 1px;
    background-color: var(--border-light);
}

/* MOBILE NAV DROPDOWNS */
.mobile-nav-item-dropdown {
    position: relative;
}

.mobile-nav-item-dropdown>a {
    position: relative;
}

.mobile-nav-item-dropdown>a::after {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    border: solid var(--text-primary);
    border-width: 0 2px 2px 0;
    margin-left: auto;
    padding: 2px;
    transform: rotate(45deg);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-item-dropdown>a[aria-expanded="true"]::after {
    transform: rotate(-135deg);
}

.mobile-dropdown-menu {
    list-style: none;
    background: rgba(221, 209, 194, 0.08);
    border: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
}

.mobile-nav-item-dropdown.active .mobile-dropdown-menu {
    max-height: 300px;
    opacity: 1;
    visibility: visible;
}

.mobile-dropdown-menu a {
    padding: 0.75rem 1.5rem 0.75rem 3rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mobile-dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 1.5rem;
    width: 3px;
    height: 3px;
    background-color: var(--accent-primary);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.mobile-dropdown-menu a:hover {
    color: var(--accent-primary);
    padding-left: 3.5rem;
}

.mobile-dropdown-menu a:hover::before {
    opacity: 1;
}

.mobile-user-dropdown {
    list-style: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
    opacity: 0;
}

.mobile-user-dropdown.active {
    max-height: 300px;
    opacity: 1;
}

.mobile-user-dropdown li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-user-dropdown li:last-child {
    border-bottom: none;
}

.mobile-user-dropdown a {
    padding: 0.9rem 1.5rem 0.9rem 3rem;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
}

.mobile-user-dropdown a::before {
    content: '';
    position: absolute;
    left: 1.5rem;
    width: 3px;
    height: 3px;
    background-color: var(--accent-primary);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.mobile-user-dropdown a:hover {
    padding-left: 3.5rem;
    color: var(--accent-primary);
}

.mobile-user-dropdown a:hover::before {
    opacity: 1;
}

.logout-link {
    color: #ff6b6b !important;
}

/* ======================== */
/* RESPONSIVE STYLES */
/* ======================== */

@media (max-width: 1024px) {
    .header-container {
        padding: 1rem 1.5rem;
        gap: 1rem;
    }

    .nav-list {
        gap: 1.5rem;
    }

    .nav-list a {
        font-size: 0.9rem;
    }

    .header-icons {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 1rem;
        gap: 1rem;
        justify-content: center;
    }

    .hamburger-menu {
        display: block;
        flex-shrink: 0;
        position: absolute;
        left: 1rem;
    }

    .logo {
        flex-shrink: 0;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .logo img {
        height: 40px;
    }

    .header-nav {
        display: none;
    }

    .header-icons {
        flex-shrink: 0;
        gap: 0.75rem;
        position: absolute;
        right: 1rem;
    }

    .icon-link {
        font-size: 1rem;
    }

    .search-modal {
        min-width: 250px;
        right: -32px;
    }

    .user-profile-wrapper {
        display: none;
    }

    .user-login-btn {
        display: flex !important;
    }

    .user-mobile-hidden,
    .wishlist-mobile-hidden {
        display: none !important;
    }

    .mobile-nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        border-right: 1px solid var(--border-light);
        border-bottom: none;
    }

    .mobile-nav.active {
        left: 0;
        max-height: none;
        border-bottom: none;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0.75rem;
        gap: 0.75rem;
    }

    .logo img {
        height: 50px;
    }

    .header-icons {
        gap: 0.5rem;
    }

    .icon-link {
        font-size: 1.2rem;
    }

    .search-modal {
        min-width: 240px;
    }

    .search-input {
        padding: 0.6rem 0.75rem;
        font-size: 1.2rem;
    }

    .cart-badge,
    .wishlist-badge,
    .mobile-nav-badge {
        width: 18px;
        height: 18px;
        font-size: 0.65rem;
    }

    .mobile-nav-list a,
    .mobile-nav-user-btn {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        gap: 0.75rem;
    }
}

/* ======================== */
/* HERO SECTION */
/* ======================== */

.hero {
    background-color: var(--bg-primary);
    padding: 2rem 2rem;
    margin-top: 0;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    margin: 0;
}
.logo_hero_section{
    width: 500px;
    height: 150px;
    margin-left: auto;
    margin-right: auto;
}
.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--accent-primary);
    margin: 0;
}

.hero-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin: 0;
}

.hero-button {
    display: inline-block;
    background-color: var(--accent-primary);
    color: var(--bg-primary);
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    width: fit-content;
    margin-top: 1rem;
}

.hero-button:hover {
    background-color: #e8dcd2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(221, 209, 194, 0.3);
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    max-height: 650px;
}

.hero-img-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.hero-image:hover .hero-img-element {
    transform: scale(1.02);
}

/* ======================== */
/* HERO RESPONSIVE STYLES */
/* ======================== */

@media (max-width: 1024px) {
    .hero {
        padding: 3rem 1.5rem;
    }

    .hero-container {
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-text {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 0;
        min-height: 100vh;
        display: flex;
        align-items: center;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 0;
        position: relative;
        min-height: 100vh;
    }
.logo_hero_section{
    max-width: 300px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}
    .hero-image {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        min-height: 100%;
        border-radius: 0;
        z-index: 1;
    }

    .hero-image::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(26, 26, 26, 0.65);
        z-index: 2;
    }

    .hero-content {
        grid-column: 1;
        grid-row: 1;
        z-index: 3;
        padding: 3rem 1.5rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: 100vh;
    }

    .hero-title {
        font-size: 2.5rem;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    }

    .hero-subtitle {
        font-size: 1.3rem;
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
    }

    .hero-text {
        font-size: 0.95rem;
        line-height: 1.7;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    }

    .hero-button {
        margin-top: 2rem;
        width: fit-content;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 2rem 1rem;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-text {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .hero-button {
        padding: 0.8rem 2rem;
        font-size: 0.95rem;
    }
}

/* ======================== */
/* APPOINTMENT BOOKING SECTION */
/* ======================== */

.book-appointment-section {
    background-color: var(--bg-primary);
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.book-appointment-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -20%;
    width: 40%;
    height: 100%;
    background: radial-gradient(circle, rgba(221, 209, 194, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/*.book-appointment-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(221, 209, 194, 0.1) 50%, transparent 100%);
    pointer-events: none;
}*/

.appointment-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 1;
    text-align: center;
}

.appointment-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    width: 100%;
}

.appointment-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.appointment-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 0;
    width: 100%;
}

.feature-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(221, 209, 194, 0.3);
    transform: translateY(-4px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(221, 209, 194, 0.15) 0%, rgba(221, 209, 194, 0.05) 100%);
    border: 1px solid rgba(221, 209, 194, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--accent-primary);
    flex-shrink: 0;
    margin: 0 auto;
}

.feature-text h4 {
    margin: 0;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
}

.feature-text p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.appointment-cta-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
    width: 100%;
}

.cta-subtitle {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
    margin: 0;
    text-align: center;
}

.appointment-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--accent-primary) 0%, #c9b8a8 100%);
    color: var(--bg-primary);
    padding: 1.3rem 3.5rem;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: none;
    cursor: pointer;
    width: fit-content;
    box-shadow: 0 6px 20px rgba(221, 209, 194, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.appointment-cta-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    pointer-events: none;
}

.appointment-cta-btn:hover::before {
    width: 300px;
    height: 300px;
}

.appointment-cta-btn:hover {
    background: linear-gradient(135deg, #e6d9ca 0%, #d4c4b0 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(221, 209, 194, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.appointment-cta-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(221, 209, 194, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.appointment-cta-btn:focus {
    outline: 2px solid var(--accent-primary);
    outline-offset: 2px;
}

.cta-hint {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
    text-align: center;
}

/* Mobile Beauty Button Styling */
.mobile-book-appointment-btn-container {
    padding: 15px 0 !important;
    margin: 10px 0 !important;
    /* border-top: 1px solid rgba(255, 255, 255, 0.1); */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-book-appointment-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 90%;
    margin: 0 auto;
    background: var(--accent-primary);
    color: var(--bg-primary) !important;
    padding: 14px 20px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(221, 209, 194, 0.3);
}

.mobile-book-appointment-btn:hover {
    background: #e6d9ca;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(221, 209, 194, 0.4);
}

.mobile-book-appointment-btn i {
    font-size: 18px;
    display: none;
}

.mobile-book-appointment-btn span {
    color: var(--text-primary);
}

.booking-icon {
    position: relative;
    animation: pulse-booking 2s infinite;
}

@keyframes pulse-booking {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* ======================== */
/* CATEGORIES SECTION */
/* ======================== */

.categories {
    background-color: var(--bg-primary);
    padding: 5rem 2rem;
    position: relative;
}

.categories-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 1rem 0;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin: 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.category-card {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.category-card:hover {
    border-color: var(--accent-primary);
    background-color: rgba(255, 255, 255, 0.05);
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.category-image-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.3);
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.category-card:hover .category-image {
    transform: scale(1.08);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.3) 0%, rgba(26, 26, 26, 0.6) 100%);
    transition: opacity 0.3s ease;
    opacity: 0.5;
}

.category-card:hover .category-overlay {
    opacity: 0.7;
}

.category-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.category-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.category-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
    flex: 1;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    width: fit-content;
    margin-top: 0.5rem;
}

.category-link:hover {
    color: #e8dcd2;
    gap: 1.2rem;
}

.category-link i {
    transition: transform 0.3s ease;
}

.category-link:hover i {
    transform: translateX(4px);
}

/* ======================== */
/* CATEGORIES RESPONSIVE STYLES */
/* ======================== */

@media (max-width: 1024px) {
    .categories {
        padding: 4rem 1.5rem;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    .categories-grid {
        gap: 1.5rem;
    }

    .category-image-wrapper {
        height: 280px;
    }
}

/* Responsive Design - Appointment Booking */
@media (max-width: 768px) {
    .book-appointment-section {
        padding: 2.5rem 1.5rem;
    }

    .appointment-container {
        gap: 1rem;
    }

    .appointment-content {
        gap: 1.5rem;
    }

    .appointment-features {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .feature-item {
        padding: 1.2rem;
        gap: 0.75rem;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .appointment-cta-section {
        gap: 1.2rem;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }

    .cta-subtitle {
        font-size: 1rem;
    }

    .appointment-cta-btn {
        padding: 1.1rem 2.5rem;
        font-size: 1rem;
        width: 100%;
        max-width: 100%;
    }

    .booking-icon {
        display: none;
    }
}

@media (max-width: 768px) {
    .categories {
        padding: 3rem 1rem;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .category-image-wrapper {
        height: 250px;
    }

    .category-content {
        padding: 1.5rem;
    }

    .category-title {
        font-size: 1.3rem;
    }

    .category-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .categories {
        padding: 2rem 1rem;
    }

    .categories-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .category-image-wrapper {
        height: 220px;
    }

    .category-content {
        padding: 1.25rem;
        gap: 0.75rem;
    }

    .category-title {
        font-size: 1.2rem;
    }

    .category-description {
        font-size: 0.85rem;
    }

    .category-card:hover {
        transform: translateY(-4px);
    }
}

/* ======================== */
/* PRODUCTS SECTION */
/* ======================== */

.products {
    background-color: var(--bg-primary);
    padding: 5rem 2rem;
}

.products-container {
    max-width: 1400px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.product-card {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    border-color: var(--accent-primary);
    background-color: rgba(255, 255, 255, 0.05);
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.3);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.product-card:hover .product-image {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: var(--accent-primary);
    color: var(--bg-primary);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
}

.product-badge.sale {
    background-color: #ff6b6b;
}

.wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: rgba(26, 26, 26, 0.7);
    border: 1px solid var(--border-light);
    color: var(--text-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    z-index: 3;
}

.wishlist-btn:hover {
    background-color: var(--accent-primary);
    color: var(--bg-primary);
    border-color: var(--accent-primary);
    transform: scale(1.1);
}

.wishlist-btn.active {
    background-color: var(--accent-primary);
    color: var(--bg-primary);
}

.wishlist-btn.active i {
    font-weight: 900;
}

.product-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.4;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.product-rating i {
    color: var(--accent-primary);
    font-size: 0.9rem;
}

.rating-text {
    color: var(--text-muted);
    margin-left: 0.25rem;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin: 0;
}

.original-price {
    font-size: 0.95rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-right: 0.5rem;
}

.details-btn {
    background-color: var(--accent-primary);
    color: var(--bg-primary);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

.details-btn:hover {
    background-color: #e8dcd2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(221, 209, 194, 0.3);
}

/* ======================== */
/* PRODUCTS RESPONSIVE STYLES */
/* ======================== */

@media (max-width: 1024px) {
    .products {
        padding: 4rem 1.5rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .product-image-wrapper {
        height: 230px;
    }
}

@media (max-width: 768px) {
    .products {
        padding: 3rem 1rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .product-image-wrapper {
        height: 200px;
    }

    .product-content {
        padding: 1.25rem;
        gap: 0.75rem;
    }

    .product-name {
        font-size: 1rem;
    }

    .product-price {
        font-size: 1.1rem;
    }

    .details-btn {
        padding: 0.65rem 1.25rem;
        font-size: 0.9rem;
    }

    .wishlist-btn {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .product-badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .products {
        padding: 2rem 1rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .product-image-wrapper {
        height: 170px;
    }

    .product-content {
        padding: 1rem;
        gap: 0.6rem;
    }

    .product-name {
        font-size: 0.9rem;
    }

    .product-rating {
        font-size: 0.8rem;
    }

    .product-rating i {
        font-size: 0.8rem;
    }

    .product-price {
        font-size: 1rem;
    }

    .original-price {
        font-size: 0.85rem;
    }

    .details-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .wishlist-btn {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
        top: 8px;
        right: 8px;
    }

    .product-badge {
        padding: 0.35rem 0.7rem;
        font-size: 0.7rem;
        top: 8px;
        left: 8px;
    }
}

/* ======================== */
/* SERVICES SECTION */
/* ======================== */

.services {
    background-color: var(--bg-primary);
    padding: 5rem 2rem;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-item {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-item:hover {
    border-color: var(--accent-primary);
    background-color: rgba(255, 255, 255, 0.05);
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.service-icon {
    font-size: 3rem;
    color: var(--accent-primary);
    transition: all 0.3s ease;
}

.service-item:hover .service-icon {
    transform: scale(1.15);
}

.service-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.service-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
}

/* ======================== */
/* WHY CHOOSE US SECTION */
/* ======================== */

.why-choose-us {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(26, 26, 26, 0.95) 100%);
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(221, 209, 194, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.why-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.why-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.why-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.benefit-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-primary);
    min-width: 70px;
    text-align: center;
}

.benefit-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.benefit-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.benefit-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
}

/* ======================== */
/* SERVICES & WHY RESPONSIVE STYLES */
/* ======================== */

@media (max-width: 1024px) {
    .services {
        padding: 4rem 1.5rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .service-item {
        padding: 2rem 1.5rem;
    }

    .why-choose-us {
        padding: 4rem 1.5rem;
    }

    .why-benefits {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 3rem 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-item {
        padding: 1.75rem 1.5rem;
    }

    .service-icon {
        font-size: 2.5rem;
    }

    .service-title {
        font-size: 1.2rem;
    }

    .service-description {
        font-size: 0.9rem;
    }

    .why-choose-us {
        padding: 3rem 1rem;
    }

    .why-content {
        gap: 2.5rem;
    }

    .why-benefits {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .benefit-item {
        gap: 1.25rem;
    }

    .benefit-number {
        font-size: 2rem;
        min-width: 60px;
    }

    .benefit-title {
        font-size: 1.1rem;
    }

    .benefit-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .services {
        padding: 2rem 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .service-item {
        padding: 1.5rem;
        gap: 1rem;
    }

    .service-icon {
        font-size: 2rem;
    }

    .service-title {
        font-size: 1rem;
    }

    .service-description {
        font-size: 0.85rem;
    }

    .why-choose-us {
        padding: 2rem 1rem;
    }

    .why-choose-us::before {
        width: 400px;
        height: 400px;
        top: -25%;
        right: -20%;
    }

    .why-content {
        gap: 2rem;
    }

    .why-benefits {
        gap: 1.5rem;
    }

    .benefit-item {
        gap: 1rem;
    }

    .benefit-number {
        font-size: 1.6rem;
        min-width: 50px;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .benefit-title {
        font-size: 1rem;
    }

    .benefit-description {
        font-size: 0.85rem;
    }
}

/* ======================== */
/* TESTIMONIALS SECTION */
/* ======================== */

.testimonials {
    background-color: var(--bg-primary);
    padding: 5rem 2rem;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.testimonial-card:hover {
    border-color: var(--accent-primary);
    background-color: rgba(255, 255, 255, 0.05);
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--accent-primary);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.testimonial-role {
    font-size: 0.85rem;
    color: var(--accent-primary);
    margin: 0;
}

.testimonial-rating {
    display: flex;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.testimonial-rating i {
    color: var(--accent-primary);
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin: 0;
    font-style: italic;
}

/* ======================== */
/* FOOTER SECTION */
/* ======================== */

.footer {
    background-color: rgba(0, 0, 0, 0.4);
    border-top: 1px solid var(--border-light);
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
}

.footer-logo p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(221, 209, 194, 0.1);
    border: 1px solid var(--accent-primary);
    color: var(--accent-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.95rem;
}

.social-link:hover {
    background-color: var(--accent-primary);
    color: var(--bg-primary);
    transform: translateY(-4px);
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-primary);
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-info p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-info i {
    color: var(--accent-primary);
    width: 18px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-bottom a {
    color: var(--accent-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #e8dcd2;
    text-decoration: underline;
}

/* ======================== */
/* FLOATING BUTTONS */
/* ======================== */

.whatsapp-btn,
.back-to-top-btn {
    position: fixed;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 999;
    text-decoration: none;
    bottom: 40px;
}

.whatsapp-btn {
    left: 30px;
    background-color: #25d366;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5);
}

.back-to-top-btn {
    right: 30px;
    background-color: var(--accent-primary);
    color: var(--bg-primary);
    display: none;
    box-shadow: 0 4px 12px rgba(221, 209, 194, 0.3);
}

.back-to-top-btn:hover {
    background-color: #e8dcd2;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(221, 209, 194, 0.5);
}

.back-to-top-btn.show {
    display: flex;
}

/* ======================== */
/* TESTIMONIALS & FOOTER RESPONSIVE STYLES */
/* ======================== */

@media (max-width: 1024px) {
    .testimonials {
        padding: 4rem 1.5rem;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: 3rem 1rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .footer {
        padding: 3rem 1rem 2rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .whatsapp-btn,
    .back-to-top-btn {
        width: 54px;
        height: 54px;
        font-size: 1.3rem;
        bottom: 30px;
    }

    .whatsapp-btn {
        left: 20px;
    }

    .back-to-top-btn {
        right: 20px;
    }
}

@media (max-width: 480px) {
    .testimonials {
        padding: 2rem 1rem;
    }

    .testimonial-card {
        padding: 1.25rem;
        gap: 1rem;
    }

    .testimonial-avatar {
        width: 50px;
        height: 50px;
    }

    .testimonial-name {
        font-size: 1rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }

    .footer {
        padding: 2rem 1rem 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-bottom {
        padding-top: 1.5rem;
        font-size: 0.85rem;
    }

    .whatsapp-btn,
    .back-to-top-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        bottom: 20px;
    }

    .whatsapp-btn {
        left: 15px;
    }

    .back-to-top-btn {
        right: 15px;
    }
}

/* ======================== NOTIFICATION SYSTEM ======================== */

/* Notification Container */
.notification-container {
    position: fixed;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.notification-container.notification-top-right {
    top: 20px;
    right: 20px;
}

.notification-container.notification-top-left {
    top: 20px;
    left: 20px;
}

.notification-container.notification-bottom-right {
    bottom: 20px;
    right: 20px;
}

.notification-container.notification-bottom-left {
    bottom: 20px;
    left: 20px;
}

/* Notification Element */
.notification {
    display: flex;
    flex-direction: column;
    min-width: 300px;
    max-width: 400px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(42, 42, 42, 0.95) 100%);
    border: 1px solid rgba(221, 209, 194, 0.3);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    overflow: hidden;
    pointer-events: auto;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s ease;
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification.hide {
    transform: translateX(400px);
    opacity: 0;
}

/* Notification Content */
.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    color: var(--text-primary);
}

.notification-content i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.notification-message {
    flex: 1;
    font-size: 0.95rem;
    font-weight: 500;
    word-break: break-word;
}

.notification-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 4px 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: color 0.2s ease;
    flex-shrink: 0;
}

.notification-close:hover {
    color: var(--text-primary);
}

/* Progress Bar */
.notification-progress {
    height: 3px;
    background: linear-gradient(90deg, var(--accent-primary), transparent);
    animation: progressAnimation 3s linear forwards;
}

@keyframes progressAnimation {
    from {
        width: 100%;
    }

    to {
        width: 0%;
    }
}

/* Notification Types */
.notification-success {
    border-left: 4px solid #4caf50;
}

.notification-success .notification-content i {
    color: #4caf50;
}

.notification-error {
    border-left: 4px solid #f44336;
}

.notification-error .notification-content i {
    color: #f44336;
}

.notification-warning {
    border-left: 4px solid #ff9800;
}

.notification-warning .notification-content i {
    color: #ff9800;
}

.notification-info {
    border-left: 4px solid var(--accent-primary);
}

.notification-info .notification-content i {
    color: var(--accent-primary);
}

/* Mobile Responsive */
@media (max-width: 480px) {

    .notification-container.notification-top-right,
    .notification-container.notification-bottom-right {
        right: 10px;
    }

    .notification-container.notification-top-left,
    .notification-container.notification-bottom-left {
        left: 10px;
    }

    .notification {
        min-width: 280px;
        max-width: calc(100vw - 20px);
    }

    .notification.hide {
        transform: translateX(calc(100vw + 50px));
    }
}

/* Load More Button Styles */
.load-more-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
    margin-bottom: 2rem;
    min-height: 60px;
}

.load-more-btn {
    background: linear-gradient(135deg, rgba(221, 209, 194, 0.2) 0%, rgba(221, 209, 194, 0.1) 100%);
    border: 2px solid rgba(221, 209, 194, 0.5);
    color: var(--text-primary);
    padding: 12px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}

.load-more-btn:hover {
    background: linear-gradient(135deg, rgba(221, 209, 194, 0.3) 0%, rgba(221, 209, 194, 0.2) 100%);
    border-color: var(--accent-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(221, 209, 194, 0.2);
}

.load-more-btn:active {
    transform: translateY(0);
}

.load-more-btn i {
    margin-right: 8px;
    transition: transform 0.3s ease;
}

.load-more-btn.loading {
    opacity: 0.7;
    pointer-events: none;
}

.load-more-btn.loading i {
    display: inline-block;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.all-loaded {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    padding: 1rem;
    font-style: italic;
}

/* ======================== */
/* BOOK APPOINTMENT FORM */
/* ======================== */

.book-appointment-section {
    background: var(--bg-primary);
    padding: 5rem 2rem;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

/*.book-appointment-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(135deg, rgba(221, 209, 194, 0.05) 0%, rgba(221, 209, 194, 0.02) 100%);
    pointer-events: none;
}*/

.appointment-container {
    max-width: 1000px;
    margin: 0 auto;
}

.appointment-header {
    text-align: center;
    margin-bottom: 4rem;
}

.appointment-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(221, 209, 194, 0.15) 0%, rgba(221, 209, 194, 0.05) 100%);
    border: 1px solid rgba(221, 209, 194, 0.3);
    padding: 8px 16px;
    border-radius: 20px;
    color: var(--accent-primary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.appointment-badge i {
    font-size: 0.9rem;
}

.appointment-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--accent-primary) 0%, #a89a8a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.appointment-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.booking-form-wrapper {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(221, 209, 194, 0.2);
    border-radius: 16px;
    padding: 3rem;
    margin-bottom: 4rem;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), 0 0 1px rgba(221, 209, 194, 0.3);
    overflow: hidden;
    max-width: 100%;
    width: 100%;
}

.booking-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(221, 209, 194, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.booking-form-wrapper::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(221, 209, 194, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.form-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(0, 0, 0, 0.05) 100%);
    padding: 1.5rem;
    border: 1px solid rgba(221, 209, 194, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.form-section:hover {
    border-color: rgba(221, 209, 194, 0.2);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(0, 0, 0, 0.08) 100%);
}

.form-section h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-section h3 i {
    color: var(--accent-primary);
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.form-section:hover h3 i {
    transform: scale(1.2);
}

.form-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-row.full-width {
    display: grid;
    grid-template-columns: 1fr;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-align: left;
}

.form-group input,
.form-group select {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.25) 100%);
    border: 1.5px solid rgba(221, 209, 194, 0.15);
    color: var(--text-primary);
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: var(--font-secondary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.35) 100%);
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 4px rgba(221, 209, 194, 0.15), 0 4px 12px rgba(221, 209, 194, 0.2);
    transform: translateY(-2px);
}

.service-info {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(221, 209, 194, 0.08) 0%, rgba(221, 209, 194, 0.04) 100%);
    border: 1.5px solid rgba(221, 209, 194, 0.2);
    border-radius: 10px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-info .info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
}

.service-info .info-item i {
    color: var(--accent-primary);
    font-size: 1rem;
}

.service-info .info-item strong {
    color: var(--text-primary);
}

.form-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-book-appointment {
    position: relative;
    background: linear-gradient(135deg, var(--accent-primary) 0%, #c9b8a8 100%);
    color: #1a1a1a;
    border: none;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 6px 20px rgba(221, 209, 194, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    overflow: hidden;
}

.btn-book-appointment::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateY(-50%);
    transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-book-appointment:hover::before {
    left: 100%;
}

.btn-book-appointment:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(221, 209, 194, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-book-appointment:active {
    transform: translateY(-1px);
}

.btn-book-appointment:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.booking-message {
    padding: 14px 18px;
    border-radius: 8px;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 600;
    display: none;
    animation: slideInUp 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.booking-message.success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(16, 185, 129, 0.1) 100%);
    color: #10b981;
    border: 1.5px solid rgba(16, 185, 129, 0.4);
    display: block;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.booking-message.error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(239, 68, 68, 0.1) 100%);
    color: #ef4444;
    border: 1.5px solid rgba(239, 68, 68, 0.4);
    display: block;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.2);
}

/* Booking Modal Popup */
.booking-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.booking-modal-overlay.active {
    display: flex;
    animation: fadeInModal 0.3s ease-out;
}

@keyframes fadeInModal {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.booking-modal-container {
    position: relative;
    background: linear-gradient(45deg, black, transparent);
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3), 0 0 1px rgba(221, 209, 194, 0.3);
    max-width: 420px;
    width: 100%;
    max-height: 80vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    animation: slideUpModal 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideUpModal {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.booking-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
    border-bottom: 1px solid rgba(221, 209, 194, 0.15);
    flex-shrink: 0;
}

.booking-modal-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

.modal-close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    border-radius: 6px;
    width: 36px;
    height: 36px;
}

.modal-close-btn:hover {
    background: rgba(221, 209, 194, 0.1);
    color: var(--text-primary);
}

.booking-modal-body {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1.5rem;
    overflow-y: auto;
}

.booking-modal-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    flex-shrink: 0;
}

.booking-modal-icon.success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0.05) 100%);
    color: #10b981;
    border: 2px solid rgba(16, 185, 129, 0.3);
}

.booking-modal-icon.error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(239, 68, 68, 0.05) 100%);
    color: #ef4444;
    border: 2px solid rgba(239, 68, 68, 0.3);
}

.booking-modal-body p {
    margin: 0;
    font-size: 1rem;
    color: var(--text-primary);
    line-height: 1.6;
    font-weight: 500;
}

.booking-modal-footer {
    display: flex;
    gap: 1rem;
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(221, 209, 194, 0.15);
    justify-content: center;
    flex-shrink: 0;
}

.btn-modal-ok {
    background: linear-gradient(135deg, var(--accent-primary) 0%, #c9b8a8 100%);
    color: #1a1a1a;
    border: none;
    padding: 12px 32px;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(221, 209, 194, 0.3);
    min-width: 120px;
}

.btn-modal-ok:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(221, 209, 194, 0.4);
}

.btn-modal-ok:active {
    transform: translateY(0);
}

/* Responsive Modal */
@media (max-width: 480px) {
    .booking-modal-container {
        max-width: 100%;
        border-radius: 12px;
    }

    .booking-modal-header {
        padding: 1.5rem;
    }

    .booking-modal-body {
        padding: 1.5rem;
        gap: 1rem;
    }

    .booking-modal-footer {
        padding: 1rem 1.5rem;
    }

    .booking-modal-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
}

/* Artist Selection Styles */
.artist-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.artist-radio {
    position: relative;
}

.artist-radio input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    cursor: pointer;
}

.artist-radio input[type="radio"]:checked + .artist-label {
    background: linear-gradient(135deg, rgba(221, 209, 194, 0.25) 0%, rgba(221, 209, 194, 0.1) 100%);
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(221, 209, 194, 0.2), inset 0 0 12px rgba(221, 209, 194, 0.1);
}

.artist-label {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.1) 100%);
    border: 2px solid rgba(221, 209, 194, 0.15);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
}

.artist-label:hover {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.15) 100%);
    border-color: rgba(221, 209, 194, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(221, 209, 194, 0.15);
}

.artist-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.artist-time {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Booked Time Slot Styling */
#bookingTime .slot-booked {
    text-decoration: line-through;
    opacity: 0.6;
}

/* Appointment Features Grid */
.appointment-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1.5px solid rgba(221, 209, 194, 0.15);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-item:hover {
    border-color: var(--accent-primary);
    background: linear-gradient(135deg, rgba(221, 209, 194, 0.1) 0%, rgba(221, 209, 194, 0.05) 100%);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 32px rgba(221, 209, 194, 0.2), 0 0 20px rgba(221, 209, 194, 0.15);
}

.feature-icon {
    font-size: 3rem;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(221, 209, 194, 0.2) 0%, rgba(221, 209, 194, 0.08) 100%);
    border: 1.5px solid rgba(221, 209, 194, 0.3);
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(221, 209, 194, 0.1);
}

.feature-item:hover .feature-icon {
    transform: scale(1.15) rotate(5deg);
    border-color: var(--accent-primary);
    box-shadow: 0 6px 20px rgba(221, 209, 194, 0.25);
}

.feature-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    letter-spacing: 0.5px;
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.8;
    font-weight: 500;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .book-appointment-section {
        padding: 3rem 1.5rem;
    }

    .booking-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .artist-options {
        grid-template-columns: 1fr;
    }

    .appointment-header h1 {
        font-size: 2rem;
    }

    .appointment-subtitle {
        font-size: 1rem;
    }

    .service-info {
        flex-direction: column;
        gap: 0.5rem;
    }

    .appointment-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .btn-book-appointment {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .book-appointment-section {
        padding: 2rem 1rem;
        margin: 1rem 0;
    }

    .booking-form-wrapper {
        padding: 1.5rem 1rem;
        border-radius: 12px;
    }

    .appointment-header h1 {
        font-size: 1.5rem;
    }

    .appointment-badge {
        font-size: 0.8rem;
    }

    .form-section h3 {
        font-size: 1rem;
    }

    .appointment-features {
        margin-top: 2rem;
    }
}