/* ==========================================================================
   Aboli Bag Boutique & Jewellery Shop - Premium Stylesheet
   ========================================================================== */

/* --- Core Variables & Resets --- */
:root {
    /* Brand Identity & Visual Language */
    --primary-color: #8B1A4A;     /* Deep Rose / Maroon (elegance, femininity) */
    --primary-light: #a92d62;
    --secondary-color: #D4A96A;   /* Warm Gold (luxury, premium feel) */
    --secondary-hover: #c59755;
    --accent-color: #5C3A6E;      /* Deep Purple (depth, richness) */
    --bg-main: #FDF8F2;           /* Warm Cream / Off-white */
    --bg-card: #FFFFFF;
    --text-dark: #2C1810;         /* Deep Brown (warmth over harsh black) */
    --text-light: #6E5F59;        /* Warm Grey-Brown for body copy */
    --text-muted: #A39691;
    --whatsapp: #25D366;
    --whatsapp-hover: #20ba56;
    
    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Nunito', 'Segoe UI', sans-serif;
    --font-accent: 'Montserrat', sans-serif;
    
    /* Layout & Styling Tokens */
    --border-radius-card: 8px;
    --border-radius-btn: 4px;
    --border-radius-input: 2px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-soft: 0 4px 20px rgba(44, 24, 16, 0.08);
    --shadow-medium: 0 10px 30px rgba(44, 24, 16, 0.12);
    --shadow-glow: 0 0 15px rgba(212, 169, 106, 0.3);
}

/* Reset & Base Elements */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}

/* --- Typographic System --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.3;
}

.section-title {
    font-size: 2.8rem;
    text-align: center;
    position: relative;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.section-title span {
    color: var(--primary-color);
}

.section-title::after {
    content: '✦';
    color: var(--secondary-color);
    font-size: 1.2rem;
    display: block;
    text-align: center;
    margin-top: 8px;
    letter-spacing: 4px;
}

.section-subtitle {
    text-align: center;
    font-family: var(--font-accent);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 50px;
}

.section-intro {
    max-width: 700px;
    margin: -35px auto 50px auto;
    text-align: center;
    color: var(--text-light);
    font-size: 1.05rem;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

/* --- Helper Classes & Badges --- */
.text-gold { color: var(--secondary-color); }
.text-rose { color: var(--primary-color); }
.bg-rose { background-color: var(--primary-color); }
.bg-cream { background-color: var(--bg-main); }
.font-accent-label {
    font-family: var(--font-accent);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.tag-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: #FFFFFF;
    font-family: var(--font-accent);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: var(--border-radius-btn);
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(139, 26, 74, 0.3);
}

.tag-badge.sale {
    background-color: var(--accent-color);
    box-shadow: 0 2px 10px rgba(92, 58, 110, 0.3);
}

.tag-badge.new {
    background-color: var(--secondary-color);
    color: var(--text-dark);
    box-shadow: 0 2px 10px rgba(212, 169, 106, 0.3);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border-radius: var(--border-radius-btn);
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(139, 26, 74, 0.2);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 26, 74, 0.3);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--text-dark);
    box-shadow: 0 4px 12px rgba(212, 169, 106, 0.2);
}

.btn-secondary:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 169, 106, 0.3);
}

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

.btn-outline:hover {
    background-color: var(--primary-color);
    color: #FFFFFF;
    transform: translateY(-2px);
}

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

.btn-outline-gold:hover {
    background-color: var(--secondary-color);
    color: var(--text-dark);
    transform: translateY(-2px);
}

