@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;800&display=swap');

:root {
    --color-bg-base: #FFFCF9;
    --color-pastel-pink: #FDF1F4;
    --color-gold: #B8860B; /* Dark Goldenrod for traditional feel */
    --color-gold-light: #EBD59B;
    --color-dark: #4A2E1B; /* Warm dark brown */
    --color-text: #664A3D;
    --color-pink-petal: #F3BCC8;
    --color-accent-red: #A52A2A; /* Subtle traditional red accent */
}

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

body {
    font-family: 'Lora', serif;
    background-color: var(--color-bg-base);
    color: var(--color-text);
    overflow-x: hidden;
    background-image: 
        radial-gradient(var(--color-gold-light) 1px, transparent 1px),
        radial-gradient(var(--color-gold-light) 1px, transparent 1px);
    background-size: 60px 60px;
    background-position: 0 0, 30px 30px;
    background-attachment: fixed;
}

h1, h2, h3, .cta-button {
    font-family: 'Cinzel', serif;
    color: var(--color-dark);
}


/* Announcement Bar */
.announcement-bar {
    width: 100%;
    height: 40px;
    background-color: #000;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: sticky;
    top: 0;
    z-index: 1000;
    overflow: hidden;
}

.ann-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.ann-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 15px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
}

.ann-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.ann-pink { background-color: var(--color-pastel-pink); color: var(--color-dark); }
.ann-black { background-color: #000; color: #fff; }

.ann-timer {
    display: inline-block;
    background: rgba(0,0,0,0.1);
    padding: 2px 8px;
    border-radius: 4px;
    font-variant-numeric: tabular-nums;
}
.ann-black .ann-timer { background: rgba(255,255,255,0.2); }

/* Header */
.header {
    background-color: rgba(255, 252, 249, 0.95);
    padding: 0.2rem 1rem;
    text-align: center;
    border-bottom: 3px double var(--color-gold);
}

.logo-placeholder {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
}

.logo-image {
    max-height: 70px;
    width: auto;
    object-fit: contain;
}



/* Hero Section */
.hero {
    position: relative;
    text-align: center;
    padding: 0;
    background-color: transparent;
}

/* Slider */
.slider-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    aspect-ratio: 21 / 9;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
}

.slide {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 10;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.15) 0%,
        rgba(0,0,0,0.45) 40%,
        rgba(0,0,0,0.65) 100%
    );
    z-index: 11;
}

.slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 20;
}

.hero-content {
    position: relative;
    z-index: 15;
    max-width: 800px;
    padding: 0 2rem;
}

.hero h2 {
    font-size: clamp(2rem, 6vw, 4.5rem);
    margin-bottom: 1.5rem;
    color: #FFFFFF;
    letter-spacing: 4px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8), 0 0 20px rgba(184, 134, 11, 0.8);
}

.hero p {
    font-size: clamp(1rem, 3vw, 1.6rem);
    color: #F8F8F8;
    line-height: 1.8;
    font-style: italic;
    max-width: 650px;
    margin: 0 auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.9);
}

.slider-controls {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 30;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--color-gold);
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 5px rgba(0,0,0,0.5);
}

.dot.active, .dot:hover {
    background-color: var(--color-gold);
    transform: scale(1.3);
}

