@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Prata&display=swap');

:root {
    --bg-color: #F7F3F0;
    --surface-color: #FFFFFF;
    --text-primary: #111111;
    --text-secondary: #555555;
    --accent-gold: #D4AF37;
    --accent-maroon: #8B0000;
    --border-color: #E2DBD5;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    --font-elegant: 'Prata', serif;
    --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

h1,
h2,
h3,
.serif {
    font-family: var(--font-serif);
    font-weight: 400;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    color: white;
    background: #000;
}

header.scrolled {
    background: #000;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1.2rem 4rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--bg-color);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    transition: 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    color: var(--text-primary);
    z-index: 1001;
    display: flex;
}

.nav-links.active {
    right: 0;
}

.nav-links a {
    text-transform: uppercase;
    font-size: 2rem;
    font-family: var(--font-serif);
    letter-spacing: 4px;
    font-weight: 500;
    color: inherit;
    position: relative;
}

.logo img {
    height: 60px;
    /* Increased for impact */
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.logo:hover img {
    transform: scale(1.05);
}

.header-icons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    color: inherit;
}

/* User Auth Styles */
#user-auth-area {
    display: flex;
    align-items: center;
    position: relative;
}

.signin-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: #3c4043;
    border: 1px solid #dadce0;
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    font-family: var(--font-sans);
    transition: background 0.3s ease;
}

.signin-btn:hover {
    background: #f8f9fa;
}

/* Authentication Modal */
.auth-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 5000;
    justify-content: center;
    align-items: center;
}

.auth-modal-content {
    background: var(--surface-color);
    padding: 3rem;
    width: 90%;
    max-width: 450px;
    position: relative;
    border-radius: 4px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    text-align: center;
    color: var(--text-primary);
}

.auth-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-secondary);
}

.auth-input {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(0,0,0,0.1);
    background: #f9f9f9;
    font-size: 1rem;
    font-family: var(--font-sans);
    outline: none;
}
.auth-input:focus {
    border-color: var(--accent-gold);
}

.user-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 4px 12px;
    border-radius: 30px;
    background: rgba(255,255,255,0.1);
    transition: background 0.3s ease;
}
.user-badge:hover {
    background: rgba(255,255,255,0.2);
}

.user-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}

#user-auth-area {
    position: relative;
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 5px;
    background: var(--surface-color);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    border-radius: 4px;
    padding: 0.5rem 0;
    min-width: 120px;
    z-index: 1000;
}

.user-dropdown a {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.user-dropdown a:hover {
    background: rgba(255,255,255,0.05);
    color: var(--accent-gold);
}

#user-name-display {
    font-size: 0.85rem;
    font-weight: 500;
    display: none;
}
@media (min-width: 768px) {
    #user-name-display {
        display: block;
    }
}

/* Universal Toggle */
.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 8px;
    cursor: pointer;
    z-index: 2001;
    padding: 10px;
}

.menu-toggle span {
    width: 30px;
    height: 1px;
    background: currentColor;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

/* About Us */
.about-hero {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('./img1.png');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.6);
    /* Reduced brightness for better text contrast */
}

.hero-content {
    color: white;
    max-width: 800px;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 5rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.hero-content p {
    font-size: 1.2rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
}

.btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    border: 1px solid currentColor;
    color: inherit;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    background: transparent;
    font-weight: 500;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--text-primary);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
    transform: translate(-50%, -50%) rotate(45deg);
}

.btn:hover {
    color: var(--surface-color) !important;
}

.btn:hover::before {
    width: 300%;
    height: 300%;
}

/* Section Common */
section {
    padding: 8rem 4rem;
}

.section-title {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-title span {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.8rem;
    color: var(--accent-gold);
}

/* Storytelling Stalls */
.bazaar-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 8rem;
}

.bazaar-grid.reverse {
    grid-template-columns: 1.2fr 1fr;
}

.bazaar-img {
    position: relative;
    overflow: hidden;
    height: 600px;
}

.bazaar-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s ease;
}

.bazaar-grid:hover .bazaar-img img {
    transform: scale(1.05);
}