.btn-whatsapp-cta {
    background-color: var(--whatsapp);
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp-cta:hover {
    background-color: var(--whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-full {
    width: 100%;
}

/* --- Sticky Header / Navbar --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(253, 248, 242, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 169, 106, 0.15);
    box-shadow: 0 2px 20px rgba(44, 24, 16, 0.03);
    transition: var(--transition);
}

.header.scrolled {
    padding: 5px 0;
    background-color: rgba(253, 248, 242, 0.98);
    box-shadow: 0 5px 25px rgba(44, 24, 16, 0.06);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
    max-width: 1300px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.header.scrolled .logo-img {
    height: 44px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-accent);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-dark);
    padding: 8px 0;
    position: relative;
}

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

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

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

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

.nav-link-admin {
    font-family: var(--font-accent);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-dark);
    padding: 8px 0;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}

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

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

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

.nav-whatsapp-btn {
    padding: 10px 18px;
    border-radius: var(--border-radius-btn);
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: var(--whatsapp);
    color: #FFFFFF;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
}

.nav-whatsapp-btn:hover {
    background-color: var(--whatsapp-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--text-dark);
    cursor: pointer;
    padding: 5px;
}

/* --- Page Sections Router --- */
.page-section {
    display: none;
}

.page-section.active-section {
    display: block;
    animation: pageReveal 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

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

/* --- Section: Hero Banner Slideshow --- */
.hero-slider-container {
    position: relative;
    height: 90vh;
    min-height: 580px;
    width: 100%;
    margin-top: 76px;
    overflow: hidden;
    background-color: #1a0f0a;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(44, 24, 16, 0.85) 0%, rgba(44, 24, 16, 0.5) 50%, rgba(44, 24, 16, 0.2) 100%);
    z-index: 2;
}

.slide-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.05);
    transition: transform 6s ease-in-out;
}

.hero-slide.active .slide-img {
    transform: scale(1);
}

.hero-content-wrapper {
    position: relative;
    z-index: 3;
    max-width: 700px;
    padding: 0 40px;
    color: #FDF8F2;
}

.hero-tag {
    display: inline-block;
    font-family: var(--font-accent);
    color: var(--secondary-color);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1.15;
    margin-bottom: 24px;
    color: #FFFFFF;
    opacity: 0;
    transform: translateY(35px);
}

.hero-title span {
    color: var(--secondary-color);
}

.hero-desc {
    font-size: 1.15rem;
    color: rgba(253, 248, 242, 0.85);
    margin-bottom: 35px;
    max-width: 580px;
    opacity: 0;
    transform: translateY(25px);
}

.hero-btns {
    display: flex;
    gap: 16px;
    opacity: 0;
    transform: translateY(20px);
}

/* Slide Entrance Animations */
.hero-slide.active .hero-tag {
    animation: slideUpFade 0.6s cubic-bezier(0.25, 1, 0.5, 1) 0.3s forwards;
}
.hero-slide.active .hero-title {
    animation: slideUpFade 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.5s forwards;
}
.hero-slide.active .hero-desc {
    animation: slideUpFade 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.7s forwards;
}
.hero-slide.active .hero-btns {
    animation: slideUpFade 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.9s forwards;
}

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

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(253, 248, 242, 0.15);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(253, 248, 242, 0.2);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 4;
    transition: var(--transition);
}

.slider-arrow:hover {
    background-color: var(--secondary-color);
    color: var(--text-dark);
}

.slider-arrow.prev { left: 30px; }
.slider-arrow.next { right: 30px; }

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 4;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(253, 248, 242, 0.3);
    border: 1px solid rgba(253, 248, 242, 0.4);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background-color: var(--secondary-color);
    width: 28px;
    border-radius: 6px;
}

/* --- Section: Brand Intro Strip --- */
.brand-intro-strip {
    background-color: var(--primary-color);
    color: #FFFFFF;
    padding: 24px 0;
    overflow: hidden;
    position: relative;
    border-bottom: 2px solid var(--secondary-color);
}

.brand-intro-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.intro-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-accent);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.intro-item i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

/* --- Section: Featured Categories --- */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.category-box {
    position: relative;
    height: 480px;
    border-radius: var(--border-radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    cursor: pointer;
}

.category-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(44, 24, 16, 0.85) 0%, rgba(44, 24, 16, 0.3) 60%, rgba(44, 24, 16, 0) 100%);
    z-index: 2;
    transition: var(--transition);
}

.category-box-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.category-box-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 35px;
    z-index: 3;
    color: #FFFFFF;
}

.cat-label {
    font-family: var(--font-accent);
    color: var(--secondary-color);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: inline-block;
}

.cat-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.cat-link {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #FFFFFF;
}

.cat-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.category-box:hover .category-box-img {
    transform: scale(1.06);
}

.category-box:hover::before {
    background: linear-gradient(to top, rgba(139, 26, 74, 0.85) 0%, rgba(44, 24, 16, 0.4) 60%, rgba(44, 24, 16, 0) 100%);
}

