/* ==========================================================================
   BEAUTY IN BLACK - PREMIUM DESIGN SYSTEM
   ========================================================================== */

:root {
    --bg-primary: #FBFBFA;
    --bg-secondary: #FFFFFF;
    --bg-tertiary: #F3F3F5;
    --bg-card: #FFFFFF;
    --border-color: rgba(13, 13, 13, 0.08);
    --border-hover: #0D0D0D;
    
    --gold-primary: #c5a02e;
    --gold-light: #e5c158;
    --gold-dark: #8a6d1c;
    --gold-gradient: linear-gradient(135deg, #e5c158 0%, #c5a02e 50%, #8a6d1c 100%);
    --gold-glow: rgba(197, 160, 46, 0.06);
    
    --text-primary: #0D0D0D;
    --text-secondary: #2C2C2E;
    --text-muted: #7A7A7A;
    
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    
    --shadow-premium: 0 10px 30px rgba(0, 0, 0, 0.02), 
                      0 0 20px rgba(197, 160, 46, 0.01);
    --shadow-glow: 0 0 15px rgba(197, 160, 46, 0.05);
}

/* ==========================================================================
   RESET & FOUNDATIONS
   ========================================================================== */

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

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-tertiary);
    border: 2px solid var(--bg-primary);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-primary);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

button, input, select {
    font-family: inherit;
    background: none;
    border: none;
    outline: none;
}

.gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--gold-primary);
}

.uppercase { text-transform: uppercase; }
.tracking-widest { letter-spacing: 0.15em; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.w-full { width: 100%; }
.flex-1 { flex: 1; }
.hidden { display: none !important; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.inline-icon { display: inline-block; vertical-align: middle; width: 1.1em; height: 1.1em; margin-right: 4px; }

/* Ambient Glows */
.ambient-glow {
    position: absolute;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    filter: blur(140px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.12;
}

.glow-top-right {
    top: -20vw;
    right: -20vw;
    background: var(--gold-primary);
}

.glow-bottom-left {
    bottom: 10vw;
    left: -20vw;
    background: #aa7c11;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gold-gradient);
    color: #000;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
}

.btn-primary:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(251, 251, 250, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-logo-img {
    height: 38px;
    width: 38px;
    object-fit: contain;
    border-radius: 50%;
    border: 1px solid var(--gold-primary);
    padding: 2px;
    filter: sepia(0.25) contrast(1.05) brightness(0.95);
}

.brand-name {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
    position: relative;
    padding: 0.25rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold-gradient);
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

/* Search Box */
.search-container {
    position: relative;
    width: 220px;
    transition: var(--transition-smooth);
}

.search-container input {
    width: 100%;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem 0.5rem 2.5rem;
    font-size: 0.8rem;
    color: var(--text-primary);
    border-radius: 20px;
    transition: var(--transition-smooth);
}

.search-container input:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
    width: 260px;
}

.search-icon {
    position: absolute;
    left: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    color: var(--text-muted);
    pointer-events: none;
}

/* Icons Buttons */
.nav-btn {
    position: relative;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.4rem;
    border-radius: 50%;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.05);
}

.nav-btn svg {
    width: 20px;
    height: 20px;
}

.badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--gold-gradient);
    color: #000;
    font-size: 0.65rem;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.8);
}

/* ==========================================================================
   HERO BANNER
   ========================================================================== */

.hero {
    min-height: 90vh;
    padding: 8rem 2rem 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-tagline {
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    color: var(--gold-primary);
    font-weight: 600;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 700;
}

.hero-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
    aspect-ratio: 1;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-premium);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem;
    animation: floatAnimation 6s ease-in-out infinite;
}

.hero-main-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--gold-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-premium);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero-badge span:first-child {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
}

.hero-badge span:last-child {
    font-size: 0.9rem;
    font-weight: 600;
}