.bazaar-info h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.bazaar-info p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 500px;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.product-card {
    background: var(--surface-color);
    padding: 1.5rem;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.product-card img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    margin-bottom: 1.5rem;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.product-card img.loaded {
    opacity: 1;
}

.product-image-container {
    position: relative;
    width: 100%;
    height: 450px;
    background: linear-gradient(110deg, #f0f0f0 8%, #e0e0e0 18%, #f0f0f0 33%);
    background-size: 200% 100%;
    animation: shimmer 1.5s linear infinite;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.product-image-container img {
    margin-bottom: 0;
    height: 100%;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.product-meta {
    text-align: center;
}

.product-meta h4 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.product-meta .category {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--accent-gold);
    letter-spacing: 2px;
}

.product-meta .price {
    margin-top: 1rem;
    font-weight: 500;
}

/* Modal / Fitting Room */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: var(--bg-color);
    width: 90%;
    max-width: 1200px;
    height: 80vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
}

.modal-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
}

.modal-gallery {
    overflow: hidden;
}

.modal-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: zoom-in;
}

.modal-details {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-details h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.modal-details .suit-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin: 2rem 0;
}

/* Stunning Footer */
footer {
    padding: 8rem 4rem 4rem;
    background: #4a0404;
    /* Deep Royal Maroon */
    color: #fff;
    position: relative;
    border-top: 2px solid var(--accent-gold);
}

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

.footer-col h4 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-col .footer-logo-img {
    height: 80px;
    margin-bottom: 1.5rem;
}

.footer-col p {
    font-size: 0.95rem;
    color: #ffd7d7;
    line-height: 1.8;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #fff;
    font-size: 0.9rem;
    position: relative;
    padding-left: 0;
    transition: 0.3s;
}

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

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.footer-contact .icon-label {
    color: var(--accent-gold);
    font-weight: 600;
    min-width: 80px;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.footer-social a:hover {
    background: var(--accent-gold);
    color: #4a0404;
    border-color: var(--accent-gold);
}

.footer-bottom {
    margin-top: 6rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    opacity: 0.6;
}

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

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

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease;
}

.preloader-logo {
    font-family: var(--font-elegant);
    font-size: 3rem;
    letter-spacing: 12px;
    margin-bottom: 2rem;
    color: var(--text-primary);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards 0.5s;
}

.preloader-bar {
    width: 200px;
    height: 1px;
    background: var(--border-color);
    position: relative;
    overflow: hidden;
}

.preloader-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-gold);
    animation: preloaderProgress 2s ease-in-out infinite;
}

@keyframes preloaderProgress {
    0% {
        left: -100%;
    }

    50% {
        left: 0%;
    }

    100% {
        left: 100%;
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Side Cart Drawer */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2999;
    display: none;
    opacity: 0;
    transition: var(--transition);
}

.cart-overlay.active {
    display: block;
    opacity: 1;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    height: 100%;
    background: var(--surface-color);
    z-index: 3000;
    transition: var(--transition);
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
}

.cart-drawer.active {
    right: 0;
}

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

.cart-items {
    flex-grow: 1;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.cart-item img {
    width: 80px;
    height: 100px;
    object-fit: cover;
}

.cart-footer {
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

/* Advanced E-commerce Layout */
.shop-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 4rem;
    padding: 0 4rem 8rem;
}

.filter-sidebar {
    background: var(--surface-color);
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    position: sticky;
    top: 100px;
    height: fit-content;
}

.filter-group {
    margin-bottom: 2.5rem;
}

.filter-group h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0.8rem;
    cursor: pointer;
    font-size: 0.9rem;
}

.filter-option input {
    accent-color: var(--accent-gold);
}

.sorting-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    margin-bottom: 3rem;
    border-bottom: 1px solid var(--border-color);
}

.sorting-controls {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.sort-select {
    padding: 0.5rem 1rem;
    border: none;
    background: transparent;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    cursor: pointer;
    border-bottom: 1px solid var(--border-color);
    outline: none;
}

/* Quick Add Popover */
.product-card {
    overflow: hidden;
}

.quick-add-overlay {
    position: absolute;
    bottom: -100px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    transition: 0.4s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 5;
}

.product-card:hover .quick-add-overlay {
    bottom: 0;
}

.size-selector {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.size-btn {
    width: 35px;
    height: 35px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    cursor: pointer;
    transition: var(--transition);
}

.size-btn:hover,
.size-btn.active {
    background: var(--text-primary);
    color: white;
    border-color: var(--text-primary);
}

/* Pagination */
.pagination-wrap {
    text-align: center;
    padding-top: 5rem;
}

.load-more-btn {
    padding: 1rem 3rem;
    background: transparent;
    border: 1px solid var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition);
}

.load-more-btn:hover {
    background: var(--text-primary);
    color: white;
}

/* Contact Page */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 8rem 4rem;
}

