/* ==========================================================================
   J.K. Spices & Cardamom Garland Styling System
   Traditional Indian Aesthetic Meets Premium Modern UX
   ========================================================================== */

/* Design Tokens & Theme Variables */
:root {
    /* Color Palette */
    --primary-green: #1a4223;       /* Rich Cardamom Green */
    --primary-green-light: #2d5e36;
    --primary-green-dark: #0f2815;
    --accent-gold: #cfa853;         /* Premium Metallic Gold */
    --accent-gold-light: #dfc282;
    --accent-gold-dark: #9c7b31;
    --deep-red: #8c1d34;            /* Royal Crimson/Maroon */
    --deep-red-light: #ab2844;
    --deep-red-dark: #5c0f1e;
    --warm-yellow: #FAF6ED;         /* Creamy Sand Base */
    --warm-yellow-light: #FCFAF6;
    --warm-yellow-dark: #EFE4CC;
    --text-dark: #2d261e;           /* Elegant Charcoal with Warm Undertone */
    --text-light: #ffffff;
    --text-muted: #6e6457;

    /* Shadows & Glassmorphism */
    --shadow-sm: 0 2px 4px rgba(26, 66, 35, 0.08);
    --shadow-md: 0 8px 16px rgba(26, 66, 35, 0.12);
    --shadow-lg: 0 16px 32px rgba(26, 66, 35, 0.18);
    --glass-bg: rgba(250, 246, 237, 0.85);
    --glass-border: rgba(207, 168, 83, 0.2);

    /* Animation Timings */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-slow: 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    height: 100%;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--warm-yellow);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding-bottom: 70px; /* Space for sticky mobile bottom bar */
}

@media (min-width: 768px) {
    body {
        padding-bottom: 0; /* No bottom bar space on desktop */
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1.2;
}

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

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

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

/* Traditional Decorative Borders */
.top-accent-bar {
    height: 6px;
    background: linear-gradient(90deg, var(--deep-red) 0%, var(--accent-gold) 50%, var(--primary-green) 100%);
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1001;
}

/* Traditional Golden Floral Divider Symbol */
.floral-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem auto;
    width: 100%;
    max-width: 300px;
    color: var(--accent-gold);
}

.floral-divider::before,
.floral-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: currentColor;
    opacity: 0.6;
}

.floral-divider-symbol {
    margin: 0 10px;
    font-size: 1.2rem;
    animation: rotateSlow 20s linear infinite;
}

@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* 2. Main Layout Containers */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
    border: 2px solid transparent;
    text-align: center;
    gap: 8px;
}

.btn-primary {
    background-color: var(--primary-green);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: var(--primary-green-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-accent {
    background-color: var(--accent-gold);
    color: var(--primary-green-dark);
}

.btn-accent:hover {
    background-color: var(--accent-gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-gold {
    background-color: transparent;
    border-color: var(--accent-gold);
    color: var(--accent-gold-dark);
}

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

.btn-red {
    background-color: var(--deep-red);
    color: var(--text-light);
}

.btn-red:hover {
    background-color: var(--deep-red-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* 3. Header & Navigation */
.main-header {
    background-color: var(--glass-bg);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 6px;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 44px;
    height: 44px;
    color: var(--accent-gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 1.5px solid var(--accent-gold);
}

.gold-svg {
    width: 100%;
    height: 100%;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1.1;
    letter-spacing: 0.5px;
}

.brand-subtitle {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-gold-dark);
    font-weight: 600;
}

.desktop-nav {
    display: none;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-green-light);
}

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

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

/* Dropdown styling */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--warm-yellow-light);
    border: 1px solid var(--accent-gold-light);
    border-radius: 4px;
    min-width: 220px;
    box-shadow: var(--shadow-md);
    padding: 0.5rem 0;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    display: block;
    animation: fadeIn 0.2s ease;
}

.dropdown-menu a {
    display: block;
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 500;
}

.dropdown-menu a:hover {
    background-color: var(--warm-yellow-dark);
    color: var(--primary-green);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Cart Trigger Badge */
.cart-trigger-btn {
    background: none;
    border: none;
    color: var(--primary-green);
    cursor: pointer;
    position: relative;
    padding: 8px;
    border-radius: 50%;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-trigger-btn:hover {
    background-color: var(--warm-yellow-dark);
    color: var(--accent-gold-dark);
}

.icon-svg {
    width: 24px;
    height: 24px;
}

.cart-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background-color: var(--deep-red);
    color: var(--text-light);
    font-size: 0.7rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--warm-yellow);
}

/* Mobile Trigger Button */
.mobile-menu-trigger {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    padding: 0;
}

.bar {
    width: 100%;
    height: 2px;
    background-color: var(--primary-green);
    transition: var(--transition-fast);
}

.mobile-menu-active .bar-1 {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-active .bar-2 {
    opacity: 0;
}

.mobile-menu-active .bar-3 {
    transform: translateY(-8px) rotate(-45deg);
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }
    .mobile-menu-trigger {
        display: none;
    }
}

/* 4. Mobile Drawer Navigation */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 40, 21, 0.4);
    z-index: 1010;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-normal);
}

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

.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100%;
    background-color: var(--warm-yellow-light);
    z-index: 1020;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    transition: var(--transition-normal);
    border-left: 2px solid var(--accent-gold);
}

.mobile-nav-drawer.active {
    right: 0;
}

.drawer-header {
    padding: 1.25rem;
    border-bottom: 1px solid var(--warm-yellow-dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.drawer-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary-green);
    font-size: 1.15rem;
}

.drawer-close-btn {
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-muted);
}

.mobile-links {
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
    overflow-y: auto;
}

.mobile-link {
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    display: block;
}

.mobile-link:hover, .mobile-link.active {
    background-color: var(--warm-yellow-dark);
    color: var(--primary-green);
    padding-left: 1.75rem;
}

.mobile-group-label {
    padding: 0.8rem 1.5rem 0.2rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-gold-dark);
    font-weight: 700;
}

.drawer-divider {
    border: none;
    border-bottom: 1px solid var(--warm-yellow-dark);
    margin: 0.5rem 1.5rem;
}

.highlight-link {
    color: var(--deep-red);
}

/* 5. Hero Sections */
.hero {
    position: relative;
    padding: 4rem 1.25rem;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-green-dark) 0%, var(--primary-green) 100%);
    color: var(--text-light);
    border-bottom: 4px solid var(--accent-gold);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--accent-gold) 0.5px, transparent 0.5px);
    background-size: 24px 24px;
    opacity: 0.08;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    margin: 0 auto;
}

