/* --- CSS VARIABLES & RESET --- */
:root {
    --primary: #c41e3a;
    /* Royal Crimson Red */
    --secondary: #ffd700;
    /* Shiny Gold */
    --accent: #f3f4f6;
    /* Light Grey */
    --text-dark: #1f2937;
    --text-light: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    
    /* Kente Colors */
    --kente-red: #c41e3a;
    /* Royal Crimson */
    --kente-blue: #1e40af;
    /* Deep Royal Blue */
    --kente-gold: #ffd700;
    /* Shiny Gold */
    --kente-green: #166534;
    /* Accent Green */
    --kente-black: #0d0d0d;
    /* Deep Black */
}

/* --- KENTE OVERLAY CLASSES --- */

/* Red Kente Overlay (Bold - 35-40%) */
.kente-red {
    position: relative;
}
.kente-red::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('images/kente-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.38;
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 1;
}
.kente-red > * {
    position: relative;
    z-index: 2;
}

/* Blue Kente Overlay */
.kente-blue {
    position: relative;
}
.kente-blue::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('images/kente-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.32;
    mix-blend-mode: multiply;
    filter: hue-rotate(200deg) saturate(1.5);
    pointer-events: none;
    z-index: 1;
}
.kente-blue > * {
    position: relative;
    z-index: 2;
}

/* Gold Kente Overlay */
.kente-gold {
    position: relative;
}
.kente-gold::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('images/kente-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.40;
    mix-blend-mode: overlay;
    filter: sepia(0.5) saturate(2);
    pointer-events: none;
    z-index: 1;
}
.kente-gold > * {
    position: relative;
    z-index: 2;
}

/* Subtle Kente Accent (10-15%) */
.kente-accent {
    position: relative;
}
.kente-accent::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('images/kente-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    mix-blend-mode: soft-light;
    pointer-events: none;
    z-index: 1;
}
.kente-accent > * {
    position: relative;
    z-index: 2;
}