.category-box:hover .cat-link i {
    transform: translateX(5px);
    color: var(--secondary-color);
}

/* --- Section: Why Choose Us --- */
.why-choose-us-section {
    background-color: rgba(212, 169, 106, 0.05);
    border-top: 1px solid rgba(212, 169, 106, 0.1);
    border-bottom: 1px solid rgba(212, 169, 106, 0.1);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-card {
    background-color: var(--bg-card);
    padding: 40px 30px;
    border-radius: var(--border-radius-card);
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(212, 169, 106, 0.08);
    transition: var(--transition);
}

.why-icon-box {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(139, 26, 74, 0.06);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    font-size: 1.8rem;
    border: 1px dashed var(--primary-color);
    transition: var(--transition);
}

.why-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.why-desc {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.6;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--secondary-color);
}

.why-card:hover .why-icon-box {
    background-color: var(--primary-color);
    color: #FFFFFF;
    border-style: solid;
}

/* --- Section: About Us Page Section --- */
.about-intro-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-text-content h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.about-text-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-quote {
    border-left: 3px solid var(--secondary-color);
    padding-left: 20px;
    font-style: italic;
    color: var(--primary-color);
    font-size: 1.15rem;
    margin: 25px 0;
    font-family: var(--font-heading);
}

.about-img-frame {
    position: relative;
    border-radius: var(--border-radius-card);
}

.about-img-frame img {
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-medium);
    z-index: 2;
    position: relative;
}

.about-img-frame::after {
    content: '';
    position: absolute;
    inset: 15px -15px -15px 15px;
    border: 2px solid var(--secondary-color);
    border-radius: var(--border-radius-card);
    z-index: 1;
}

/* About Values & Mission */
.about-mission-strip {
    background-color: var(--accent-color);
    color: #FFFFFF;
    padding: 80px 0;
    border-radius: var(--border-radius-card);
    margin-bottom: 80px;
    text-align: center;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.mission-card h4 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.mission-card p {
    color: rgba(253, 248, 242, 0.85);
    font-size: 1rem;
    line-height: 1.7;
}

/* Core Values */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    background-color: var(--bg-card);
    padding: 40px 30px;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-soft);
    border-bottom: 3px solid transparent;
}

.value-card:hover {
    border-bottom-color: var(--primary-color);
    transform: translateY(-2px);
}

.value-number {
    font-family: var(--font-accent);
    color: rgba(214, 169, 106, 0.4);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: block;
}

.value-card h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.value-card p {
    color: var(--text-light);
    font-size: 0.92rem;
}

/* --- Section: Product Catalogue (/products) --- */
.products-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
    align-items: start;
}

/* Sidebar Filters */
.products-sidebar {
    background-color: var(--bg-card);
    padding: 30px 24px;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(212, 169, 106, 0.1);
    position: sticky;
    top: 110px;
}

.filter-group {
    margin-bottom: 30px;
}

.filter-group:last-child {
    margin-bottom: 0;
}

.filter-title {
    font-family: var(--font-accent);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-btn {
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-light);
    cursor: pointer;
    padding: 4px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
}

.filter-btn i {
    font-size: 0.8rem;
    opacity: 0;
    transition: var(--transition);
}

.filter-btn:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.filter-btn.active {
    color: var(--primary-color);
    font-weight: 700;
}

.filter-btn.active i {
    opacity: 1;
}

/* Category Filter Tabs for Mobile / Alternative view */
.catalog-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    background-color: var(--bg-card);
    padding: 16px 24px;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-soft);
}

.search-box {
    position: relative;
    flex-grow: 1;
    max-width: 400px;
}

.search-input {
    width: 100%;
    padding: 10px 16px 10px 42px;
    border: 1px solid rgba(44, 24, 16, 0.12);
    border-radius: var(--border-radius-input);
    font-size: 0.9rem;
    background-color: var(--bg-main);
    transition: var(--transition);
}

.search-input:focus {
    outline: none;
    border-color: var(--secondary-color);
    background-color: #FFFFFF;
    box-shadow: var(--shadow-glow);
}

.search-box i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 0.95rem;
}

.sort-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-label {
    font-family: var(--font-accent);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
}