@keyframes floatAnimation {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

/* ==========================================================================
   FEATURES SECTION
   ========================================================================== */

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.feature-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 2.5rem 2rem;
    border-radius: 6px;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.feature-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ==========================================================================
   CATALOG (PRODUCTS)
   ========================================================================== */

.catalog {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.controls-panel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    gap: 2rem;
    flex-wrap: wrap;
}

.categories-tabs {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.tab {
    padding: 0.6rem 1.5rem;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    cursor: pointer;
    border-radius: 30px;
    transition: var(--transition-smooth);
}

.tab:hover {
    border-color: var(--gold-primary);
    color: var(--text-primary);
}

.tab.active {
    background: var(--gold-gradient);
    color: #000;
    font-weight: 600;
    border-color: transparent;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.15);
}

.sorting-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.sort-select {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.5rem 1.5rem 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.sort-select:focus {
    border-color: var(--gold-primary);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.5rem;
}

/* Product Card */
.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium);
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #ffffff;
    color: #0d0d0d;
    font-weight: 700;
    border: 1px solid var(--gold-primary);
    padding: 0.3rem 0.85rem;
    border-radius: 20px;
    font-size: 0.65rem;
    letter-spacing: 0.06em;
    z-index: 2;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.wishlist-toggle {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
    z-index: 2;
    backdrop-filter: blur(5px);
}

.wishlist-toggle:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    background: rgba(0, 0, 0, 0.8);
}

.wishlist-toggle.active {
    color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold-primary);
}

.product-image-container {
    padding: 2rem;
    background: linear-gradient(180deg, rgba(255,255,255,0.01) 0%, rgba(255,255,255,0) 100%);
    aspect-ratio: 1.1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
}

.product-img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    transition: var(--transition-bounce);
}

.product-card:hover .product-img {
    transform: scale(1.08);
}

.product-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-category {
    font-size: 0.7rem;
    color: var(--gold-primary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.product-title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    cursor: pointer;
}

.product-title:hover {
    color: var(--gold-primary);
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.product-price {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--text-primary);
    font-weight: 700;
}

.add-to-cart-btn {
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: var(--transition-smooth);
    color: var(--text-secondary);
}

.add-to-cart-btn:hover {
    background: var(--gold-gradient);
    color: #000;
    border-color: transparent;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

/* ==========================================================================
   PHILOSOPHY (ABOUT)
   ========================================================================== */

.about {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem;
    padding: 6rem 0;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.about-image {
    border-radius: 8px;
    border: 1px solid var(--border-color);
    padding: 3rem;
    background: var(--bg-card);
    aspect-ratio: 1.2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.7));
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-content h2 {
    font-family: var(--font-serif);
    font-size: 2.8rem;
}

.about-content p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.signature {
    margin-top: 1rem;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}

/* ==========================================================================
   NEWSLETTER
   ========================================================================== */

.newsletter {
    padding: 4rem 0 8rem 0;
}

.newsletter-card {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, rgba(212, 175, 55, 0.02) 100%);
    border: 1px solid var(--border-color);
    padding: 4rem 3rem;
    border-radius: 8px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: relative;
    overflow: hidden;
}

.newsletter-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold-gradient);
}

.newsletter-card h2 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
}

.newsletter-card p {
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    width: 100%;
    margin: 1.5rem auto 0 auto;
    border: 1px solid var(--border-color);
    padding: 4px;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.5);
}

.newsletter-form input {
    flex-grow: 1;
    padding: 0.75rem 1rem;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.newsletter-form input::placeholder {
    color: var(--text-muted);
}

.newsletter-status {
    font-size: 0.85rem;
    color: var(--gold-primary);
    height: 1.2rem;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
    background: #040404;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    padding: 5rem 2rem 2rem 2rem;
}

.footer .brand-logo-img {
    filter: invert(1) sepia(1) saturate(5) hue-rotate(15deg);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-desc {
    color: #a1a1a6;
    font-size: 0.9rem;
    max-width: 360px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a1a1a6;
}

.social-links a:hover {
    color: var(--gold-primary);
    border-color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.05);
}

.footer-links h4 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: #f5f5f7;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: #a1a1a6;
    font-size: 0.85rem;
}

.footer-links a:hover {
    color: var(--gold-primary);
    padding-left: 4px;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #6e6e73;
    font-size: 0.8rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-fineprint {
    color: #c5a02e;
    opacity: 0.5;
}

/* ==========================================================================
   DRAWERS (CART / WISHLIST)
   ========================================================================== */

.drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 200;
    visibility: hidden;
    transition: visibility 0.4s;
}

.drawer.open {
    visibility: visible;
}

.drawer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.drawer.open .drawer-overlay {
    opacity: 1;
}