.hero-title {
    font-size: 2.2rem;
    color: var(--accent-gold);
    margin-bottom: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    line-height: 1.15;
}

@media (min-width: 768px) {
    .hero {
        padding: 6rem 2rem;
    }
    .hero-title {
        font-size: 3.5rem;
    }
}

.hero-tagline {
    font-size: 1.1rem;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
    color: var(--warm-yellow);
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

/* Category Intro Banner */
.category-hero {
    background: linear-gradient(135deg, #1b3d24 0%, #112616 100%);
    color: var(--text-light);
    padding: 3rem 1.25rem;
    text-align: center;
    border-bottom: 2px solid var(--accent-gold);
    margin-bottom: 2.5rem;
}

.category-hero h1 {
    color: var(--accent-gold);
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.category-hero p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--warm-yellow-dark);
}

/* 6. Featured Categories Grid (Home) */
.section-title-wrapper {
    text-align: center;
    margin-bottom: 2.5rem;
    padding: 0 1rem;
}

.section-subtitle {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-gold-dark);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

@media (min-width: 480px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.category-card {
    background-color: var(--warm-yellow-light);
    border: 1.5px solid rgba(207, 168, 83, 0.7); /* Golden border line */
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: 0 8px 20px rgba(207, 168, 83, 0.25);
}

.category-img-container {
    height: 200px;
    position: relative;
    background-color: #ffffff; /* White background for seamless fit */
    overflow: hidden;
}

.category-img-container img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Fit the entire image inside the frame without cropping */
    transition: var(--transition-slow);
    padding: 10px; /* Elegant border offset padding */
}

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

.category-info {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

.category-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.category-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

/* About and Value Props (Home) */
.about-section {
    background-color: var(--warm-yellow-dark);
    padding: 4rem 1.25rem;
    border-top: 1px solid var(--accent-gold-light);
    border-bottom: 1px solid var(--accent-gold-light);
    margin-bottom: 4rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.about-image {
    border: 4px double var(--accent-gold);
    padding: 10px;
    border-radius: 4px;
    background-color: var(--warm-yellow-light);
}

.why-choose-us {
    margin-bottom: 4rem;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.why-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background-color: var(--warm-yellow-light);
    border-radius: 6px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--glass-border);
}

.why-icon {
    font-size: 2.5rem;
    color: var(--accent-gold-dark);
    margin-bottom: 1rem;
    display: inline-block;
}

.why-item h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.why-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Home CTA & Teasers */
.cta-banner {
    background: linear-gradient(rgba(15, 40, 21, 0.9), rgba(15, 40, 21, 0.9)), url('assets/images/hero_garland.png') center/cover no-repeat;
    color: var(--text-light);
    padding: 4rem 1.25rem;
    text-align: center;
    border-radius: 6px;
    border: 2px solid var(--accent-gold);
    margin-bottom: 4rem;
}

.cta-banner h2 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.cta-banner p {
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 1rem;
}

/* 7. Product Catalog Elements */
.products-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 5rem;
}

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

@media (min-width: 992px) {
    .products-layout {
        grid-template-columns: repeat(3, 1fr);
    }
}

.product-card {
    background-color: var(--warm-yellow-light);
    border: 1.5px solid rgba(207, 168, 83, 0.7); /* Golden border line */
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 8px 20px rgba(207, 168, 83, 0.25);
    transform: translateY(-3px);
}

.product-img-wrapper {
    height: 260px;
    overflow: hidden;
    position: relative;
    background-color: #ffffff; /* White background for seamless fit */
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Fit the entire image inside the frame without cropping */
    transition: var(--transition-slow);
    padding: 12px; /* Elegant border offset padding */
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.04); /* Subtle scale effect */
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--deep-red);
    color: var(--text-light);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.35rem 0.75rem;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-title {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
}

.product-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

/* Custom Add to Cart Selector Form */
.product-options-form {
    margin-top: auto;
    border-top: 1px solid var(--warm-yellow-dark);
    padding-top: 1.25rem;
}

.options-row {
    margin-bottom: 1rem;
}

.options-row label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 0.35rem;
    text-transform: uppercase;
}

.options-row select, .options-row input {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--accent-gold-light);
    border-radius: 4px;
    background-color: var(--warm-yellow-light);
    font-size: 0.85rem;
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.options-row select:focus, .options-row input:focus {
    border-color: var(--accent-gold-dark);
    box-shadow: 0 0 4px rgba(207, 168, 83, 0.2);
}

.custom-length-input-container {
    margin-top: 0.5rem;
}

/* 8. Custom Garland Builder View */
.builder-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 5rem;
}

@media (min-width: 992px) {
    .builder-layout {
        grid-template-columns: 1.6fr 1fr;
    }
}

.builder-panel {
    background-color: var(--warm-yellow-light);
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
    .builder-panel {
        padding: 2.5rem;
    }
}

.builder-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    color: var(--primary-green);
    border-bottom: 1px solid var(--accent-gold-light);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.builder-step-num {
    background-color: var(--accent-gold);
    color: var(--primary-green-dark);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
}

/* Material Chip Selectors */
.materials-chip-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.material-chip {
    position: relative;
    cursor: pointer;
}

.material-chip input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.chip-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--warm-yellow);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition-fast);
    user-select: none;
}

.material-chip input[type="checkbox"]:checked + .chip-label {
    background-color: var(--primary-green);
    color: var(--text-light);
    border-color: var(--primary-green);
    box-shadow: var(--shadow-sm);
}

.material-chip:hover .chip-label {
    border-color: var(--accent-gold);
}

/* Option Cards (Grid Selectors for Themes/Presets) */
.options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 1.5rem;
}

@media (min-width: 480px) {
    .options-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.option-card-label {
    position: relative;
    cursor: pointer;
}

.option-card-label input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.option-card-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem 0.75rem;
    background-color: var(--warm-yellow);
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition-fast);
    height: 100%;
}

.option-card-icon {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.option-card-label input[type="radio"]:checked + .option-card-box {
    background-color: var(--primary-green);
    color: var(--text-light);
    border-color: var(--primary-green);
    box-shadow: var(--shadow-sm);
}

.option-card-label:hover .option-card-box {
    border-color: var(--accent-gold);
}

/* Preset Cards Specifics */
.preset-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 1.5rem;
}

@media (min-width: 576px) {
    .preset-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.preset-card-label {
    position: relative;
    cursor: pointer;
}

.preset-card-label input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.preset-card-box {
    padding: 1rem;
    background-color: var(--warm-yellow);
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

.preset-card-box h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--primary-green);
}

.preset-card-box p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.preset-card-label input[type="radio"]:checked + .preset-card-box {
    border-color: var(--accent-gold-dark);
    background-color: var(--warm-yellow-dark);
}

