/* CLEAN REWRITE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FF6B6B;
    --secondary-color: #4ECDC4;
    --accent-color: #FFE66D;
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --bg-light: #F7F9FC;
    --white: #FFFFFF;
    --success: #51CF66;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 3px solid rgba(255, 255, 255, 0.2);
}

.navbar {
    padding: 1.2rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo h1 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 0;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

.tagline {
    color: var(--white);
    font-size: 0.85rem;
    opacity: 0.95;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    width: fit-content;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.nav-links a.active {
    background: var(--white);
    color: #667eea;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

/* Compact Hero Section */
.hero-compact {
    padding: 2.5rem 0;
}

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

.hero-compact .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 0;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    animation: fadeInDown 0.8s;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.feature-badge {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.95rem;
    backdrop-filter: blur(10px);
}

/* Products Section */
.products-section {
    padding: 2rem 0;
}

.products-section .container {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 24px rgba(212, 160, 23, 0.18);
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

/* Filter Buttons */
.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.7rem 1.5rem;
    border: 2px solid var(--secondary-color);
    background-color: var(--white);
    color: var(--secondary-color);
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

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

.product-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1.5px solid #D4A017;
    box-shadow: 0 3px 14px rgba(212, 160, 23, 0.15);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    max-width: 320px;
    justify-self: center;
    width: 100%;
}

.clickable-card {
    cursor: pointer;
}

.clickable-card .btn-details {
    pointer-events: auto;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 28px rgba(212, 160, 23, 0.35);
}

.product-image {
    position: relative;
    height: 210px;
    background: linear-gradient(135deg, #ffeaa7, #fd79a8);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.age-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.out-of-stock-badge {
    position: absolute;
    top: 50px;
    right: 10px;
    background-color: #e74c3c;
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.4);
}

.product-info {
    padding: 1.1rem 1.3rem;
}

.product-category {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--text-dark);
    padding: 0.25rem 0.7rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product-title {
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
    color: var(--text-dark);
}

.product-description {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.btn-details {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-details:hover {
    background-color: #3db9b0;
    transform: scale(1.05);
}

/* ─────────────────────────────────────────
   Customer Reviews Carousel
───────────────────────────────────────── */
.reviews-section {
    padding: 3rem 0 2rem;
    background: var(--bg-light);
}

.reviews-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1rem;
    margin-top: -1rem;
    margin-bottom: 2rem;
}

/* Wrapper clips the scrolling track and adds fade edges */
.reviews-track-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
    -webkit-overflow-scrolling: touch;
    border-radius: 16px;
    cursor: grab;
    /* Hide scrollbar but keep scrollability */
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.reviews-track-wrapper::-webkit-scrollbar {
    display: none;
}
.reviews-track-wrapper.is-dragging {
    cursor: grabbing;
    user-select: none;
}

.reviews-track-wrapper::before,
.reviews-track-wrapper::after {
    display: none;
}

/* The scrolling row */
.reviews-track {
    display: flex;
    gap: 12px; /* control spacing */
    width: max-content; /* prevents stretching */
    scroll-snap-type: x mandatory;
}

.reviews-track:hover {
        animation-play-state: paused;
        }
        .reviews-track.is-paused {
            animation-play-state: paused;
}

.review-img {
    height: 220px;
    width: auto;
    border-radius: 12px;
    border: 1.5px solid #D4A017;
    box-shadow: 0 3px 12px rgba(212, 160, 23, 0.18);
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    flex: 0 0 auto;
    scroll-snap-align: start;
}

.review-img:hover {
    transform: scale(1.04) translateY(-4px);
    box-shadow: 0 8px 24px rgba(212, 160, 23, 0.4);
}

@keyframes reviewsScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Lightbox overlay for full-size review view */
.review-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.review-lightbox.open {
    display: flex;
}

.review-lightbox img {
    max-width: 92vw;
    max-height: 88vh;
    border-radius: 12px;
    box-shadow: 0 8px 40px rgba(0,0,0,.6);
}

.review-lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2.2rem;
    color: #fff;
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .review-img { height: 160px; }
    .reviews-track { gap: 0.7rem; }
}

/* About Preview Section */
.about-preview {
    background-color: var(--white);
    padding: 3rem 0;
    margin-top: 2rem;
}

.about-preview h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

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

.feature-card {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 16px;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 0.8rem;
}

.feature-card h3 {
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    margin: 0;
}

/* Footer */
footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-section a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* Social media links */
.social-links {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-top: 0.8rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: background 0.25s, color 0.25s, transform 0.2s;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
    transform: translateY(-2px);
}

.social-link svg {
    flex-shrink: 0;
}

/* Social icons in contact section (on light background) */
.contact-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.contact-social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    border: 2px solid;
    transition: all 0.25s;
}