.drawer-content {
    position: absolute;
    top: 0;
    right: -420px;
    width: 100%;
    max-width: 420px;
    height: 100%;
    background: var(--bg-secondary);
    border-left: 1px solid var(--border-color);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
}

.drawer.open .drawer-content {
    right: 0;
}

.drawer-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.drawer-header h2 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
}

.close-btn {
    width: 32px;
    height: 32px;
    color: var(--text-secondary);
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.close-btn:hover {
    color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.05);
}

.drawer-body {
    flex-grow: 1;
    overflow-y: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Item List styles */
.drawer-item {
    display: flex;
    gap: 1rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.drawer-item-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border: 1px solid var(--border-color);
    background: var(--bg-tertiary);
    border-radius: 4px;
    padding: 0.5rem;
}

.drawer-item-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.drawer-item-title {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.drawer-item-price {
    color: var(--gold-primary);
    font-family: var(--font-serif);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.drawer-item-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.quantity-picker {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background: var(--bg-tertiary);
}

.qty-btn {
    width: 26px;
    height: 26px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.qty-btn:hover {
    color: var(--gold-primary);
}

.qty-num {
    font-size: 0.8rem;
    width: 26px;
    text-align: center;
    font-weight: 600;
}

.remove-item-btn {
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition-smooth);
}

.remove-item-btn:hover {
    color: #ff4a4a;
}

.empty-state {
    text-align: center;
    margin: auto;
    color: var(--text-secondary);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.empty-state svg {
    width: 48px;
    height: 48px;
    color: var(--text-muted);
    opacity: 0.5;
}

.drawer-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    background: var(--bg-tertiary);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.price-summary {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.total-line {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--text-primary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 0.75rem;
    margin-top: 0.25rem;
}

/* ==========================================================================
   MODALS (PRODUCT DETAILS / CHECKOUT)
   ========================================================================== */

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 250;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    transition: visibility 0.4s;
}

.modal.open {
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.modal.open .modal-overlay {
    opacity: 1;
}

.modal-content {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-premium);
    border-radius: 8px;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    z-index: 2;
    transform: scale(0.95);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal.open .modal-content {
    transform: scale(1);
    opacity: 1;
}

.modal-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
}

/* Modal Grid (Product Details) */
.modal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.modal-gallery {
    padding: 4rem;
    background: rgba(255, 255, 255, 0.01);
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(255, 255, 255, 0.03);
}

.modal-gallery img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.modal-details {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.modal-category {
    font-size: 0.75rem;
    color: var(--gold-primary);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.modal-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
}

.modal-price {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.modal-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.specs-list {
    margin-top: 0.5rem;
}

.specs-list h4 {
    font-size: 0.85rem;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.specs-list ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.specs-list li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    gap: 0.5rem;
}

.specs-list li::before {
    content: '•';
    color: var(--gold-primary);
}

.modal-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

/* ==========================================================================
   CHECKOUT MODAL / PAYMENT GATEWAY
   ========================================================================== */

.checkout-modal-content {
    max-width: 600px;
    padding: 2.5rem;
}

.checkout-header {
    text-align: center;
    margin-bottom: 2rem;
}

.checkout-logo {
    height: 48px;
    margin-bottom: 0.5rem;
    border-radius: 50%;
    border: 1.5px solid var(--gold-primary);
    padding: 2px;
    filter: sepia(0.25) contrast(1.05) brightness(0.95);
}

.checkout-header h2 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    letter-spacing: 0.05em;
}

.checkout-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.step-indicator {
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 500;
}

.step-indicator.active {
    color: var(--gold-primary);
    font-weight: 600;
}

.step-line {
    height: 1px;
    width: 25px;
    background: rgba(255, 255, 255, 0.05);
}

.checkout-step-panel {
    display: none;
}

.checkout-step-panel.active {
    display: block;
    animation: panelFadeIn 0.4s ease;
}

@keyframes panelFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Form Styles */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.col-span-2 {
    grid-column: span 2;
}

.form-group label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input, .form-group select {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    color: var(--text-primary);
    transition: var(--transition-smooth);
}

.form-group input:focus, .form-group select:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.05);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.15);
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon input {
    width: 100%;
    padding-right: 2.5rem;
}

.input-icon {
    position: absolute;
    right: 1rem;
    width: 18px;
    height: 18px;
    color: var(--gold-primary);
}

.eye-toggle-btn {
    position: absolute;
    right: 0.85rem;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0.2rem;
    display: flex;
    align-items: center;
}

.eye-toggle-btn:hover {
    color: var(--gold-primary);
}

.checkout-actions {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
}

/* STEP 2 - Card Design */
.order-summary-mini {
    background: var(--bg-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.02);
    padding: 0.75rem 1.25rem;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.gateway-tag {
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.08);
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    font-weight: 500;
}

.credit-card-preview {
    margin-top: 1.5rem;
    background: linear-gradient(135deg, #181818 0%, #0d0d0d 100%);
    border: 1px solid var(--gold-primary);
    border-radius: 12px;
    padding: 1.75rem;
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-premium);
    position: relative;
    overflow: hidden;
}

.credit-card-preview::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 180%;
    background: radial-gradient(circle, rgba(212,175,55,0.04) 0%, transparent 70%);
    pointer-events: none;
}

.card-logo-slot {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.card-number-display {
    font-family: monospace;
    font-size: 1.25rem;
    letter-spacing: 0.15em;
    color: var(--text-primary);
    margin: 1.5rem 0;
}

.card-meta-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1rem;
}

.card-label {
    display: block;
    font-size: 0.55rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    margin-bottom: 2px;
}

.card-val {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* STEP 3 - Processing Screen */
.processing-panel {
    padding: 3rem 0;
    text-align: center;
}

.loading-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.gold-spinner {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(212, 175, 55, 0.1);
    border-top: 3px solid var(--gold-primary);
    border-radius: 50%;
    animation: spin 1.2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.success-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    animation: panelFadeIn 0.6s ease;
}

.success-icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glow);
}

.success-check-icon {
    width: 40px;
    height: 40px;
    color: var(--gold-primary);
}

.success-subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.success-p {
    color: var(--text-secondary);
    max-width: 460px;
    margin: 0 auto;
}

.success-invoice {
    background: var(--bg-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: 6px;
    width: 100%;
    padding: 1.5rem;
    margin-top: 1rem;
    text-align: left;
}

.success-invoice h4 {
    font-family: var(--font-serif);
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding-bottom: 0.5rem;
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
}

.invoice-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-height: 150px;
    overflow-y: auto;
    margin-bottom: 0.75rem;
}

.invoice-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.invoice-total {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 0.75rem;
    font-weight: 600;
    font-family: var(--font-serif);
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVENESS)
   ========================================================================== */

@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding-top: 7rem;
        text-align: center;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image {
        order: 2;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navbar-container {
        padding: 1rem;
    }
    
    .nav-menu {
        display: none; /* Hide default nav links, simple dashboard/cart/wishlist menu for mobile */
    }
    
    .search-container {
        width: 140px;
    }
    
    .search-container input:focus {
        width: 160px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .modal-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-gallery {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.03);
        padding: 2.5rem;
    }
    
    .modal-details {
        padding: 2rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
    
    .drawer-content {
        max-width: 100%;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .col-span-2 {
        grid-column: span 1;
    }
    
    .checkout-modal-content {
        padding: 1.5rem;
    }
    
    .checkout-actions {
        flex-direction: column;
    }
    
    .credit-card-preview {
        height: 160px;
        padding: 1.25rem;
    }
    
    .card-number-display {
        font-size: 1.1rem;
        margin: 1rem 0;
    }
}

/* ==========================================================================
   SALON BOOKINGS & SCHEDULER STYLES
   ========================================================================== */

.bookings-section {
    padding: 6rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.bookings-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
    align-items: start;
    margin-top: 2rem;
}

.services-list-wrapper h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.service-card {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition-smooth);
    align-items: center;
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: var(--gold-gradient);
    opacity: 0;
    transition: var(--transition-smooth);
}

.service-card:hover {
    border-color: var(--border-hover);
    transform: translateX(5px);
    box-shadow: var(--shadow-glow);
}

.service-card.selected {
    border-color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.04);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.08);
}