.preset-card-label input[type="radio"]:checked + .preset-card-box h4 {
    color: var(--deep-red-dark);
}

/* Builder Preview Sticky Panel */
.builder-preview-panel {
    background-color: var(--primary-green-dark);
    color: var(--text-light);
    border-radius: 6px;
    border: 2px solid var(--accent-gold);
    padding: 1.5rem;
    height: fit-content;
    position: sticky;
    top: 90px;
    box-shadow: var(--shadow-md);
}

.preview-heading {
    color: var(--accent-gold);
    font-size: 1.25rem;
    border-bottom: 1px solid rgba(207, 168, 83, 0.3);
    padding-bottom: 0.5rem;
    margin-bottom: 1.25rem;
    text-align: center;
}

.preview-item-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
}

.preview-item-row span:first-child {
    font-weight: 500;
    color: var(--accent-gold-light);
}

.preview-item-row span:last-child {
    text-align: right;
    font-weight: 600;
}

.preview-description {
    font-size: 0.8rem;
    font-style: italic;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 0.75rem;
    border-radius: 4px;
    margin-top: 1rem;
    border-left: 2px solid var(--accent-gold);
}

/* 9. Lightbox & Gallery Layout */
.gallery-filter-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 2.5rem;
}

.filter-btn {
    background-color: var(--warm-yellow-light);
    border: 1px solid var(--glass-border);
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--primary-green);
    color: var(--text-light);
    border-color: var(--primary-green);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-bottom: 5rem;
}

.gallery-item {
    background-color: var(--warm-yellow-light);
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: var(--transition-normal);
}

.gallery-item:hover {
    transform: scale(1.02);
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-md);
}

.gallery-img-container {
    height: 300px;
    overflow: hidden;
    position: relative;
    background-color: var(--primary-green-dark);
}

.gallery-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.gallery-item-caption {
    padding: 1rem;
    text-align: center;
}

.gallery-item-caption h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.gallery-item-caption p {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Lightbox Modal */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 40, 21, 0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

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

.lightbox-content {
    max-width: 90%;
    max-height: 80%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 70vh;
    border: 3px solid var(--accent-gold);
    box-shadow: var(--shadow-lg);
    border-radius: 4px;
}

.lightbox-caption {
    color: var(--text-light);
    margin-top: 1rem;
    text-align: center;
}

.lightbox-caption h4 {
    color: var(--accent-gold);
    font-size: 1.25rem;
}

.lightbox-caption p {
    font-size: 0.85rem;
    color: var(--warm-yellow-dark);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 2rem;
    cursor: pointer;
}

/* 10. Contact Page Elements */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 5rem;
}

@media (min-width: 768px) {
    .contact-layout {
        grid-template-columns: 1.2fr 1fr;
    }
}

.contact-info-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 480px) {
    .contact-info-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-card {
    background-color: var(--warm-yellow-light);
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.contact-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-3px);
}

.contact-card-icon {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 0.75rem;
}

.contact-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.contact-card a {
    color: var(--deep-red);
    font-weight: 600;
}

.contact-card a:hover {
    color: var(--deep-red-light);
}

.full-width-card {
    grid-column: 1 / -1;
}

.contact-form-panel {
    background-color: var(--warm-yellow-light);
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.contact-form-panel h3 {
    margin-bottom: 1.25rem;
    font-size: 1.35rem;
    border-bottom: 1px solid var(--accent-gold-light);
    padding-bottom: 0.5rem;
}

/* Forms general */
.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
    color: var(--primary-green);
    text-transform: uppercase;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 0.65rem 0.85rem;
    border: 1px solid var(--accent-gold-light);
    border-radius: 4px;
    background-color: var(--warm-yellow);
    font-size: 0.9rem;
    color: var(--text-dark);
}

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

.registration-details-section {
    grid-column: 1 / -1;
    margin-top: 1rem;
}

.registration-panel {
    background-color: var(--primary-green-dark);
    color: var(--text-light);
    border-radius: 6px;
    padding: 2rem;
    border: 2px solid var(--accent-gold);
}

.registration-panel h3 {
    color: var(--accent-gold);
    margin-bottom: 1.25rem;
    font-size: 1.35rem;
    text-align: center;
}

.reg-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 576px) {
    .reg-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.reg-item {
    text-align: center;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
    padding-bottom: 0.75rem;
}

@media (min-width: 576px) {
    .reg-item {
        border-bottom: none;
        border-right: 1px dashed rgba(255, 255, 255, 0.2);
        padding-bottom: 0;
        padding-right: 1rem;
    }
    .reg-item:last-child {
        border-right: none;
        padding-right: 0;
    }
}

.reg-item-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-gold-light);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.reg-item-val {
    font-weight: 700;
    font-family: monospace;
    font-size: 0.95rem;
}

/* 11. Shopping Cart Drawer elements */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 40, 21, 0.4);
    z-index: 1100;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-normal);
}

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

.cart-drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 100%;
    max-width: 420px;
    height: 100%;
    background-color: var(--warm-yellow-light);
    z-index: 1200;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    transition: var(--transition-normal);
    border-left: 3px solid var(--accent-gold);
}

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

.cart-header {
    padding: 1.25rem;
    border-bottom: 1px solid var(--warm-yellow-dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-header-title {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-green);
}

.cart-header-title h2 {
    font-size: 1.25rem;
}

.cart-close-btn {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-muted);
}

.cart-content {
    flex: 1;
    overflow-y: auto;
    padding: 1.25rem;
}

/* Empty State */
.cart-empty-state {
    text-align: center;
    padding: 4rem 1rem;
}