.contact-info h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--accent-gold);
}

/* Map Section Premium Polish */
.map-container {
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    position: relative;
    border-radius: 4px;
}

.map-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.05);
}

.contact-form input,
.contact-form textarea {
    padding: 1.2rem;
    border: 1px solid var(--border-color);
    background: var(--surface-color);
    font-family: var(--font-sans);
    outline: none;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--accent-gold);
}

.map-placeholder {
    height: 400px;
    background: #e5e5e5;
    margin-top: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.map-placeholder img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

/* WhatsApp Floating Widget */
.wa-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    transition: var(--transition);
    font-size: 0.9rem;
}

.wa-widget:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

.wa-widget-icon {
    width: 25px;
    filter: invert(1);
}

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

    50% {
        transform: scale(1.05);
    }

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

.wa-widget {
    animation: pulse 2s infinite;
}

/* Updated Section Backgrounds */
.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.pexels.com/photos/1444442/pexels-photo-1444442.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
    background-size: cover;
    background-position: center;
}

/* Responsiveness */
@media (max-width: 1024px) {
    .wa-widget span {
        display: none;
    }

    .wa-widget {
        padding: 15px;
        bottom: 20px;
        right: 20px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    header {
        padding: 1rem 1.5rem;
    }

    header.scrolled {
        padding: 0.8rem 1.5rem;
    }

@media (max-width: 768px) {
    header {
        padding: 1rem 1.5rem;
    }

    header.scrolled {
        padding: 0.8rem 1.5rem;
    }

    .logo img {
        height: 45px;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-content p {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }

    section {
        padding: 4rem 1.5rem;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }

    .bazaar-grid, .bazaar-grid.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .bazaar-img {
        height: 400px;
    }

    .shop-container, .contact-container {
        grid-template-columns: 1fr;
        padding: 8rem 1.5rem 4rem !important;
        gap: 2rem;
    }

    .filter-sidebar {
        position: relative;
        top: 0;
        padding: 1.5rem;
    }

    .sorting-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1rem 0;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 1.5rem;
    }

    .modal-content {
        grid-template-columns: 1fr;
        height: 90vh;
        overflow-y: auto;
    }

    .modal-details {
        padding: 2rem;
    }

    .modal-details h2 {
        font-size: 2.5rem;
    }

    .contact-info h2 {
        font-size: 2.5rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        margin-top: 3rem;
    }

    .cart-drawer {
        width: 100%;
        right: -100%;
    }

    .header-icons {
        gap: 1rem;
    }

    #user-name-display {
        display: none !important;
    }

    .map-section {
        padding: 0 1.5rem 4rem !important;
    }

    .map-container {
        height: 350px !important;
    }

    .login-header h1 {
        font-size: 2.2rem !important;
    }

    .login-container {
        padding: 2.5rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .btn {
        padding: 1rem 1.5rem;
        font-size: 0.7rem;
        letter-spacing: 1px;
    }

    .logo img {
        height: 35px;
    }
}

/* Premium Customization UI */
.dropzone {
    border: 2px dashed var(--border-color);
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 12px;
    position: relative;
    background: #fdfdfd;
    transition: all 0.3s ease;
    cursor: pointer;
}

.dropzone:hover {
    border-color: var(--accent-gold);
    background: #fff;
    transform: translateY(-2px);
}

.modal {
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

/* Product Image Lightbox */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    cursor: zoom-out;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 50px rgba(0,0,0,0.5);
}

.lightbox-modal.active .lightbox-img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    line-height: 1;
    z-index: 10001;
    transition: transform 0.3s ease;
}

.lightbox-close:hover {
    transform: rotate(90deg) scale(1.1);
    color: var(--accent-gold);
}

.product-image-container img {
    cursor: zoom-in;
}