.service-card.selected::after {
    opacity: 1;
}

.service-icon-box {
    width: 54px;
    height: 54px;
    border-radius: 6px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.service-card:hover .service-icon-box {
    border-color: var(--gold-primary);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

.service-card-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.service-card-title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
}

.service-card-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.service-card-meta {
    display: flex;
    gap: 1.25rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    align-items: center;
    margin-top: 0.2rem;
}

.service-card-price {
    color: var(--gold-primary);
    font-weight: 600;
    font-family: var(--font-serif);
    font-size: 0.95rem;
}

.service-select-indicator {
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    font-size: 0.75rem;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.service-card:hover .service-select-indicator {
    border-color: var(--gold-primary);
}

.service-card.selected .service-select-indicator {
    background: var(--gold-gradient);
    color: #000;
    border-color: transparent;
}

/* Scheduler Panel Card */
.scheduler-wrapper {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2.5rem;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: var(--shadow-premium);
    position: sticky;
    top: 110px;
}

.scheduler-empty {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
    max-width: 280px;
    margin: 0 auto;
}

.empty-scheduler-icon {
    width: 44px;
    height: 44px;
    color: var(--text-muted);
    opacity: 0.4;
    margin-bottom: 0.5rem;
}

.scheduler-empty h4 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--text-primary);
}