.empty-icon {
    font-size: 4rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.empty-sub {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

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

/* Cart Item Card */
.cart-item {
    display: flex;
    gap: 12px;
    padding: 1rem;
    background-color: var(--warm-yellow);
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    position: relative;
}

.cart-item-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid var(--accent-gold-light);
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 0.25rem;
}

.cart-item-spec {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.cart-item-desc-tag {
    background-color: rgba(207, 168, 83, 0.15);
    color: var(--accent-gold-dark);
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 0.7rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qty-btn {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid var(--accent-gold);
    background-color: var(--warm-yellow-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.85rem;
}

.qty-val {
    font-size: 0.85rem;
    font-weight: 700;
}

.cart-item-remove {
    position: absolute;
    top: 8px;
    right: 8px;
    background: none;
    border: none;
    color: var(--deep-red);
    cursor: pointer;
    font-size: 1.25rem;
    line-height: 1;
}

.cart-item-remove:hover {
    color: var(--deep-red-light);
}

.cart-footer {
    padding: 1.25rem;
    border-top: 1px solid var(--warm-yellow-dark);
    background-color: var(--warm-yellow-light);
}

.cart-user-info {
    border-bottom: 1px solid var(--warm-yellow-dark);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
}

.cart-user-info h3 {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.cart-user-info .form-group {
    margin-bottom: 0.75rem;
}

.cart-user-info input {
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
}

.cart-summary {
    margin-bottom: 1.25rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    font-weight: 700;
}

.info-row {
    font-weight: 400;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    align-items: flex-start;
    gap: 6px;
}

.info-icon {
    width: 14px;
    height: 14px;
    color: var(--accent-gold-dark);
    flex-shrink: 0;
    margin-top: 2px;
}

.btn-whatsapp-checkout {
    display: flex;
    width: 100%;
    padding: 0.85rem;
    background-color: #25D366; /* Official WhatsApp Green */
    color: var(--text-light);
    border: none;
    border-radius: 4px;
    font-weight: 700;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
    transition: var(--transition-normal);
}

.btn-whatsapp-checkout:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-secondary-checkout {
    display: flex;
    width: 100%;
    padding: 0.85rem;
    background-color: transparent;
    color: #128C7E;
    border: 2px solid #25D366;
    border-radius: 4px;
    font-weight: 700;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition-normal);
}

.btn-whatsapp-secondary-checkout:hover {
    background-color: #25D366;
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

.btn-icon {
    width: 20px;
    height: 20px;
}

/* 12. Floating Elements */
.floating-whatsapp-btn {
    position: fixed;
    bottom: 80px; /* Space above mobile bottom bar */
    right: 20px;
    background-color: #25D366;
    color: var(--text-light);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    cursor: pointer;
    transition: var(--transition-normal);
}

.floating-whatsapp-btn:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

.whatsapp-tooltip {
    position: absolute;
    right: 68px;
    background-color: var(--primary-green-dark);
    color: var(--text-light);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--accent-gold);
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition-normal);
    pointer-events: none;
}

.floating-whatsapp-btn:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

.floating-whatsapp-btn svg {
    width: 32px;
    height: 32px;
}

/* Pulse animation for floating button */
.floating-whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25D366;
    opacity: 0.4;
    z-index: -1;
    animation: pulseWhatsapp 2s infinite;
}

@keyframes pulseWhatsapp {
    0% { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* Sticky Bottom Navigation (Mobile-first view) */
.mobile-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: var(--glass-bg);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--glass-border);
    display: flex;
    z-index: 998;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.bottom-bar-link {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.65rem;
    font-weight: 600;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
    transition: var(--transition-fast);
}

.bottom-bar-link svg {
    width: 20px;
    height: 20px;
}

.bottom-bar-link:hover, .bottom-bar-link.active {
    color: var(--primary-green);
}

.bottom-cart-badge-container {
    position: relative;
    display: inline-block;
}

.bottom-cart-badge {
    position: absolute;
    top: -4px;
    right: -8px;
    background-color: var(--deep-red);
    color: var(--text-light);
    font-size: 0.6rem;
    font-weight: 700;
    min-width: 15px;
    height: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--warm-yellow);
}

@media (min-width: 768px) {
    .floating-whatsapp-btn {
        bottom: 30px; /* Position normally on desktop */
    }
    .mobile-bottom-bar {
        display: none; /* Hide bottom bar on desktop */
    }
}

/* Helper utilities */
.hidden {
    display: none !important;
}

.page-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8rem 0;
    color: var(--text-muted);
}

.loader-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--warm-yellow-dark);
    border-top: 3px solid var(--primary-green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1.5rem;
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* General Section Spacing */
.page-section {
    padding: 3rem 0;
}

.gold-text {
    color: var(--accent-gold-dark) !important;
    font-weight: 600;
}

/* 13. Footer Styling & Social Icon Sizing */
.main-footer {
    background-color: var(--primary-green-dark);
    color: var(--text-light);
    padding: 4rem 0 2rem 0;
    border-top: 3px solid var(--accent-gold);
    margin-top: auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

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

.footer-column h4 {
    color: var(--accent-gold);
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent-gold);
}

.footer-desc {
    font-size: 0.85rem;
    color: var(--warm-yellow-dark);
    opacity: 0.85;
    margin: 1rem 0;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    font-size: 0.85rem;
    color: var(--warm-yellow-dark);
    opacity: 0.85;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-gold-light);
    opacity: 1;
    padding-left: 5px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo h3 {
    color: var(--accent-gold);
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.1;
}

.footer-logo p {
    font-size: 0.75rem;
    color: var(--warm-yellow-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-logo-icon {
    width: 48px;
    height: 48px;
    color: var(--accent-gold);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 1.5px solid var(--accent-gold);
}

.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 1.25rem;
}

.social-icon {
    width: 24px;
    height: 24px;
    color: var(--warm-yellow-dark);
    transition: var(--transition-fast);
}

.social-icon:hover {
    color: var(--accent-gold);
    transform: translateY(-2px);
}

.business-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 1rem;
}

.badge {
    background-color: rgba(207, 168, 83, 0.15);
    color: var(--accent-gold-light);
    border: 1px solid rgba(207, 168, 83, 0.3);
    padding: 0.25rem 0.6rem;
    border-radius: 3px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.75rem;
    color: var(--warm-yellow-dark);
    opacity: 0.7;
}

/* ==========================================================================
   9. Product Detail Page Views & Image Sliders
   ========================================================================== */

.product-breadcrumbs {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.product-breadcrumbs a {
    color: var(--primary-green);
    transition: var(--transition-fast);
}

.product-breadcrumbs a:hover {
    color: var(--accent-gold-dark);
    text-decoration: underline;
}

.product-breadcrumbs span {
    color: var(--text-muted);
}

.product-detail-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 4rem;
}

@media (min-width: 992px) {
    .product-detail-layout {
        grid-template-columns: 1.2fr 1fr;
    }
}

/* Image Slider Carousel */
.image-slider-container {
    position: relative;
    background-color: #ffffff;
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    aspect-ratio: 4 / 5;
    width: 100%;
}

@media (min-width: 992px) {
    .image-slider-container {
        height: 520px;
        aspect-ratio: auto;
    }
}

.slider-viewport {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform var(--transition-slow);
}

.slider-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    padding: 15px;
}

.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(26, 66, 35, 0.7);
    border: 1px solid var(--accent-gold-light);
    color: var(--accent-gold);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
    z-index: 10;
    user-select: none;
}

.slider-arrow:hover {
    background-color: var(--primary-green);
    color: var(--text-light);
    transform: translateY(-50%) scale(1.05);
}