/* Decorative Petals */
.petal {
    position: absolute;
    background: linear-gradient(135deg, var(--color-pink-petal), #fff0f3);
    border-radius: 50% 0 50% 50%;
    opacity: 0.6;
    box-shadow: inset -2px -2px 10px rgba(212, 175, 55, 0.2), 3px 3px 15px rgba(0, 0, 0, 0.3);
    transform-origin: bottom right;
    animation: float-traditional 8s ease-in-out infinite;
    z-index: 25; /* above slider, below text */
}

.petal::after {
    content: '';
    position: absolute;
    top: 10%; left: 10%; right: 10%; bottom: 10%;
    border: 1px solid rgba(184, 134, 11, 0.6);
    border-radius: inherit;
}

.petal-1 { width: 140px; height: 140px; top: -10px; left: 8%; transform: rotate(45deg); animation-delay: 0s; }
.petal-2 { width: 180px; height: 180px; bottom: -30px; right: 5%; transform: rotate(-20deg); animation-delay: 2s; }
.petal-3 { width: 90px; height: 90px; top: 45%; left: 85%; transform: rotate(15deg); animation-delay: 4s; }
.petal-4 { width: 120px; height: 120px; top: 75%; left: 10%; transform: rotate(60deg); animation-delay: 1s; }
.petal-5 { width: 100px; height: 100px; top: 15%; right: 15%; transform: rotate(-40deg); animation-delay: 3s; }

@keyframes float-traditional {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    50% { transform: translateY(-15px) rotate(5deg) scale(1.05); }
}

/* Products Section */
.products-section {
    padding: 4rem 1.5rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.section-title {
    font-size: clamp(1.8rem, 5vw, 3rem);
    text-align: center;
    color: var(--color-dark);
    margin-bottom: 2.5rem;
    font-family: 'Cinzel', serif;
}

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

/* Product card link wrapper */
.product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(184, 134, 11, 0.15);
}

/* Product image container */
.product-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--color-pastel-pink);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.product-card:hover .product-image {
    transform: scale(1.06);
}

.discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #E8003D;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    padding: 4px 8px;
    border-radius: 4px;
    z-index: 5;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.cart-btn {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #e91e63;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.4);
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    z-index: 5;
}

.cart-btn svg {
    width: 20px;
    height: 20px;
    stroke: #ffffff;
}

.cart-btn:hover {
    background: #c2185b;
    transform: scale(1.15);
    box-shadow: 0 6px 16px rgba(233, 30, 99, 0.6);
}

.cart-btn:hover svg {
    stroke: #ffffff;
}

/* Product card text area */
.product-title {
    font-size: 0.9rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: var(--color-dark);
    padding: 0.75rem 0.75rem 0.3rem;
    line-height: 1.4;
}

.product-code {
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    color: #333;
    font-weight: 700;
    padding: 0 0.75rem 0.2rem;
}

.price-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 0.75rem 0.2rem;
}

.current-price {
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    color: var(--color-dark);
}

.original-price {
    font-size: 0.8rem;
    font-family: 'Outfit', sans-serif;
    color: #999;
    text-decoration: line-through;
}

.discount-text {
    font-size: 0.8rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: #E8003D;
    padding: 0 0.75rem 0.75rem;
}

/* View All Button */
.view-all-container {
    text-align: center;
    margin-top: 2.5rem;
}

.view-all-btn {
    background: var(--color-dark);
    color: #fff;
    border: none;
    padding: 0.9rem 3rem;
    border-radius: 50px;
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    letter-spacing: 0.5px;
}

.view-all-btn:hover {
    background: var(--color-gold);
    transform: translateY(-2px);
}

.cta-button {
    background-color: transparent;
    color: var(--color-dark);
    border: 1px solid var(--color-gold);
    padding: 0.8rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: inline-block;
    text-decoration: none;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: var(--color-gold);
    z-index: -1;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
}

.cta-button:hover {
    color: #fff;
    border-color: var(--color-gold);
}

.cta-button:hover::before {
    transform: scaleY(1);
}

/* Instagram Banner */
.insta-banner {
    background: linear-gradient(135deg, #fff0f3, #fdf6e3);
    padding: 5rem 2rem;
    text-align: center;
    border-top: 2px solid var(--color-gold-light);
    border-bottom: 2px solid var(--color-gold-light);
    position: relative;
    overflow: hidden;
    margin: 4rem 0 0;
    box-shadow: inset 0 0 50px rgba(184, 134, 11, 0.05);
}

.insta-content {
    position: relative;
    z-index: 10;
    max-width: 600px;
    margin: 0 auto;
}

.insta-icon {
    width: 60px;
    height: 60px;
    color: #E1306C;
    margin-bottom: 1.5rem;
}

.insta-banner h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    line-height: 1.2;
}