.scheduler-empty p {
    font-size: 0.85rem;
    line-height: 1.5;
}

.scheduler-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.scheduler-header-mini {
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding-bottom: 1.25rem;
}

.scheduler-header-mini h4 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 0.35rem;
}

.selected-service-price-range {
    font-size: 1.15rem;
    color: var(--gold-primary);
    font-weight: 600;
    font-family: var(--font-serif);
    margin-top: 0.2rem;
}

.scheduler-group {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.scheduler-group label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

/* Date Grid buttons */
.date-picker-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.5rem;
}

.date-day-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 0.5rem;
    border: 1px solid var(--border-color);
    background: var(--bg-tertiary);
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.date-day-btn:hover {
    border-color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.02);
}

.date-day-btn.active {
    background: var(--gold-gradient);
    color: #000;
    border-color: transparent;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.date-day-name {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    margin-bottom: 2px;
}

.date-day-btn.active .date-day-name {
    color: #000;
}

.date-day-num {
    font-size: 1.15rem;
    font-weight: 700;
    font-family: var(--font-serif);
}

/* Time slots picker */
.time-picker-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.4rem;
}

.time-slot {
    padding: 0.7rem 0.25rem;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid var(--border-color);
    background: var(--bg-tertiary);
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    color: var(--text-secondary);
}

.time-slot:hover {
    border-color: var(--gold-primary);
    color: var(--text-primary);
}

.time-slot.active {
    background: var(--gold-gradient);
    color: #000;
    border-color: transparent;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.15);
}

/* Media Query Adaptations for Salon Bookings */
@media (max-width: 1024px) {
    .bookings-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .scheduler-wrapper {
        position: static;
        min-height: auto;
    }
}