.arrow-left {
    left: 15px;
}

.arrow-right {
    right: 15px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: var(--transition-fast);
}

.slider-dot.active {
    background-color: var(--accent-gold);
    transform: scale(1.2);
    box-shadow: 0 0 6px var(--accent-gold);
}

/* Product Info Section */
.product-info-section {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.info-header {
    margin-bottom: 1.5rem;
}

.detail-badge {
    display: inline-block;
    background-color: var(--deep-red);
    color: var(--text-light);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.35rem 0.75rem;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.detail-title {
    font-size: 2rem;
    margin-bottom: 0.25rem;
    line-height: 1.25;
}

.detail-category-tag {
    font-size: 0.8rem;
    color: var(--accent-gold-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.detail-divider {
    height: 1px;
    background: linear-gradient(90deg, var(--accent-gold-light) 0%, transparent 100%);
    margin-bottom: 1.5rem;
}

.detail-description-box {
    background-color: var(--warm-yellow-light);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.detail-description-box h3 {
    font-size: 0.95rem;
    text-transform: uppercase;
    color: var(--primary-green);
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.detail-description-box p {
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.detail-customization-box {
    background-color: rgba(140, 29, 52, 0.03);
    border: 1px dashed var(--deep-red-light);
    border-radius: 4px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.detail-customization-box h3 {
    font-size: 0.95rem;
    text-transform: uppercase;
    color: var(--deep-red);
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.detail-customization-box p {
    font-size: 0.88rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.detail-options-form {
    border-top: 1px solid var(--warm-yellow-dark);
    padding-top: 1.5rem;
}

/* Quantity Control Spinner */
.detail-qty-control {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--accent-gold-light);
    border-radius: 4px;
    overflow: hidden;
    background-color: var(--warm-yellow-light);
    height: 38px;
    margin-bottom: 1rem;
}

.detail-qty-control .qty-btn {
    width: 38px;
    height: 100%;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.detail-qty-control .qty-btn:hover {
    background-color: var(--warm-yellow-dark);
    color: var(--primary-green);
}

.detail-qty-control input[type="number"] {
    width: 50px;
    height: 100%;
    border: none;
    background: none;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
    appearance: textfield;
}

.detail-qty-control input[type="number"]::-webkit-outer-spin-button,
.detail-qty-control input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Action Buttons */
.detail-actions-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 2rem;
}

@media (min-width: 480px) {
    .detail-actions-row {
        grid-template-columns: repeat(2, 1fr);
    }
    .detail-actions-row .add-to-cart-btn {
        grid-column: span 2;
    }
}

.detail-actions-row .btn {
    padding: 0.9rem 1rem;
    font-size: 0.9rem;
    border-radius: 4px;
}

.detail-actions-row .add-to-cart-btn {
    border-color: var(--primary-green);
    color: var(--primary-green);
}

.detail-actions-row .add-to-cart-btn:hover {
    background-color: var(--primary-green);
    color: var(--text-light);
}

.detail-actions-row .whatsapp-inquiry-btn {
    box-shadow: var(--shadow-sm);
}

/* Trust Highlights */
.detail-trust-highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    border-top: 1px dashed var(--accent-gold-light);
    margin-top: 3rem;
    padding-top: 2rem;
}

@media (min-width: 768px) {
    .detail-trust-highlights {
        grid-template-columns: repeat(3, 1fr);
    }
}

.highlight-item {
    background-color: var(--warm-yellow-light);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    padding: 1.25rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.highlight-icon {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.highlight-item h4 {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.highlight-item p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Catalog Card adjustments */
.product-img-link-wrapper {
    display: block;
    width: 100%;
}

.product-card-actions {
    margin-top: 1rem;
    border-top: 1px solid var(--warm-yellow-dark);
    padding-top: 1rem;
}

.product-title a {
    color: var(--primary-green);
    transition: var(--transition-fast);
}

.product-title a:hover {
    color: var(--primary-green-light);
}

/* ==========================================================================
   JK Spices Premium Scroll Story Section
   ========================================================================== */

.scroll-story-pin {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--primary-green-dark) 0%, #15381e 50%, #0c1f10 100%);
    color: var(--text-light);
}

.scroll-story-track {
    display: flex;
    height: 100%;
    width: 700vw; /* 7 stages */
    will-change: transform;
}

.story-slide {
    width: 100vw;
    height: 100%;
    flex-shrink: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.story-slide-inner {
    display: flex;
    width: 100%;
    height: 100%;
    max-width: 1300px;
    margin: 0 auto;
    align-items: center;
    position: relative;
    z-index: 2;
}

.story-text-col {
    width: 45%;
    padding: 0 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.story-number-bg {
    font-family: 'Playfair Display', serif;
    font-size: 15rem;
    font-weight: 800;
    color: rgba(207, 168, 83, 0.04);
    position: absolute;
    top: 50%;
    left: 2rem;
    transform: translateY(-50%);
    z-index: 1;
    pointer-events: none;
    line-height: 1;
}

.story-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent-gold);
    margin-bottom: 0.75rem;
}

.story-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--text-light);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    position: relative;
}

.story-content {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #f1ebd9;
    max-width: 480px;
}

.story-visual-col {
    width: 55%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    position: relative;
}

.story-visual-frame {
    position: relative;
    width: 100%;
    max-width: 550px;
    aspect-ratio: 16/9;
    border-radius: 12px;
    padding: 12px;
    background: linear-gradient(135deg, rgba(207, 168, 83, 0.2) 0%, rgba(207, 168, 83, 0.05) 100%);
    border: 1px solid rgba(207, 168, 83, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.story-visual-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid var(--accent-gold);
    margin: 4px;
    border-radius: 8px;
    pointer-events: none;
    opacity: 0.5;
}

.story-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Hover/active zoom */
.story-slide.active .story-image {
    transform: scale(1.06);
}

/* Step 1 - Animated Sun Visuals (Ghibli Style) */
.sun-animation-container {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #0e2916 0%, #153b20 40%, #2f6b39 75%, #a69151 100%);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.ghibli-sky-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(251, 213, 97, 0.25) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.ghibli-clouds {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.6;
}

.ghibli-cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    filter: blur(12px);
    will-change: transform;
}

.ghibli-cloud::before, .ghibli-cloud::after {
    content: '';
    position: absolute;
    background: inherit;
    border-radius: 50%;
}

.cloud-1 {
    width: 180px;
    height: 60px;
    top: 25%;
    left: -100px;
    animation: driftCloud 35s linear infinite;
}

.cloud-1::before {
    width: 80px;
    height: 80px;
    top: -40px;
    left: 30px;
}

.cloud-1::after {
    width: 100px;
    height: 100px;
    top: -50px;
    left: 70px;
}

.cloud-2 {
    width: 140px;
    height: 45px;
    top: 60%;
    left: -150px;
    animation: driftCloud 25s linear infinite;
    animation-delay: -10s;
    opacity: 0.8;
}

.cloud-2::before {
    width: 60px;
    height: 60px;
    top: -30px;
    left: 20px;
}

.cloud-2::after {
    width: 70px;
    height: 70px;
    top: -35px;
    left: 50px;
}

@keyframes driftCloud {
    0% { transform: translateX(-150px); }
    100% { transform: translateX(calc(100% + 300px)); }
}

.sun-glow {
    position: absolute;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle at center, rgba(251, 213, 97, 0.5) 0%, rgba(207, 168, 83, 0.15) 45%, transparent 70%);
    border-radius: 50%;
    animation: sunPulse 6s ease-in-out infinite alternate;
    z-index: 1;
}

.sun-core {
    width: 90px;
    height: 90px;
    background: radial-gradient(circle at center, #ffffff 10%, #fff0b8 40%, #ffd043 80%, var(--accent-gold) 100%);
    border-radius: 50%;
    box-shadow: 0 0 50px var(--accent-gold), 0 0 100px rgba(251, 213, 97, 0.7);
    z-index: 3;
    animation: sunPulse 6s ease-in-out infinite alternate;
}

.sun-rays {
    position: absolute;
    width: 360px;
    height: 360px;
    animation: sunRotate 60s linear infinite;
    opacity: 0.5;
    z-index: 2;
}

.sun-ray {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 180px;
    background: linear-gradient(to top, rgba(251, 213, 97, 0.7) 0%, rgba(251, 213, 97, 0.2) 50%, transparent 100%);
    transform-origin: bottom center;
    margin-top: -180px;
    margin-left: -2px;
    filter: blur(1px);
}

/* Generate rays around sun */
.sun-ray:nth-child(1) { transform: rotate(0deg); }
.sun-ray:nth-child(2) { transform: rotate(30deg); }
.sun-ray:nth-child(3) { transform: rotate(60deg); }
.sun-ray:nth-child(4) { transform: rotate(90deg); }
.sun-ray:nth-child(5) { transform: rotate(120deg); }
.sun-ray:nth-child(6) { transform: rotate(150deg); }
.sun-ray:nth-child(7) { transform: rotate(180deg); }
.sun-ray:nth-child(8) { transform: rotate(210deg); }
.sun-ray:nth-child(9) { transform: rotate(240deg); }
.sun-ray:nth-child(10) { transform: rotate(270deg); }
.sun-ray:nth-child(11) { transform: rotate(300deg); }
.sun-ray:nth-child(12) { transform: rotate(330deg); }

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

@keyframes sunPulse {
    0% { transform: scale(0.9); opacity: 0.4; }
    100% { transform: scale(1.15); opacity: 0.75; }
}

/* Global progress / timeline overlay */
.story-timeline-overlay {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 10;
}

.story-progress-container {
    display: flex;
    align-items: center;
    flex-grow: 1;
    margin-right: 3rem;
    position: relative;
}

.story-progress-line-bg {
    height: 2px;
    background-color: rgba(255, 255, 255, 0.1);
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.story-progress-line-fill {
    height: 2px;
    background-color: var(--accent-gold);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0%;
    z-index: 2;
    transition: width 0.1s linear;
}

.story-timeline-nodes {
    display: flex;
    justify-content: space-between;
    width: 100%;
    position: relative;
    z-index: 3;
}

.story-node {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #1e3a24;
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.story-node::after {
    content: attr(data-step);
    position: absolute;
    bottom: -1.8rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    white-space: nowrap;
    font-family: 'Montserrat', sans-serif;
    transition: color 0.3s ease;
}

.story-node.active {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
    box-shadow: 0 0 10px var(--accent-gold), 0 0 20px var(--accent-gold);
    transform: scale(1.3);
}

.story-node.active::after {
    color: var(--accent-gold-light);
    font-weight: 700;
}

.story-node.completed {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
}

.story-node.completed::after {
    color: rgba(255, 255, 255, 0.8);
}

.story-number-display {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent-gold-light);
    min-width: 100px;
    text-align: right;
    letter-spacing: 1px;
}

/* Decorative scroll-down hint */
.story-scroll-hint {
    position: absolute;
    bottom: 2rem;
    right: 4rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 10;
    pointer-events: none;
}

.story-scroll-hint-arrow {
    width: 30px;
    height: 1px;
    background-color: currentColor;
    position: relative;
}

.story-scroll-hint-arrow::after {
    content: '';
    position: absolute;
    right: 0;
    top: -3px;
    width: 7px;
    height: 7px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: rotate(-45deg);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .story-slide-inner {
        flex-direction: column;
        justify-content: center;
        padding-top: 4rem;
        padding-bottom: 6rem;
    }
    
    .story-text-col {
        width: 100%;
        padding: 0 2rem;
        text-align: center;
        align-items: center;
        order: 2;
        margin-top: 1.5rem;
    }
    
    .story-visual-col {
        width: 100%;
        height: auto;
        padding: 0 2rem;
        order: 1;
    }
    
    .story-visual-frame {
        max-width: 480px;
    }
    
    .story-title {
        font-size: 2.25rem;
        margin-bottom: 0.75rem;
    }
    
    .story-content {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .story-number-bg {
        font-size: 10rem;
        left: 50%;
        transform: translate(-50%, -50%);
        top: 30%;
    }
}

@media (max-width: 768px) {
    .story-timeline-overlay {
        padding: 0 2rem;
        bottom: 1.5rem;
    }
    
    .story-node::after {
        display: none; /* Hide step labels on very small screens */
    }
    
    .story-progress-container {
        margin-right: 1.5rem;
    }
    
    .story-scroll-hint {
        display: none;
    }
}

@media (max-height: 600px) {
    .story-slide-inner {
        padding-top: 2rem;
        padding-bottom: 4rem;
    }
    .story-visual-frame {
        max-width: 320px;
    }
    .story-title {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }
    .story-content {
        font-size: 0.85rem;
    }
    .story-number-bg {
        font-size: 6rem;
    }
}

/* Layer Sequence and Length Constraints Styles */
.option-card-label.disabled-option {
    opacity: 0.45;
    pointer-events: none;
    cursor: not-allowed;
}

.layers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.4);
    border: 1px dashed var(--accent-gold-light);
    border-radius: 6px;
    padding: 1.25rem;
}

@media (min-width: 480px) {
    .layers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.layer-select-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.layer-select-group label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-green);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.layer-select-group select {
    cursor: pointer;
    background-color: var(--warm-yellow) !important;
}

/* Photo Viewer Styles */
.photo-viewer-container {
    padding-top: 2rem;
    padding-bottom: 4rem;
}

.photo-viewer-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: 1.5rem;
}

@media (min-width: 992px) {
    .photo-viewer-layout {
        grid-template-columns: 1.4fr 1fr;
    }
}

.photo-viewer-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #ffffff;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
}

.photo-frame {
    width: 100%;
    max-height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 4px;
    background-color: var(--warm-yellow-light);
}

.photo-frame img {
    max-width: 100%;
    max-height: 600px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.photo-frame img:hover {
    transform: scale(1.02);
}

.photo-viewer-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.photo-info-card {
    background: #ffffff;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--accent-gold);
}

.photo-info-card h3 {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 700;
}

.photo-product-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.photo-viewer-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.photo-viewer-actions .btn {
    width: 100%;
    padding: 0.85rem 1.5rem;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
}

.photo-viewer-notice {
    background-color: var(--warm-yellow-light);
    border-left: 4px solid var(--primary-green);
    border-radius: 4px;
    padding: 1rem 1.25rem;
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-dark);
}

/* About Us Page Styles */
.about-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

@media (min-width: 992px) {
    .about-layout {
        grid-template-columns: 1fr 1.6fr;
    }
}

.about-profile-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.profile-image-frame {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--glass-border);
    padding: 23px;
    background-color: var(--primary-green-dark);
}

.founder-photo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform var(--transition-slow);
    border-radius: 6px;
}

.profile-image-frame:hover .founder-photo {
    transform: scale(1.03);
}

.profile-frame-accent {
    position: absolute;
    top: 13px;
    left: 13px;
    right: 13px;
    bottom: 13px;
    border: 2px solid var(--accent-gold);
    border-radius: 8px;
    pointer-events: none;
    opacity: 0.85;
}

.about-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.about-badge {
    background-color: #ffffff;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 1.5rem 1rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border-top: 3px solid var(--accent-gold);
}

.badge-num {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-green);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.badge-lbl {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.4;
}

.about-content-section {
    display: flex;
    flex-direction: column;
}

.about-sub {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-gold-dark);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
}

.about-content-section h2 {
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    color: var(--primary-green-dark);
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.founder-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.about-paragraph {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
}

.about-paragraph strong {
    color: var(--primary-green);
}

.experience-card-grid {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2rem;
}

.exp-card {
    display: flex;
    gap: 1.25rem;
    background-color: var(--warm-yellow-light);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.exp-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.exp-icon {
    font-size: 2rem;
    line-height: 1;
    flex-shrink: 0;
}

.exp-text h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-green-dark);
    margin-bottom: 0.4rem;
    letter-spacing: 0.05em;
}

.exp-text p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-muted);
    margin: 0;
}

/* ==========================================================================
   Home Showcase Slideshow Styles
   ========================================================================== */

.home-showcase-slideshow {
    padding: 5rem 1.5rem;
    background-color: var(--primary-green-light-bg);
}

.showcase-slider-wrapper {
    position: relative;
    max-width: 1000px;
    height: 600px;
    margin: 2.5rem auto 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(207, 168, 83, 0.2);
    background-color: #060f08; /* Dark green/black background behind contained images */
}

.showcase-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.slide-bg-blur {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(25px) brightness(0.35);
    opacity: 0.75;
    z-index: 1;
    transform: scale(1.08); /* slight enlargement to prevent edge clipping */
    pointer-events: none;
}

.slide-img-main {
    position: relative;
    max-width: 90%;
    max-height: 82%;
    object-fit: contain;
    z-index: 2;
    display: block;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    border: 3px solid rgba(207, 168, 83, 0.85); /* Premium gold frame */
    border-radius: 8px;
    transition: transform 6s ease;
}

.showcase-slide.active .slide-img-main {
    transform: scale(1.02); /* Very subtle premium Ken Burns slow zoom */
}

.showcase-slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 4rem 2rem 2rem 2rem;
    background: linear-gradient(to top, rgba(12, 31, 16, 0.9) 0%, rgba(12, 31, 16, 0.5) 65%, rgba(12, 31, 16, 0) 100%);
    color: var(--text-light);
    z-index: 3;
    text-align: left;
}