.contact-social-link.youtube  { color: #FF0000; border-color: #FF0000; }
.contact-social-link.instagram { color: #E1306C; border-color: #E1306C; }
.contact-social-link.facebook  { color: #1877F2; border-color: #1877F2; }

.contact-social-link:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
}

.contact-social-link.youtube:hover  { background: #FF0000; }
.contact-social-link.instagram:hover { background: #E1306C; }
.contact-social-link.facebook:hover  { background: #1877F2; }


.breadcrumb {
    padding: 1.5rem 0;
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--secondary-color);
    text-decoration: none;
}

.product-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
}

/* Product Detail Image Slider */
.product-detail-image {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

/* Image slider - works on both desktop and mobile */
.image-slider {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    cursor: grab;
}

.image-slider img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.3s ease-in-out;
}

.image-slider:active {
    cursor: grabbing;
}

/* Slider arrows - visible on all screen sizes */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    -webkit-tap-highlight-color: transparent;
}

.slider-btn:hover {
    background: rgba(0, 0, 0, 0.7);
}

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

/* Dot indicators - visible on all screen sizes */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    padding: 0.3rem 0;
}

.slider-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.slider-dot.active {
    background: var(--primary-color);
    transform: scale(1.35);
}

.product-detail-info h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.product-meta {
    display: flex;
    gap: 2rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.meta-item {
    font-size: 0.95rem;
}

.in-stock {
    color: var(--success);
    font-weight: 600;
}

.out-of-stock {
    color: #e74c3c;
    font-weight: 600;
}

.product-detail-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin: 2rem 0;
}

.product-detail-description p {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.product-detail-description ul {
    list-style: disc;
    padding-left: 2rem;
    margin-top: 0.5rem;
}

.product-detail-description ul li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.price-section {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.price-label {
    font-size: 1rem;
    color: var(--text-light);
    display: block;
    margin-bottom: 0.5rem;
}

.product-price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.delivery-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    flex: 1;
}

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

.btn-secondary {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.btn-secondary:hover {
    background-color: #e0e5eb;
}

/* WhatsApp Order button (used in product detail) */
.btn-whatsapp-order {
    flex: 1;
    background-color: #25D366;
    color: var(--white);
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: background 0.3s, transform 0.2s;
}

.btn-whatsapp-order:hover {
    background-color: #1ebe5a;
    transform: translateY(-2px);
}

/* Back button */
.btn-back {
    background-color: var(--bg-light);
    color: var(--text-dark);
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-back:hover {
    background-color: #dde2e8;
}

/* Mobile sticky bottom bar — hidden on desktop */
.mobile-sticky-bar {
    display: none;
}

.product-highlights {
    margin-top: 2rem;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 12px;
}

.product-highlights h3 {
    margin-bottom: 1rem;
}

.product-highlights ul {
    list-style: none;
}

.product-highlights li {
    padding: 0.5rem 0;
    font-size: 1rem;
}

/* About Page */
.about-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 1rem 0;
    text-align: center;
}

.about-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.3rem;
    opacity: 0.95;
}

.about-content {
    padding: 2rem 0;
}

.about-story {
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    margin-bottom: 3rem;
    box-shadow: var(--shadow);
}

.about-story h2 {
    color: #1a252f;
    margin-bottom: 1.5rem;
}

.about-story p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.about-content .about-story p {
    color: #2C3E50;   /* same as var(--text-dark) */
    font-weight: 400;
}

.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.mission-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.mission-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* About page highlight cards */
.about-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.2rem;
    margin: 2rem 0;
}

.highlight-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--white);
    border-radius: 14px;
    padding: 1.4rem;
    box-shadow: var(--shadow);
    border-left: 4px solid #D4A017;
    transition: transform 0.25s, box-shadow 0.25s;
}

.highlight-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

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

.highlight-card h4 {
    margin-bottom: 0.35rem;
    color: var(--text-dark);
    font-size: 1rem;
}

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