@media (max-width: 600px) {
    .date-picker-grid {
        grid-template-columns: repeat(5, 1fr);
    }
    
    .time-picker-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

/* Booking Tabs Styles */
.booking-tabs {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.btab {
    padding: 0.6rem 1.5rem;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    cursor: pointer;
    border-radius: 30px;
    transition: var(--transition-smooth);
    background: var(--bg-tertiary);
}

.btab:hover {
    border-color: var(--gold-primary);
    color: var(--text-primary);
}

.btab.active {
    background: var(--gold-gradient);
    color: #000;
    border-color: transparent;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.15);
}

/* Inches Dropdown for Weaves */
.inch-select-wrapper {
    margin-top: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.inch-select-wrapper label {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.inch-select {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.35rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    cursor: pointer;
    width: 100%;
    outline: none;
    transition: var(--transition-smooth);
}

.inch-select:focus {
    border-color: var(--gold-primary);
}

/* ==========================================================================
   USER AUTHENTICATION & PERSONAL DASHBOARD STYLES
   ========================================================================== */

.user-profile-menu-container {
    position: relative;
}

.nav-btn-text {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-left: 0.4rem;
    display: inline-block;
    vertical-align: middle;
}

/* Hide navigation button text on very small screen sizes */
@media (max-width: 480px) {
    .nav-btn-text {
        display: none;
    }
}

/* Account Profile Dropdown */
.profile-dropdown {
    position: absolute;
    top: 125%;
    right: 0;
    width: 250px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    box-shadow: var(--shadow-premium), 0 10px 20px rgba(0,0,0,0.05);
    display: none;
    flex-direction: column;
    padding: 1.25rem;
    z-index: 120;
    animation: dropdownFadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.profile-dropdown.open {
    display: flex;
}

@keyframes dropdownFadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

.dropdown-header {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    border-bottom: 1px solid rgba(13, 13, 13, 0.05);
    padding-bottom: 0.85rem;
    margin-bottom: 0.75rem;
}

.user-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: #000;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    border: 1px solid var(--gold-primary);
    flex-shrink: 0;
}

.user-metadata-dropdown {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.user-metadata-dropdown h4 {
    font-family: var(--font-serif);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-metadata-dropdown span {
    font-size: 0.7rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-body {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    width: 100%;
    text-align: left;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    color: var(--text-secondary);
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dropdown-item:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    padding-left: 0.9rem;
}

.dropdown-item svg {
    width: 15px;
    height: 15px;
    color: var(--gold-primary);
}

.dropdown-divider {
    height: 1px;
    background: rgba(13, 13, 13, 0.05);
    margin: 0.5rem 0.25rem;
}

.dropdown-item.logout-item {
    color: #ff4a4a;
}

.dropdown-item.logout-item:hover {
    background: rgba(255, 74, 74, 0.05);
    color: #ff4a4a;
}

.dropdown-item.logout-item svg {
    color: #ff4a4a;
}

/* Auth Modal Tabs styling overrides */
.auth-tab {
    background: none;
    border: none;
    color: var(--text-muted);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid transparent;
    transition: var(--transition-smooth);
}

.auth-tab:hover {
    color: var(--text-primary);
}

.auth-tab.active {
    color: var(--gold-primary);
    border-bottom-color: var(--gold-primary);
    font-weight: 600;
}

.auth-panel {
    display: block;
    animation: panelFadeIn 0.3s ease;
}

.auth-panel.hidden {
    display: none !important;
}

/* Dashboard list items cards */
.dtab {
    padding: 0.5rem 1.25rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid var(--border-color);
    background: var(--bg-tertiary);
    border-radius: 30px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dtab:hover {
    border-color: var(--gold-primary);
    color: var(--text-primary);
}

.dtab.active {
    background: var(--gold-gradient);
    color: #000;
    border-color: transparent;
    box-shadow: 0 4px 10px rgba(197, 160, 46, 0.15);
}

.dashboard-body-panel {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.dashboard-body-panel.hidden {
    display: none !important;
}

.dashboard-item-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    transition: var(--transition-smooth);
}

.dashboard-item-card:hover {
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-glow);
}

.dashboard-item-left {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.dashboard-item-title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.dashboard-item-meta {
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dashboard-item-right {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.dashboard-item-price {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--gold-primary);
    font-weight: 600;
}

.dashboard-item-status {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: var(--gold-primary);
    background: rgba(197, 160, 46, 0.08);
    padding: 0.25rem 0.6rem;
    border-radius: 3px;
    border: 1px solid rgba(197, 160, 46, 0.15);
}

/* ==========================================================================
   ADMIN PORTAL OPERATIONS & TABLES
   ========================================================================== */

.admin-table-container {
    width: 100%;
    overflow-x: auto;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    background: var(--bg-secondary);
    margin-top: 1rem;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.admin-table th {
    background: var(--bg-tertiary);
    padding: 1rem 1.25rem;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-color);
}

.admin-table td {
    padding: 1.1rem 1.25rem;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
}

.admin-table tbody tr:hover {
    background: rgba(13, 13, 13, 0.015);
}

/* Action Group */
.admin-btn-group {
    display: flex;
    gap: 0.4rem;
    align-items: center;
}

.admin-btn {
    padding: 0.35rem 0.65rem;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    background: var(--bg-secondary);
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.admin-btn:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

.admin-btn-approve {
    background: rgba(197, 160, 46, 0.08);
    color: var(--gold-primary);
    border-color: rgba(197, 160, 46, 0.2);
}

.admin-btn-approve:hover {
    background: var(--gold-gradient);
    color: #000;
    border-color: transparent;
}

.admin-btn-cancel {
    background: rgba(255, 74, 74, 0.05);
    color: #ff4a4a;
    border-color: rgba(255, 74, 74, 0.15);
}

.admin-btn-cancel:hover {
    background: #ff4a4a;
    color: #ffffff;
    border-color: transparent;
}

/* Admin Panel State Switch */
.admin-panel-body {
    display: block;
    animation: panelFadeIn 0.3s ease;
}

.admin-panel-body.hidden {
    display: none !important;
}

/* Admin Status Badges */
.admin-status-badge {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.55rem;
    border-radius: 3px;
    display: inline-block;
}

.admin-status-pending {
    color: #c5a02e;
    background: rgba(197, 160, 46, 0.08);
    border: 1px solid rgba(197, 160, 46, 0.2);
}

.admin-status-approved {
    color: #1b8a5a;
    background: rgba(27, 138, 90, 0.08);
    border: 1px solid rgba(27, 138, 90, 0.2);
}

.admin-status-completed {
    color: var(--text-muted);
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
}

.admin-status-cancelled {
    color: #ff4a4a;
    background: rgba(255, 74, 74, 0.06);
    border: 1px solid rgba(255, 74, 74, 0.18);
}

/* ==========================================================================
   REAL-TIME TOAST NOTIFICATIONS & BADGES
   ========================================================================== */

#toast-notification-container {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    pointer-events: none;
}

.toast-alert {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--gold-primary);
    box-shadow: var(--shadow-premium), 0 15px 30px rgba(0,0,0,0.06);
    border-radius: 8px;
    padding: 1.1rem 1.4rem;
    width: 340px;
    pointer-events: auto;
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    animation: toastSlideIn 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    transition: opacity 0.3s, transform 0.3s;
}

.toast-alert.fade-out {
    opacity: 0;
    transform: translateY(-12px) scale(0.95);
}

@keyframes toastSlideIn {
    from { opacity: 0; transform: translateY(25px) scale(0.92); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.toast-icon {
    color: var(--gold-primary);
    margin-top: 1px;
}

.toast-body {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.toast-title {
    font-family: var(--font-serif);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
}

.toast-message {
    font-size: 0.78rem;
    color: var(--text-secondary);
    line-height: 1.35;
}

/* User avatar wrapper & badge counts */
.user-avatar-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.badge-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4a4a;
    color: #ffffff;
    font-size: 0.6rem;
    font-weight: 700;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.12);
    animation: badgePop 0.3s ease-out;
}

.badge-count.hidden {
    display: none !important;
}

@keyframes badgePop {
    from { transform: scale(0.5); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Dashboard Notif Banners */
.notif-banner {
    background: rgba(197, 160, 46, 0.05);
    border: 1px solid rgba(197, 160, 46, 0.16);
    border-radius: 6px;
    padding: 0.9rem 1.1rem;
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    margin-bottom: 0.85rem;
    animation: goldPulseBorder 3s infinite ease-in-out;
}

.notif-banner-text {
    font-size: 0.78rem;
    color: var(--text-secondary);
    line-height: 1.35;
}

.notif-banner-time {
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-top: 0.15rem;
}

@keyframes goldPulseBorder {
    0% { border-color: rgba(197, 160, 46, 0.16); }
    50% { border-color: rgba(197, 160, 46, 0.35); }
    100% { border-color: rgba(197, 160, 46, 0.16); }
}

/* Search Autocomplete & Scroll Director Dropdown */
.search-results-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 330px;
    max-height: 380px;
    background: rgba(18, 18, 18, 0.96);
    border: 1px solid rgba(197, 160, 46, 0.3);
    border-radius: 4px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 
                0 0 20px rgba(197, 160, 46, 0.05);
    backdrop-filter: blur(10px);
    overflow-y: auto;
    z-index: 1100;
    display: none;
    padding: 0.5rem 0;
    transition: var(--transition-smooth);
}

.search-results-dropdown.active {
    display: block;
}

.search-dropdown-group-title {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold-primary);
    padding: 0.6rem 1rem 0.3rem;
    font-weight: 700;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 0.25rem;
}

.search-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1rem;
    color: #F5F5F7;
    cursor: pointer;
    font-size: 0.8rem;
    transition: var(--transition-smooth);
    border-left: 2px solid transparent;
}

.search-dropdown-item:hover {
    background: rgba(197, 160, 46, 0.08);
    border-left-color: var(--gold-primary);
    color: #FFFFFF;
}

.search-dropdown-item img {
    width: 32px;
    height: 32px;
    border-radius: 2px;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,0.1);
}

.search-dropdown-item-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.search-dropdown-item-title {
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-dropdown-item-meta {
    font-size: 0.68rem;
    color: var(--text-muted);
    margin-top: 0.1rem;
}

.search-dropdown-item-price {
    color: var(--gold-primary);
    font-weight: 600;
    font-size: 0.75rem;
}

.search-dropdown-empty {
    padding: 2rem 1rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.search-dropdown-empty i {
    width: 28px;
    height: 28px;
    display: block;
    margin: 0 auto 0.5rem auto;
    opacity: 0.5;
}

.search-dropdown-empty span {
    color: var(--gold-primary);
    font-weight: 600;
}

/* Flash Target Highlight animation */
.flash-highlight {
    animation: goldFlashEffect 1.8s ease-out forwards;
}

@keyframes goldFlashEffect {
    0% {
        box-shadow: 0 0 0 0px rgba(197, 160, 46, 0.6);
        border-color: var(--gold-primary);
        background-color: rgba(197, 160, 46, 0.15);
    }
    30% {
        box-shadow: 0 0 0 10px rgba(197, 160, 46, 0);
        border-color: var(--gold-primary);
        background-color: rgba(197, 160, 46, 0.15);
    }
    100% {
        box-shadow: 0 0 0 0px rgba(197, 160, 46, 0);
    }
}

/* Credentials Recovery Tabs and Subpanels */
.recovery-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.5rem;
}

.dtab {
    background: transparent;
    border: 1px solid transparent;
    color: var(--text-secondary);
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.dtab.active {
    background: rgba(197, 160, 46, 0.1);
    border-color: rgba(197, 160, 46, 0.3);
    color: var(--gold-primary);
}

.recovery-subpanel {
    display: none;
}

.recovery-subpanel.active {
    display: block;
}

/* Lookbook Hero Styles */
.lookbook-hero {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.lookbook-hero-content h1 {
    font-size: 3.2rem;
    line-height: 1.1;
}

/* Lookbook Grid Layout */
.lookbook-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.lookbook-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.lookbook-card:hover img {
    transform: scale(1.06);
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .lookbook-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .lookbook-hero-content {
        padding-right: 0 !important;
        text-align: center;
    }
    
    .lookbook-hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .lookbook-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-banner {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
    }
}

@media (max-width: 576px) {
    .lookbook-grid {
        grid-template-columns: 1fr;
    }
    
    .features-banner {
        grid-template-columns: 1fr !important;
    }
}
/* Fullscreen Dashboard Modals Configuration */
#dashboard-modal,
#admin-modal {
    align-items: stretch;
    justify-content: stretch;
}

#dashboard-modal .modal-content,
#admin-modal .modal-content {
    width: 100vw;
    height: 100vh;
    max-width: 100vw !important;
    max-height: 100vh !important;
    border-radius: 0;
    border: none;
    margin: 0;
    padding: 3.5rem 4rem !important;
    box-sizing: border-box;
}

#dashboard-modal .modal-overlay,
#admin-modal .modal-overlay {
    display: none;
}

/* Lock background body scroll when fullscreen modal is active */
body.modal-open {
    overflow: hidden;
}

@media (max-width: 992px) {
    #dashboard-modal .modal-content,
    #admin-modal .modal-content {
        padding: 2.5rem 2rem !important;
    }
}

@media (max-width: 576px) {
    #dashboard-modal .modal-content,
    #admin-modal .modal-content {
        padding: 2rem 1.25rem !important;
    }
}

/* ==========================================================================
   OUR CLIENTS GALLERY SECTION
   ========================================================================== */
.clients-gallery-section {
    position: relative;
}

.gallery-tab {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 0.5rem 1.25rem;
    font-size: 0.78rem;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.gallery-tab:hover {
    color: var(--gold-primary);
}

.gallery-tab.active {
    background: var(--gold-primary);
    color: #0d0d0d;
    font-weight: 700;
}

.client-gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.client-gallery-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.client-gallery-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-primary);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

.client-gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.client-gallery-card:hover img {
    transform: scale(1.08);
}

.client-gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem 1rem;
    transition: background 0.3s ease;
}

.client-gallery-card:hover .client-gallery-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0.1) 100%);
}

.client-gallery-category {
    font-size: 0.65rem;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.client-gallery-title {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    color: #ffffff;
    margin: 0 0 0.2rem 0;
    font-weight: 700;
    line-height: 1.2;
}

.client-gallery-desc {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

@media (max-width: 1200px) {
    .client-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
}

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

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