.showcase-slide-caption h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.showcase-slide-caption p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    margin: 0;
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(12, 31, 16, 0.6);
    border: 1px solid rgba(207, 168, 83, 0.4);
    color: var(--accent-gold);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.slider-arrow:hover {
    background: var(--accent-gold);
    color: var(--primary-green-dark);
    box-shadow: 0 0 15px rgba(207, 168, 83, 0.4);
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(12, 31, 16, 0.3);
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.slider-dot.active {
    background: var(--accent-gold);
    transform: scale(1.25);
    box-shadow: 0 0 8px var(--accent-gold);
}

/* Responsive adjustment for slideshow */
@media (max-width: 768px) {
    .showcase-slider-wrapper {
        height: 400px;
        margin-top: 1.5rem;
    }
    .showcase-slide-caption {
        padding: 3rem 1.5rem 1.5rem 1.5rem;
    }
    .showcase-slide-caption h3 {
        font-size: 1.5rem;
    }
    .showcase-slide-caption p {
        font-size: 0.95rem;
    }
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Split Layout for Slideshow */
.slide-split-container {
    position: relative;
    display: flex;
    width: 90%;
    height: 88%; /* Occupies most of the container height since captions are inside sides now */
    z-index: 2;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.slide-side {
    width: 48%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.slide-image-wrapper {
    position: relative;
    width: 100%;
    height: 75%; /* Image frame takes 75% height of the side */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(207, 168, 83, 0.65);
    border-radius: 8px;
    background-color: rgba(12, 31, 16, 0.4);
    overflow: hidden;
}

.slide-side.slide-right .slide-image-wrapper {
    background-color: #ffffff; /* pure white background for product catalog shots */
}

.slide-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 6s ease;
}

.showcase-slide.active .slide-image-wrapper img {
    transform: scale(1.02); /* Ken Burns effect on both deity and garland images */
}

.slide-side-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(12, 31, 16, 0.85);
    color: var(--accent-gold);
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    border: 1px solid rgba(207, 168, 83, 0.4);
    z-index: 5;
}

/* Slide Caption Styles under the frames */
.slide-left-caption,
.slide-right-caption {
    width: 100%;
    padding-top: 12px;
    text-align: left;
}

.slide-left-caption h3,
.slide-right-caption h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--accent-gold);
    margin: 0 0 4px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-left-caption p,
.slide-right-caption p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    line-height: 1.4;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Center dividing gold line with a flower symbol */
.slide-center-divider {
    position: relative;
    width: 2px;
    height: 80%;
    background: linear-gradient(to bottom, transparent, var(--accent-gold), transparent);
    opacity: 0.9;
}

.slide-center-divider::after {
    content: "✿";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #060f08; /* Matches the slideshow container background to mask the line behind the flower */
    color: var(--accent-gold);
    font-size: 1.25rem;
    padding: 10px 0;
    line-height: 1;
    z-index: 3;
}

/* Placeholder Card */
.garland-placeholder-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem;
    color: var(--text-light);
    height: calc(100% - 16px);
    width: calc(100% - 16px);
    border: 2px dashed rgba(207, 168, 83, 0.45);
    border-radius: 6px;
    background-color: rgba(12, 31, 16, 0.6);
}