.insta-banner p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--color-text);
}

.insta-outline-btn {
    display: inline-block;
    background: transparent;
    border: 1px solid #e91e63;
    color: #e91e63;
    padding: 1rem 3rem;
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    text-align: center;
    line-height: 1.4;
    margin-top: 1rem;
}

.insta-outline-btn:hover {
    background: #e91e63;
    color: #fff;
}

/* Footer */
.footer {
    background: var(--color-pastel-pink);
    color: var(--color-dark);
    padding: 5rem 2rem 2rem;
    position: relative;
    border-top: 3px solid var(--color-gold);
    box-shadow: inset 0 10px 20px rgba(184, 134, 11, 0.03);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto 3rem;
}



.footer-logo {
    max-height: 110px;
    margin-bottom: 1.5rem;
    background: transparent;
    padding: 0;
    border-radius: 0;
    border: none;
}

.footer-desc {
    color: var(--color-text);
    line-height: 1.8;
    font-size: 1.1rem;
}

.footer h3 {
    color: var(--color-dark);
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 40px;
    height: 2px;
    background-color: var(--color-gold);
}

.footer ul {
    list-style: none;
}

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

.footer ul li a {
    color: var(--color-text);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer ul li a:hover {
    color: var(--color-gold);
    padding-left: 5px;
}

.footer-col p {
    color: var(--color-text);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(74, 46, 27, 0.15);
    padding-top: 2rem;
    color: var(--color-text);
    font-size: 0.95rem;
}

/* Product Detail Section */
.product-detail-section {
    padding: 6rem 2rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 10;
}

/* Product Features Block */
.product-features-block {
    background-color: #1a1a1a;
    color: #ffffff;
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
}
.product-features-block ul {
    list-style: none;
    margin-bottom: 10px;
}
.product-features-block ul li {
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.product-features-block p {
    font-size: 0.95rem;
    font-weight: 600;
}

/* Product Media Slider */
.product-media-slider-container {
    position: relative;
    width: 100%;
    background-color: transparent;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(184, 134, 11, 0.1);
    background: #fff;
}

.product-media-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
}
.product-media-slider::-webkit-scrollbar {
    display: none;
}

.media-slide {
    flex: 0 0 100%;
    scroll-snap-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fdfdfd;
}

.media-slide img, .media-slide video {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
}

.media-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-dark);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 10;
    transition: background 0.3s ease;
}
.media-arrow:hover {
    background: #fff;
    color: var(--color-gold);
}
.media-prev { left: 10px; }
.media-next { right: 10px; }

.media-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 15px 0;
    background: #fff;
    width: 100%;
    border-top: 1px solid #eee;
}

.media-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s ease;
}
.media-dot.active {
    background: var(--color-gold);
    transform: scale(1.2);
}

.product-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* New Product Info Layout */
.product-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}
.product-title-row h1 {
    font-size: 1.8rem;
    font-family: 'Outfit', sans-serif;
    color: var(--color-dark);
    margin-bottom: 0;
    line-height: 1.3;
}