/* Hero Kente - Extra Bold */
.kente-hero {
    position: relative;
}
.kente-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('images/kente-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.42;
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 1;
}
.kente-hero > * {
    position: relative;
    z-index: 2;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Skip link visible when focused */
.skip-link {
    position: absolute;
    left: -999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.skip-link:focus {
    position: absolute;
    left: 10px;
    top: 10px;
    width: auto;
    height: auto;
    padding: 8px 12px;
    background: var(--primary);
    color: white;
    z-index: 2000;
    border-radius: 4px;
}

/* Header/nav tweaks */
.logo a { display: inline-block; vertical-align: middle; }
.logo img { height: 70px; width: auto; }
.menu-toggle { display: none; }

@media (max-width: 768px) {
    .nav-links { display: none; flex-direction: column; background: white; position: absolute; right: 15px; top: 80px; border-radius: 8px; box-shadow: var(--shadow); padding: 15px; }
    .nav-links a { display: block; padding: 8px 0; }
    .nav-links.active { display: flex; }
    .menu-toggle { display: block; }
}

/* Hero polish */
.hero { background-position: center; background-size: cover; }
.hero-content h1 { font-size: 3rem; line-height: 1.05; max-width: 900px; margin: 0 auto 16px; }
.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.hero .btn, .hero .btn-outline { 
    box-shadow: 0 8px 20px rgba(0,0,0,0.3); 
}

/* Footer tweaks */
footer { background-color: #0b0b0b; color: #bbb; }
.footer-grid { gap: 30px; }
.footer-col p { color: #cfcfcf; }


/* --- UTILITIES --- */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-padding {
    padding: 50px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    display: inline-block;
    border-bottom: 3px solid var(--secondary);
    padding-bottom: 8px;
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, #c41e3a, #e63950);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid #c41e3a;
    transition: all 0.3s ease;
}

.btn:hover {
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    border-color: #ffd700;
    color: #1f2937;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid #ffd700;
    color: #ffd700;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    color: #1f2937;
}

.btn-diskova {
    display: inline-block;
    background: linear-gradient(135deg, #c41e3a, #e63950);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid #c41e3a;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-diskova:hover {
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    border-color: #ffd700;
    color: #1f2937;
    transform: scale(1.05);
}

/* --- NAVIGATION --- */
header {
    background-color: white !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
}

header::before {
    display: none !important;
}

body {
    padding-top: 70px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    align-items: center;
    gap: 2px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 20%, #d4af37 35%, #ffd700 50%, #d4af37 65%, #2d2d2d 80%, #1a1a1a 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
    animation: goldShimmer 4s ease-in-out infinite;
}

@keyframes goldShimmer {
    0% { background-position: 0% 50%; }
    25% { background-position: 50% 50%; }
    50% { background-position: 100% 50%; }
    75% { background-position: 50% 50%; }
    100% { background-position: 0% 50%; }
}

.logo .otc {
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 50%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: #ffd700;
}

/* Mobile Menu Icon (Hidden on Desktop) */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* --- HERO SECTION --- */
.hero {
    height: 90vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

/* Animated dark blue/black gradient background */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0a1628 0%, #0d1f3c 20%, #142850 40%, #0a1628 60%, #081428 80%, #0d1f3c 100%);
    background-size: 400% 400%;
    animation: darkBlueShift 10s ease-in-out infinite;
    z-index: -2;
}

.hero::after {
    content: '';
    position: absolute;
    inset: -20%;
    background-image: url('images/kente-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    animation: realMotionBg 12s ease-in-out infinite;
    z-index: -1;
}

@keyframes darkBlueShift {
    0%, 100% { background-position: 0% 50%; }
    25% { background-position: 50% 0%; }
    50% { background-position: 100% 50%; }
    75% { background-position: 50% 100%; }
}

@keyframes realMotionBg {
    0% { transform: scale(1.15) translateX(-3%) translateY(-2%) rotate(-2deg); }
    20% { transform: scale(1.2) translateX(3%) translateY(1%) rotate(1deg); }
    40% { transform: scale(1.18) translateX(-2%) translateY(-1%) rotate(-1deg); }
    60% { transform: scale(1.22) translateX(2%) translateY(2%) rotate(2deg); }
    80% { transform: scale(1.17) translateX(-1%) translateY(-2%) rotate(-1deg); }
    100% { transform: scale(1.15) translateX(-3%) translateY(-2%) rotate(-2deg); }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

/* --- ABOUT SECTION --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-img {
    text-align: center;
}

.about-img img {
    border-radius: 10px;
    box-shadow: var(--shadow);
    width: 100%;
    max-width: 520px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.about-img figcaption {
    font-size: 0.9rem;
    color: #666;
    margin-top: 8px;
    text-align: center;
}

.mission-box {
    background-color: var(--accent);
    padding: 20px;
    border-left: 4px solid var(--secondary);
    margin: 20px 0;
    border-radius: 0 10px 10px 0;
}

/* --- PRODUCTS SECTION --- */
.product-category {
    margin-bottom: 30px;
}

.products-section {
    background-color: #fcfcfc;
}

.category-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    text-align: left;
    border-left: 4px solid var(--secondary);
    padding-left: 12px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
}

.product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}

.product-img {
    height: 120px;
    background-color: #eee;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 12px;
}

.product-info h3 {
    font-size: 0.95rem;
    margin-bottom: 4px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.price {
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 6px;
    display: block;
}

.ingredients {
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.3;
}

.product-info p:last-of-type {
    font-size: 0.8rem;
    color: #555;
    line-height: 1.4;
}

/* --- SERVICES SECTION --- */
#services {
    background-color: var(--accent);
}

/* --- SERVICE CARD STYLES --- */
.service-card {
    background: white;
    padding: 0;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    height: 100%;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}

.service-image-container {
    width: 100%;
    height: 140px;
    overflow: hidden;
}

.service-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image covers area without stretching */
    transition: transform 0.5s ease;
}

.service-card:hover .service-image-container img {
    transform: scale(1.1); /* Zoom effect on hover */
}

.service-content {
    padding: 15px;
}

.service-content .btn { 
    margin-top: 10px; 
    padding: 8px 20px;
    font-size: 0.85rem;
}

.service-icon {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 8px;
    display: inline-block;
}

.service-content h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.service-content > p {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #555;
}

.service-list {
    text-align: left;
    margin-top: 10px;
    padding-left: 15px;
}

.service-list li {
    margin-bottom: 5px;
    font-size: 0.8rem;
}

.service-list li i {
    color: var(--primary);
    margin-right: 10px;
}

/* --- GALLERY GRID --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.gallery-item {
    height: 250px;
    overflow: hidden;
    border-radius: 5px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* --- SINGLE GALLERY STYLES --- */
.gallery-single {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.gallery-main {
    height: 420px;
    overflow: hidden;
    border-radius: 8px;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-thumbs {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: nowrap;
}

.gallery-thumbs .thumb {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    opacity: 0.8;
    border: 2px solid transparent;
}

.gallery-thumbs .thumb.active {
    opacity: 1;
    border-color: var(--secondary);
}

@media (max-width: 600px) {
    .gallery-main {
        height: 260px;
    }
    .gallery-thumbs .thumb {
        width: 70px;
        height: 50px;
    }
}

/* Make product images use similar responsive sizing as the gallery */
@media (max-width: 900px) {
    .product-img { height: 24vh; }
}

/* --- TESTIMONIALS --- */
#testimonials {
    background-color: var(--primary);
    color: white;
}

#testimonials h2 {
    color: white;
    border-bottom: 3px solid var(--secondary);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    font-style: italic;
}

.client-name {
    display: block;
    margin-top: 15px;
    font-weight: bold;
    color: var(--secondary);
    font-style: normal;
}

/* --- CONTACT SECTION --- */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: white;
    box-shadow: var(--shadow);
    border-radius: 10px;
    overflow: hidden;
}

.contact-info {
    background-color: var(--primary);
    color: white;
    padding: 50px;
}

.contact-info h3 {
    color: var(--secondary);
    margin-bottom: 20px;
}

.contact-item {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.contact-item i {
    margin-right: 15px;
    font-size: 1.2rem;
    color: var(--secondary);
}

.contact-form-wrapper {
    padding: 50px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.form-group textarea {
    height: 120px;
    resize: none;
}

/* --- FOOTER --- */
footer {
    background-color: #111;
    color: #aaa;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 20px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #333;
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.social-links a:hover {
    background-color: var(--secondary);
}

.copyright {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 20px;
    font-size: 0.9rem;
}

.newsletter-form {
    display: flex;
    margin-top: 15px;
}

.newsletter-form input {
    padding: 10px;
    border: none;
    border-radius: 5px 0 0 5px;
    flex: 1;
}

.newsletter-form button {
    background: var(--secondary);
    border: none;
    color: white;
    padding: 0 15px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}

/* --- MEDIA QUERIES --- */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        /* Hide nav on mobile for this demo */
    }

    .menu-toggle {
        display: block;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .about-grid,
    .contact-container {
        grid-template-columns: 1fr;
    }
}

/* --- PROFESSIONAL GALLERY & LIGHTBOX --- */
.gallery-pro {
    margin-top: 20px;
}
.gallery-pro .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 14px;
    align-items: stretch;
}
.gallery-thumb {
    display: block;
    border: none;
    padding: 0;
    background: transparent;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(16,24,40,0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.gallery-thumb img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.gallery-thumb:focus,
.gallery-thumb:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 34px rgba(16,24,40,0.12);
}
.gallery-thumb:focus img,
.gallery-thumb:hover img {
    transform: scale(1.06);
}

/* Lightbox overlay */
.lightbox {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(4,6,12,0.75);
    z-index: 2000;
    padding: 24px;
}
.lightbox[aria-hidden="false"] {
    display: flex;
}
.lightbox-inner {
    position: relative;
    max-width: 1100px;
    width: 100%;
    outline: none;
    display: flex;
    align-items: center;
    gap: 20px;
}
.lightbox-media {
    flex: 1 1 auto;
    text-align: center;
}
.lightbox-img {
    max-width: 100%;
    max-height: 75vh;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(2,6,23,0.6);
}
.lightbox-caption {
    margin-top: 12px;
    color: #e6eef8;
    font-size: 0.95rem;
}
.lightbox-close {
    position: absolute;
    right: -10px;
    top: -10px;
    background: var(--secondary);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}
.lightbox-nav {
    background: rgba(255,255,255,0.06);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-prev { margin-right: 6px; }
.lightbox-next { margin-left: 6px; }

@media (max-width: 900px) {
    .gallery-thumb img { height: 120px; }
    .lightbox-inner { flex-direction: column; }
    .lightbox-nav { display: none; }
}

/* keyboard focus visible */
.gallery-thumb:focus,
.lightbox-close:focus,
.lightbox-nav:focus { outline: 3px solid rgba(217,119,6,0.25); }

/* --- SLIDER STYLES (10-image slider) --- */

.slider {
    position: relative;
    margin: 4px auto; /* smaller vertical gap */
    width: 96%; /* slightly wider than container content */
    max-width: 1280px; /* allow a little extra horizontal room */
}

/* Compact vertical space for the gallery section */
#gallery.section-padding {
    padding: 12px 0; /* reduced to minimize gallery length */
}
.slides {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--shadow);
}
.slides .slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slides .slide img {
    width: 100%;
    height: 42vh; /* increased image height for visual emphasis */
    object-fit: cover;
    display: block;
}
.slides .slide .slide-caption {
    position: absolute;
    left: 24px;
    bottom: 18px;
    background: rgba(2,6,23,0.6);
    color: #fff;
    padding: 8px 14px;
    border-radius: 6px;
    font-weight: 600;
}
.slides .slide[data-active="true"] {
    opacity: 1;
    position: relative;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%); /* blue → gold */
    color: #fff; /* white icon/text */
    border: 1px solid rgba(0,0,0,0.08);
    width: 52px;
    height: 52px;
    border-radius: 10px;
    cursor: pointer;
    z-index: 70; /* bring above slides */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 22px rgba(0,0,0,0.14);
    transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.12s ease;
}
.slider-btn:hover {
    transform: translateY(-50%) scale(1.06);
    box-shadow: 0 14px 36px rgba(0,0,0,0.2);
}
.slider-prev { left: 12px; }
.slider-next { right: 12px; }

.slider-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 12px;
}
.slider-dots button {
    width: 10px;
    height: 10px;
    background: #ddd;
    border: none;
    border-radius: 50%;
    cursor: pointer;
}
.slider-dots button[aria-selected="true"] { background: var(--secondary); }

@media (max-width: 900px) {
    .slides .slide img { height: 28vh; } /* increased mobile image height */
    .slides .slide .slide-caption { left: 12px; right: 12px; bottom: 10px; }
}

/* Slightly reduce dot spacing to save vertical space */
.slider-dots { margin-top: 8px; }

/* --- JAVASCRIPT ANIMATION CLASSES --- */

/* 1. Mobile Menu Active State */
@media (max-width: 768px) {
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: white;
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        animation: slideDown 0.3s ease forwards;
        z-index: 999;
    }

    .nav-links.active a {
        padding: 15px;
        border-bottom: 1px solid #eee;
        width: 100%;
        text-align: center;
    }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 2. Sticky Header Style */
header.scrolled {
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    padding: 0; /* Shrink header slightly */
    transition: all 0.3s ease;
}

/* 3. Reveal on Scroll Animation */
.hidden-element {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Add staggered delays for grid items if desired */
.product-card:nth-child(2) { transition-delay: 0.1s; }
.product-card:nth-child(3) { transition-delay: 0.2s; }
.product-card:nth-child(4) { transition-delay: 0.3s; }