.placeholder-icon {
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-bottom: 0.75rem;
}

.garland-placeholder-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.garland-placeholder-card p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 260px;
    margin: 0;
}

/* Responsive adjustment for split screen */
@media (max-width: 768px) {
    .showcase-slider-wrapper {
        height: 670px; /* Increase height on mobile to support stacked vertical layout with captions */
    }

    .slide-split-container {
        width: 95%;
        height: 94%;
        flex-direction: column;
        justify-content: space-between;
        gap: 0;
    }
    
    .slide-side {
        width: 100%;
        height: 46%;
        align-items: center;
        justify-content: flex-start;
        text-align: center;
    }
    
    .slide-image-wrapper {
        height: 68%; /* Image frame takes 68% height of the stacked side */
        width: 85%;
        max-width: 260px; /* Limit width of portrait frames on mobile so they don't stretch too wide */
        margin: 0 auto;
    }

    .slide-side-label {
        font-size: 0.55rem;
        padding: 2px 6px;
        top: 6px;
        left: 6px;
    }
    
    .slide-left-caption,
    .slide-right-caption {
        width: 100%;
        padding-top: 6px;
        text-align: center;
    }
    
    .slide-left-caption h3,
    .slide-right-caption h3 {
        font-size: 1.05rem; /* center-aligned readable titles */
        margin: 0 0 2px 0;
        text-align: center;
    }
    
    .slide-left-caption p,
    .slide-right-caption p {
        font-size: 0.8rem; /* readable subtext */
        line-height: 1.3;
        text-align: center;
    }
    
    /* Horizontal dividing line with center flower symbol for vertical layout */
    .slide-center-divider {
        position: relative;
        width: 80%;
        height: 2px;
        background: linear-gradient(to right, transparent, var(--accent-gold), transparent);
        opacity: 0.9;
        margin: 10px 0;
    }
    
    .slide-center-divider::after {
        content: "✿";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: #060f08; /* Mask the horizontal line behind the flower */
        color: var(--accent-gold);
        font-size: 1.1rem;
        padding: 0 10px; /* Horizontal padding for mask */
        line-height: 1;
        z-index: 3;
    }
}