.sort-select {
    padding: 8px 12px;
    border: 1px solid rgba(44, 24, 16, 0.12);
    border-radius: var(--border-radius-input);
    font-size: 0.9rem;
    background-color: #FFFFFF;
    outline: none;
    cursor: pointer;
    transition: var(--transition);
}

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

/* Product Cards Grid */
.products-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
}

.product-item {
    background-color: var(--bg-card);
    border-radius: var(--border-radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(212, 169, 106, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    transition: var(--transition);
}

.product-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.prod-img-wrap {
    position: relative;
    height: 300px;
    overflow: hidden;
    background-color: rgba(44, 24, 16, 0.02);
    cursor: pointer;
}

.prod-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.product-item:hover .prod-img {
    transform: scale(1.06);
}

.prod-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(139, 26, 74, 0.15);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.product-item:hover .prod-overlay {
    opacity: 1;
}

.prod-quick-view {
    background-color: rgba(253, 248, 242, 0.95);
    color: var(--text-dark);
    font-family: var(--font-accent);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 18px;
    border-radius: var(--border-radius-btn);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transform: translateY(15px);
    transition: var(--transition);
}

.product-item:hover .prod-quick-view {
    transform: translateY(0);
}

.prod-info {
    padding: 22px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.prod-category {
    font-family: var(--font-accent);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--secondary-color);
    margin-bottom: 6px;
}

.prod-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
}

.prod-price {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.prod-price-original {
    font-size: 0.92rem;
    text-decoration: line-through;
    color: var(--text-muted);
    font-weight: 400;
}

.prod-avail {
    font-size: 0.8rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    margin-bottom: 15px;
}

.prod-avail i {
    color: var(--secondary-color);
}

/* Empty State */
.empty-products-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    color: var(--text-light);
}

.empty-products-state i {
    font-size: 3rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.empty-products-state h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

/* --- Section: Gallery / Lookbook --- */
.gallery-filter-bar {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.gallery-tab {
    padding: 8px 20px;
    background-color: var(--bg-card);
    border: 1px solid rgba(212, 169, 106, 0.2);
    border-radius: 30px;
    font-family: var(--font-accent);
    font-size: 0.78rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-tab:hover,
.gallery-tab.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #FFFFFF;
}

.masonry-gallery {
    column-count: 3;
    column-gap: 20px;
    margin-top: 20px;
}

.gallery-card {
    break-inside: avoid;
    margin-bottom: 20px;
    position: relative;
    border-radius: var(--border-radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    cursor: pointer;
}

.gallery-card img {
    width: 100%;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gallery-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(44, 24, 16, 0.4);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.gallery-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px;
    color: #FFFFFF;
    z-index: 2;
    transform: translateY(15px);
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-card:hover::before {
    opacity: 1;
}

.gallery-card:hover .gallery-card-content {
    transform: translateY(0);
    opacity: 1;
}

.gallery-card-tag {
    font-family: var(--font-accent);
    color: var(--secondary-color);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}

.gallery-card-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
}

/* --- Section: Testimonials Carousel --- */
.testimonials-section {
    background-color: var(--accent-color);
    color: #FFFFFF;
    position: relative;
}

.testimonials-section .section-title {
    color: #FFFFFF;
}

.testimonials-section .section-title::after {
    color: var(--secondary-color);
}

.testimonials-slider-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    min-height: 280px;
    padding: 0 40px;
}

.testimonial-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: opacity 0.8s ease-in-out;
}

.testimonial-slide.active {
    opacity: 1;
    position: relative;
}

.test-stars {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 20px;
    display: flex;
    gap: 4px;
}

.test-text {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
    color: rgba(253, 248, 242, 0.9);
}

.test-author {
    font-family: var(--font-accent);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-color);
}

.test-city {
    font-size: 0.8rem;
    color: rgba(253, 248, 242, 0.6);
    margin-top: 4px;
}

.slider-btn-circle {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(253, 248, 242, 0.1);
    color: #FFFFFF;
    border: 1px solid rgba(253, 248, 242, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.slider-btn-circle:hover {
    background-color: var(--secondary-color);
    color: var(--text-dark);
    border-color: var(--secondary-color);
}

.slider-btn-circle.prev { left: 0; }
.slider-btn-circle.next { right: 0; }

/* --- Section: simulated Instagram strip --- */
.insta-strip {
    padding: 0;
    background-color: var(--bg-main);
    border-top: 1px solid rgba(212, 169, 106, 0.15);
    border-bottom: 1px solid rgba(212, 169, 106, 0.15);
}

.insta-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

.insta-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.insta-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(139, 26, 74, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    color: #FFFFFF;
    font-size: 1.4rem;
    transition: var(--transition);
    z-index: 2;
}

.insta-item:hover img {
    transform: scale(1.05);
}

.insta-item:hover .insta-overlay {
    opacity: 1;
}

/* --- Section: FAQ Accordion --- */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--bg-card);
    border: 1px solid rgba(212, 169, 106, 0.15);
    border-radius: var(--border-radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.faq-question {
    padding: 22px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    user-select: none;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-color);
    background-color: rgba(212, 169, 106, 0.02);
}

.faq-question i {
    font-size: 0.9rem;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 28px;
    color: var(--text-light);
    font-size: 0.95rem;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-item.active {
    border-color: var(--primary-color);
}

.faq-item.active .faq-question {
    color: var(--primary-color);
    background-color: rgba(139, 26, 74, 0.02);
    border-bottom: 1px solid rgba(139, 26, 74, 0.06);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 200px; /* arbitrary large value */
    padding: 22px 28px;
}

/* --- Section: Contact & Locator --- */
.contact-section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: stretch;
}

.contact-details-box {
    background-color: var(--bg-card);
    padding: 45px;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(212, 169, 106, 0.12);
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 35px 0;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(212, 169, 106, 0.1);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
    border: 1px solid rgba(212, 169, 106, 0.2);
}

.contact-detail-text h5 {
    font-family: var(--font-accent);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
    color: var(--secondary-color);
}

.contact-detail-text p {
    font-size: 0.96rem;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-detail-text a:hover {
    color: var(--primary-color);
}

.contact-socials {
    display: flex;
    gap: 12px;
}

.contact-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg-main);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(44, 24, 16, 0.08);
    font-size: 1rem;
    transition: var(--transition);
}

.contact-social-btn:hover {
    background-color: var(--primary-color);
    color: #FFFFFF;
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.contact-social-btn.insta:hover { background-color: #E1306C; border-color: #E1306C; }
.contact-social-btn.fb:hover { background-color: #1877F2; border-color: #1877F2; }
.contact-social-btn.yt:hover { background-color: #FF0000; border-color: #FF0000; }
.contact-social-btn.wa:hover { background-color: var(--whatsapp); border-color: var(--whatsapp); }

/* Contact Form Box */
.contact-form-box {
    background-color: var(--bg-card);
    padding: 45px;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(212, 169, 106, 0.12);
}

.contact-form-title {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.contact-form-desc {
    color: var(--text-light);
    font-size: 0.92rem;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-family: var(--font-accent);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(44, 24, 16, 0.12);
    border-radius: var(--border-radius-input);
    font-size: 0.95rem;
    background-color: var(--bg-main);
    transition: var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--secondary-color);
    background-color: #FFFFFF;
    box-shadow: var(--shadow-glow);
}

textarea.form-input {
    height: 120px;
    resize: none;
}

/* Map Embed Section */
.locator-section {
    border-top: 1px solid rgba(212, 169, 106, 0.15);
    background-color: #FFFFFF;
    padding: 0;
}

.map-embed-container {
    height: 480px;
    width: 100%;
    position: relative;
}

.map-embed-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* --- Footer --- */
.footer {
    background-color: #21120B; /* Match dark theme text tones */
    color: #FFFFFF;
    padding: 80px 0 30px 0;
    border-top: 3px solid var(--secondary-color);
}

.footer-top-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo-wrap {
    margin-bottom: 20px;
}

.logo-footer {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.footer-desc {
    color: rgba(253, 248, 242, 0.65);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 320px;
}

.footer-col-title {
    font-family: var(--font-accent);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--secondary-color);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 8px;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 1px;
    background-color: var(--secondary-color);
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link-item a {
    color: rgba(253, 248, 242, 0.65);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-link-item a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    font-size: 0.9rem;
    color: rgba(253, 248, 242, 0.65);
}

.footer-contact-item i {
    color: var(--secondary-color);
    margin-top: 4px;
}

.footer-bottom-strip {
    border-top: 1px solid rgba(253, 248, 242, 0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.82rem;
    color: rgba(253, 248, 242, 0.45);
}

.footer-legal-links {
    display: flex;
    gap: 20px;
}

.footer-legal-links a:hover {
    color: var(--secondary-color);
}

/* --- Floating Actions --- */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--whatsapp);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 99;
    cursor: pointer;
    transition: var(--transition);
    animation: whatsappPulse 2s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.08);
    background-color: var(--whatsapp-hover);
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* --- Modals: Product Details Modal --- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(44, 24, 16, 0.75);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-container {
    background-color: var(--bg-card);
    width: 100%;
    max-width: 900px;
    border-radius: var(--border-radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(212, 169, 106, 0.15);
    position: relative;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.modal-overlay.active .modal-container {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #FFFFFF;
    border: 1px solid rgba(44, 24, 16, 0.1);
    color: var(--text-dark);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.modal-close-btn:hover {
    background-color: var(--primary-color);
    color: #FFFFFF;
    border-color: var(--primary-color);
}

.modal-body {
    overflow-y: auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
}

.modal-gallery-column {
    background-color: rgba(44, 24, 16, 0.02);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    border-right: 1px solid rgba(212, 169, 106, 0.12);
}

.modal-main-img-wrap {
    height: 360px;
    width: 100%;
    border-radius: var(--border-radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    background-color: #FFFFFF;
}

.modal-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-thumbs-row {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 5px;
}

.modal-thumb-item {
    width: 70px;
    height: 70px;
    border-radius: var(--border-radius-card);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    flex-shrink: 0;
    background-color: #FFFFFF;
}

.modal-thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-thumb-item.active {
    border-color: var(--secondary-color);
}

.modal-details-column {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
}

.modal-category {
    font-family: var(--font-accent);
    color: var(--secondary-color);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.modal-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.modal-divider {
    height: 1px;
    background-color: rgba(212, 169, 106, 0.15);
    margin: 15px 0 20px 0;
}

.modal-desc-title {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.modal-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.modal-specs-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 25px;
}

.modal-spec-item {
    font-size: 0.9rem;
    color: var(--text-light);
}

.modal-spec-item strong {
    color: var(--text-dark);
    font-weight: 600;
}

.modal-offline-notice {
    background-color: rgba(212, 169, 106, 0.08);
    border: 1px solid rgba(212, 169, 106, 0.2);
    padding: 12px 15px;
    border-radius: var(--border-radius-card);
    font-size: 0.82rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.modal-offline-notice i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

/* --- Modals: Lookbook Lightbox --- */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(26, 15, 10, 0.96);
    z-index: 2500;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-container {
    max-width: 900px;
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-img-wrap {
    max-height: 75vh;
    overflow: hidden;
    position: relative;
    border-radius: var(--border-radius-card);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    background-color: #000000;
}

.lightbox-img {
    max-height: 75vh;
    max-width: 100%;
    object-fit: contain;
}

.lightbox-caption {
    color: #FFFFFF;
    margin-top: 20px;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1.25rem;
}

.lightbox-subcaption {
    font-family: var(--font-accent);
    color: var(--secondary-color);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 5px;
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 2rem;
    color: #FFFFFF;
    cursor: pointer;
    opacity: 0.7;
    transition: var(--transition);
}

.lightbox-close:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.2rem;
    color: #FFFFFF;
    cursor: pointer;
    opacity: 0.6;
    transition: var(--transition);
    padding: 20px;
    user-select: none;
}

.lightbox-arrow:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.lightbox-arrow.prev { left: 10px; }
.lightbox-arrow.next { right: 10px; }

/* --- Responsive Breakpoints --- */

/* Tablet & Smaller Screens */
@media (max-width: 1024px) {
    .section-title { font-size: 2.3rem; }
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .categories-grid .category-box:last-child {
        grid-column: span 2;
        height: 380px;
    }
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .products-layout {
        grid-template-columns: 1fr;
    }
    .products-sidebar {
        position: static;
        margin-bottom: 30px;
    }
    .about-intro-grid,
    .contact-section-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-top-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .masonry-gallery {
        column-count: 2;
    }
}

/* Mobile Screens */
@media (max-width: 768px) {
    .section-title { font-size: 1.9rem; }
    .hero-slider-container { height: 75vh; }
    .hero-title { font-size: 2.6rem; }
    .hero-desc { font-size: 1rem; }
    .hero-btns { flex-direction: column; width: 100%; }
    .hero-btns .btn { width: 100%; }
    .slider-arrow { display: none; }
    
    /* Navigation drawer */
    .mobile-toggle {
        display: block;
    }
    .nav-links {
        position: fixed;
        top: 76px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 76px);
        background-color: var(--bg-main);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        gap: 25px;
        transition: var(--transition-smooth);
        border-top: 1px solid rgba(212, 169, 106, 0.1);
        z-index: 999;
    }
    .nav-links.active {
        left: 0;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    .categories-grid .category-box:last-child {
        grid-column: span 1;
    }
    .why-grid {
        grid-template-columns: 1fr;
    }
    .about-mission-strip {
        padding: 40px 20px;
    }
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
    .masonry-gallery {
        column-count: 1;
    }
    .insta-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-top-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-bottom-strip {
        flex-direction: column;
        text-align: center;
    }
    .modal-body {
        grid-template-columns: 1fr;
    }
    .modal-gallery-column {
        border-right: none;
        border-bottom: 1px solid rgba(212, 169, 106, 0.12);
        padding: 20px;
    }
    .modal-main-img-wrap {
        height: 260px;
    }
    .modal-details-column {
        padding: 24px;
    }
    .lightbox-arrow {
        padding: 10px;
        font-size: 1.8rem;
    }
}

/* ==========================================
   Admin System Styling
   ========================================== */

/* Admin Table styles */
.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    text-align: left;
}

.admin-table th,
.admin-table td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--border-color);
}

.admin-table th {
    background-color: rgba(44, 24, 16, 0.05);
    font-family: var(--font-accent);
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 1px;
    font-weight: 700;
    color: var(--text-dark);
}

.admin-table tr:hover {
    background-color: rgba(212, 169, 106, 0.03);
}

.admin-table td img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

.admin-table-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-dark);
    margin: 0 0 3px 0;
}

.admin-table-sub {
    font-size: 0.78rem;
    color: var(--text-light);
    margin: 0;
}

.admin-btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    background-color: #FFFFFF;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
    margin: 0 4px;
}

.admin-btn-action.edit:hover {
    background-color: var(--secondary-color);
    color: var(--text-dark);
    border-color: var(--secondary-color);
}

.admin-btn-action.delete:hover {
    background-color: #ff4d4d;
    color: #FFFFFF;
    border-color: #ff4d4d;
}

.admin-actions-row button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    padding: 10px 16px;
}

/* Badge styles */
.admin-badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.admin-badge.badge-new {
    background-color: rgba(139, 26, 74, 0.1);
    color: var(--primary-color);
}

.admin-badge.badge-sale {
    background-color: rgba(212, 169, 106, 0.15);
    color: #a0783a;
}

.admin-badge.badge-popular {
    background-color: rgba(37, 211, 102, 0.1);
    color: #1e824c;
}

.admin-badge.badge-none {
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--text-light);
}

/* Export and buttons styling tweaks */
.btn-admin-export:hover {
    background-color: var(--primary-color) !important;
    color: #FFFFFF !important;
    border-color: var(--primary-color) !important;
}

.btn-admin-reset:hover {
    background-color: #ff4d4d !important;
    color: #FFFFFF !important;
    border-color: #ff4d4d !important;
}

.btn-admin-logout:hover {
    background-color: var(--text-dark) !important;
    color: #FFFFFF !important;
    border-color: var(--text-dark) !important;
}

/* Modal form formatting helper */
#product-form-modal label {
    margin-bottom: 5px;
}

/* Responsive adjustment for dashboard on mobile */
@media (max-width: 768px) {
    #admin-dashboard-modal .modal-container {
        padding: 15px;
    }
    
    .admin-dashboard-header {
        flex-direction: column;
        align-items: stretch;
    }
    
    .admin-actions-row {
        justify-content: flex-start;
    }
    
    .admin-actions-row button {
        flex-grow: 1;
        justify-content: center;
    }
}