.values-section {
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.values-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.value-item {
    text-align: center;
    padding: 1.5rem;
}

.value-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.value-item h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

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

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {

    /* Header scrolls with page on mobile */
    header {
        position: relative;
    }

    .navbar .container {
        flex-direction: column;
        gap: 1rem;
    }

    .logo {
        align-items: center;
        text-align: center;
    }

    .logo h1 { font-size: 1.6rem; }
    .tagline { font-size: 0.75rem; }

    .nav-links {
        flex-direction: row;
        gap: 0.3rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-links a {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    /* Home page - products grid single column */
    .products-grid {
        grid-template-columns: 1fr;
    }

    /* Horizontal scrollable filters */
    .filter-buttons {
        flex-direction: row;
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        padding: 0.5rem 0 0.8rem 0;
        margin-bottom: 1.5rem;
        gap: 0.5rem;
    }

    .filter-buttons::-webkit-scrollbar { height: 4px; }
    .filter-buttons::-webkit-scrollbar-thumb {
        background: var(--secondary-color);
        border-radius: 4px;
    }

    .filter-btn {
        flex-shrink: 0;
        white-space: nowrap;
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    /* ── Product Detail Page ── */

    .product-detail-container {
        grid-template-columns: 1fr;
        padding: 1rem;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    /* Smaller slider arrows on mobile */
    .slider-btn {
        width: 34px;
        height: 34px;
        font-size: 1rem;
    }

    /* Price section */
    .price-section {
        margin: 0.8rem 0;
        padding: 1rem;
    }

    .price-label {
        font-size: 0.8rem;
    }

    .product-price-large {
        font-size: 1.8rem;
    }

    .delivery-note {
        font-size: 0.75rem;
    }

    /* Action buttons - vertical stack on mobile */
    .action-buttons {
        flex-direction: column;
        gap: 0.5rem;
        margin: 0.8rem 0;
    }

    .btn-whatsapp-order {
        width: 100%;
        padding: 0.9rem;
        font-size: 0.95rem;
    }

    .btn-back {
        width: 100%;
        padding: 0.85rem;
        font-size: 0.9rem;
        text-align: center;
    }

    /* ── Mobile sticky bottom bar ── */
    .mobile-sticky-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 90;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        padding: 0.8rem 1rem;
        background: #ffffff;
        border-top: 2px solid var(--bg-light);
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
    }

    .mobile-sticky-price {
        display: flex;
        flex-direction: column;
        gap: 0.1rem;
    }

    .mobile-sticky-label {
        font-size: 0.7rem;
        color: var(--text-light);
    }

    .mobile-sticky-amount {
        font-size: 1.4rem;
        font-weight: 700;
        color: var(--primary-color);
    }

    .mobile-sticky-order {
        background: #25D366;
        color: #fff;
        border: none;
        padding: 0.8rem 1.2rem;
        border-radius: 8px;
        font-size: 0.9rem;
        font-weight: 600;
        cursor: pointer;
        white-space: nowrap;
        display: flex;
        align-items: center;
        gap: 0.4rem;
        transition: background 0.2s;
    }

    .mobile-sticky-order:hover {
        background: #1ebe5a;
    }

    .mobile-sticky-share {
        width: 44px;
        height: 44px;
        padding: 0;

        display: flex;
        align-items: center;
        justify-content: center;

        border-radius: 50%;
        border: 1px solid #f5c2c2;

        background: #fff5f5;   /* soft red background */
        color: #e63946;        /* main icon color */

        cursor: pointer;
    }

    .mobile-sticky-share svg {
        width: 20px;
        height: 20px;
    }

    /* Add bottom padding so content isn't hidden behind sticky bar */
    .product-detail-container {
        padding-bottom: 80px;
    }
}

@media (max-width: 480px) {
    .container { padding: 0 15px; }
    .logo h1 { font-size: 1.4rem; }
    .tagline { font-size: 0.7rem; padding: 0.15rem 0.6rem; }
    .nav-links a { padding: 0.4rem 0.8rem; font-size: 0.8rem; }
    .section-title { font-size: 1.8rem; }
    .filter-btn { padding: 0.5rem 1rem; font-size: 0.8rem; }
    .product-price-large { font-size: 1.6rem; }
}

/* Logo image */
.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 64px;
    width: 64px;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

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

.logo-name {
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.logo-fallback {
    flex-direction: column;
    gap: 0.2rem;
}

.logo-fallback h1 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 0;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    letter-spacing: 0.5px;
}

/* About page - story with photo */
.about-story-inner {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
}

.about-story-text {
    flex: 1;
}

.about-story-photo {
    flex-shrink: 0;
    text-align: center;
}

.about-photo {
    width: 260px;
    height: 300px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 4px solid #FFE66D;
}

.about-photo-caption {
    margin-top: 0.6rem;
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
}

@media (max-width: 768px) {
    .about-story-inner {
        flex-direction: column-reverse;
        align-items: center;
    }

    .about-photo {
        width: 220px;
        height: 250px;
    }

    .logo-img {
        height: 50px;
        width: 50px;
    }

    .logo-name {
        font-size: 1.2rem;
    }

}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 9999;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}
@media (max-width: 600px) {
    .whatsapp-float {
        right: 1rem;
        bottom: 1rem;
        width: 44px;
        height: 44px;
    }
    .whatsapp-float svg {
                    display: block;
                    width: 44px;
                    height: 44px;
                    color: #25D366;
        width: 44px;
        height: 44px;
    }
}