/* ==========================================================================
   SEO Dedicated Landing Page Custom Styles
   ========================================================================== */

/* Rich SEO Copy Section */
.seo-content-rich {
    background-color: var(--warm-yellow-light);
    border-radius: 12px;
    padding: 3rem 2rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
}

.seo-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .seo-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.seo-block {
    margin-bottom: 2rem;
}

.seo-block h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-green-dark);
    font-size: 1.6rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.seo-block h3::before {
    content: "❀";
    color: var(--accent-gold);
}

.seo-paragraph {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.seo-paragraph strong {
    color: var(--primary-green);
}

.seo-list {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
    list-style-type: none;
}

.seo-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.seo-list li::before {
    content: "✦";
    color: var(--accent-gold-dark);
    position: absolute;
    left: 0;
    font-size: 0.9rem;
}

/* Care Instructions Section */
.care-instructions-card {
    background: linear-gradient(135deg, var(--primary-green-dark), var(--primary-green));
    color: var(--text-light);
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    border: 1px solid var(--accent-gold);
    position: relative;
    overflow: hidden;
}

.care-instructions-card::after {
    content: "❀";
    position: absolute;
    right: -20px;
    bottom: -20px;
    font-size: 10rem;
    opacity: 0.05;
    color: var(--accent-gold);
    line-height: 1;
}

.care-instructions-card h2 {
    font-family: 'Playfair Display', serif;
    color: var(--accent-gold-light);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.care-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .care-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.care-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 3px solid var(--accent-gold);
}

.care-item h4 {
    font-size: 1.1rem;
    color: var(--accent-gold-light);
    margin-bottom: 0.5rem;
}

.care-item p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

/* Reviews Showcase Section */
.reviews-section {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.review-card {
    background-color: var(--warm-yellow);
    border: 1px solid var(--warm-yellow-dark);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-gold-light);
}

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

.review-stars {
    color: var(--accent-gold);
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.review-author {
    font-weight: 600;
    color: var(--primary-green-dark);
    font-size: 1rem;
}

.review-text {
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.review-photo-wrapper {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    margin-top: auto;
    border: 1px solid var(--warm-yellow-dark);
}

.review-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.review-card:hover .review-photo {
    transform: scale(1.05);
}

.review-location {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    display: block;
}

/* FAQ Accordion Section */
.faq-section {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.faq-accordion {
    max-width: 900px;
    margin: 2rem auto 0 auto;
}

.faq-item {
    background-color: var(--warm-yellow-light);
    border: 1px solid var(--warm-yellow-dark);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: border-color var(--transition-normal);
}

.faq-item:hover {
    border-color: var(--accent-gold-light);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem;
    text-align: left;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-green-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color var(--transition-fast);
}

.faq-question:hover {
    background-color: var(--warm-yellow);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--accent-gold);
    transition: transform var(--transition-normal);
    line-height: 1;
}

.faq-item.active {
    border-color: var(--accent-gold-dark);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
    background-color: rgba(250, 246, 237, 0.5);
}

.faq-answer-inner {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Custom Garland Banner */
.custom-garland-seo-banner {
    background: linear-gradient(to right, #0f2815, #1a4223);
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    color: var(--text-light);
    margin-top: 3rem;
    margin-bottom: 3rem;
    border: 1px solid var(--accent-gold);
    box-shadow: var(--shadow-lg);
}

.custom-garland-seo-banner h2 {
    font-family: 'Playfair Display', serif;
    color: var(--accent-gold-light);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.custom-garland-seo-banner p {
    max-width: 600px;
    margin: 0 auto 2rem auto;
    line-height: 1.6;
}