.product-code-detail {
    font-size: 1.35rem;
    font-family: 'Montserrat', sans-serif;
    color: #222;
    margin-bottom: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
}
.share-btn {
    background: #f5f5f5;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s;
}
.share-btn:hover { background: #e5e5e5; }
.share-btn svg { width: 18px; height: 18px; stroke: #555; }

.price-row-detail {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1.2rem;
}
.price-row-detail .product-price { 
    font-size: 2.5rem; 
    font-weight: bold; 
    color: #000; 
    font-family: 'Outfit', sans-serif;
}
.price-row-detail .original-price { 
    font-size: 1.2rem; 
    color: #999; 
    text-decoration: line-through; 
    font-family: 'Outfit', sans-serif;
}
.price-row-detail .discount-text { 
    font-size: 1.1rem; 
    color: #e60000; 
    font-weight: bold; 
    font-family: 'Outfit', sans-serif;
}

.timer-badge {
    background: #ffe6e6;
    color: #e60000;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-family: 'Outfit', sans-serif;
}

.offer-banner {
    border: 1px dashed #4caf50;
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    align-items: center;
    color: #2e7d32;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Outfit', sans-serif;
}
.offer-banner svg { width: 20px; height: 20px; margin-right: 0.8rem; stroke: #4caf50; }
.offer-banner .chevron-right { margin-left: auto; stroke: #ccc; }

.tax-info {
    color: #777;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-family: 'Outfit', sans-serif;
}
.tax-info svg { width: 16px; height: 16px; stroke: #999; }

.trust-badges {
    background: #fdfdfd;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
    border: 1px solid #eee;
    font-family: 'Outfit', sans-serif;
}
.trust-icons-row {
    display: flex;
    justify-content: space-around;
    padding: 1.5rem 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}
.trust-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #111;
    flex: 1 1 25%;
    min-width: 90px;
}
.trust-icon {
    width: 40px; height: 40px; background: #fff; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; font-weight: bold; border: 1px solid #eee;
    color: #333;
}
.delivery-time {
    background: #e9e9e9;
    text-align: center;
    padding: 0.8rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
}

.whatsapp-btn-large {
    background-color: #25D366; /* WhatsApp Green */
    color: #fff;
    border: none;
    padding: 1.2rem;
    font-size: 1.2rem;
    font-weight: bold;
    font-family: 'Outfit', sans-serif;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

.whatsapp-btn-large:hover {
    background-color: #1EBE5D;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(37, 211, 102, 0.4);
    color: #fff;
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Customer Feedback Section */
.feedback-section {
    padding: 3rem 1.5rem;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.feedback-section h2 {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-dark);
}

/* Review Carousel */
.review-carousel {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    position: relative;
}

.review-slides {
    position: relative;
    width: 100%;
}

.review-slide {
    display: none;
    flex-direction: column;
}

.review-slide.active {
    display: flex;
}

.review-video-wrapper {
    width: 100%;
    aspect-ratio: 9/16;
    background: #000;
    overflow: hidden;
}

.review-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.review-info {
    padding: 1.2rem 1.5rem 1rem;
    text-align: left;
}

.reviewer-name-new {
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    color: #111;
    margin-bottom: 0.3rem;
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.stars {
    color: #f5a623;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.review-date {
    font-size: 0.8rem;
    color: #999;
    font-family: 'Outfit', sans-serif;
}

.review-text {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
    font-style: italic;
    font-family: 'Lora', serif;
}

.review-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem 1.5rem;
    gap: 1rem;
    background: #fff;
}

.review-arrow {
    background: #f0f0f0;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    transition: background 0.2s;
    flex-shrink: 0;
    line-height: 1;
}

.review-arrow:hover {
    background: var(--color-gold-light);
}

.review-dots {
    display: flex;
    gap: 0.4rem;
    flex: 1;
    justify-content: center;
    flex-wrap: wrap;
}

.review-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.review-dot.active {
    background: var(--color-gold);
    transform: scale(1.3);
}

.reviewer-name {
    font-weight: 600;
    color: var(--color-dark);
    font-family: 'Cinzel', serif;
}

/* Responsive */
@media (max-width: 1024px) {
    .products-grid {
        gap: 1rem;
    }
}

@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-logo {
        margin: 0 auto 1.5rem;
    }
    .product-detail-section {
        grid-template-columns: 1fr;
    }
    .reviews-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    /* Hero: full screen, centered content */
    .hero {
        padding: 0;
    }
    .slider-container {
        aspect-ratio: 16 / 10;
        border-radius: 0;
    }
    .petal {
        display: none;
    }
    .hero-content {
        padding: 0 1.5rem;
    }
    /* Scale down petals on mobile */
    .petal-1 { width: 70px; height: 70px; }
    .petal-2 { width: 90px; height: 90px; }
    .petal-3 { width: 50px; height: 50px; }
    .petal-4 { width: 60px; height: 60px; }
    .petal-5 { width: 55px; height: 55px; }

    /* Logo */
    .logo-image {
        max-height: 100px;
    }
    .logo-placeholder {
        padding: 0.5rem 1rem;
    }
    .header {
        padding: 1rem;
    }

    /* Products: keep 2-column grid on mobile */
    .products-section {
        padding: 3rem 1rem 2rem;
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    .product-title {
        font-size: 0.78rem;
        padding: 0.5rem 0.5rem 0.2rem;
    }
    .product-code {
        font-size: 0.85rem;
        padding: 0 0.5rem 0.2rem;
    }
    .price-row {
        padding: 0 0.5rem 0.2rem;
        gap: 0.3rem;
        flex-wrap: wrap;
    }
    .current-price {
        font-size: 0.9rem;
    }
    .original-price {
        font-size: 0.7rem;
    }
    .discount-text {
        font-size: 0.72rem;
        padding: 0 0.5rem 0.5rem;
    }
    .discount-badge {
        font-size: 0.55rem;
        padding: 3px 5px;
    }
    .cart-btn {
        width: 30px;
        height: 30px;
    }
    .cart-btn svg {
        width: 15px;
        height: 15px;
    }
    .view-all-btn {
        padding: 0.75rem 2rem;
        font-size: 0.9rem;
    }

    /* Instagram */
    .insta-banner {
        padding: 3rem 1.5rem;
    }
    .insta-banner h2 {
        font-size: 1.8rem;
    }
    .insta-banner p {
        font-size: 1rem;
    }

    /* Footer */
    .footer {
        padding: 3rem 1.5rem 1.5rem;
    }
    .footer-content {
        gap: 2rem;
    }

    /* Product detail pages */
    .product-detail-section {
        padding: 0 0 1.5rem;
        gap: 2rem;
    }
    .product-detail-image-wrapper {
        height: auto;
        max-height: 60vh;
        border-radius: 0;
    }
    .product-media-slider-container {
        border-radius: 0;
    }
    .product-info {
        padding: 0 1.5rem;
    }
    .product-info h1 {
        font-size: 2rem;
    }
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    .feedback-section {
        padding: 3rem 1rem;
    }
}

@media (max-width: 400px) {
    .products-grid {
        gap: 0.5rem;
    }
    .product-title {
        font-size: 0.7rem;
    }
    .product-code {
        font-size: 0.8rem;
    }
    .current-price {
        font-size: 0.85rem;
    }
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.floating-whatsapp:hover {
    background-color: #1EBE5D;
    transform: scale(1.1) translateY(-5px);
    color: white;
}

.floating-whatsapp svg {
    width: 35px;
    height: 35px;
    fill: currentColor;
}

@media (max-width: 768px) {
    .floating-whatsapp {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    .floating-whatsapp svg {
        width: 28px;
        height: 28px;
    }
}

.back-btn {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 100;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}
.back-btn:hover {
    background: #fff;
    transform: scale(1.1);
}
.back-btn svg {
    width: 24px;
    height: 24px;
}

/* Swiping Reviews Grid for inner pages */
.reviews-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.5rem;
    padding: 1rem 0.5rem;
    scrollbar-width: none;
}
.reviews-grid::-webkit-scrollbar {
    display: none;
}
.review-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
@media (min-width: 768px) {
    .reviews-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr) !important;
        overflow-x: visible;
        padding: 0;
    }
    .review-card {
        flex: none;
        scroll-snap-align: none;
    }
}

/* Review Video Watermark */
.review-video-wrapper {
    position: relative;
}
.review-video-wrapper::after {
    content: '';
    position: absolute;
    top: 15px;
    right: 15px;
    width: 60px;
    height: 60px;
    background: url('images/logo.png') no-repeat center center;
    background-size: contain;
    opacity: 0.6;
    pointer-events: none;
    z-index: 100;
}
