/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    
}

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

/* Header */
.header {
    background: #ff6b35;
    color: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header.hidden {
    transform: translateY(-100%);
}

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

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    background: rgba(255,255,255,0.2);
    color: #fff;
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
}
.menu-toggle:hover { background: rgba(255,255,255,0.3); }

/* Responsive dropdown nav */
@media (max-width: 768px) {
    .header-content { position: relative; display: grid; grid-template-columns: 1fr auto auto; align-items: center; }
    .menu-toggle { display: block; justify-self: end; }
    .cart-icon { justify-self: center; }
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 20px;
        right: 20px;
        background: #ff6b35;
        border-radius: 12px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        padding: 8px;
        flex-direction: column;
        gap: 4px;
        z-index: 1001;
    }
    .nav.open { display: flex; }
    .nav a {
        color: #fff;
        padding: 10px 12px;
        margin: 0;
        border-radius: 8px;
    }
    .nav a:hover { background: rgba(255,255,255,0.15); }
}
.logo {
    font-size: 24px;
    font-weight: bold;
}

.cart-icon {
    position: relative;
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    padding: 10px 15px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

.cart-icon:hover {
    background: rgba(255,255,255,0.3);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #fff;
    color: #ff6b35;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

/* Main Content */
main {
    margin-top: 80px;
}

/* Timer Banner */
.timer-banner {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    text-align: center;
    padding: 20px;
}

.timer-content h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.timer-unit {
    text-align: center;
}

.timer-number {
    font-size: 36px;
    font-weight: bold;
    display: block;
    background: rgba(255,255,255,0.2);
    padding: 10px 15px;
    border-radius: 8px;
    min-width: 60px;
}

.timer-label {
    font-size: 12px;
    margin-top: 5px;
    opacity: 0.9;
}

.cta-button {
    background: white;
    color: #ff6b35;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #fff5f0, #ffe8d6);
    padding: 60px 0;
    text-align: center;
    scroll-margin-top: 80px;
}

.hero h1 {
    font-size: 48px;
    color: #ff6b35;
    margin-bottom: 20px;
}

.hero-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.benefit {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.benefit-icon {
    font-size: 24px;
    margin-bottom: 10px;
}

.price-highlight {
    font-size: 36px;
    color: #ff6b35;
    font-weight: bold;
    margin: 20px 0;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 24px;
    margin-right: 10px;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.benefits-section h2 {
    text-align: center;
    font-size: 36px;
    color: #333;
    margin-bottom: 60px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.benefit-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.benefit-card h3 {
    font-size: 24px;
    color: #ff6b35;
    margin-bottom: 15px;
}

.benefit-card p {
    color: #666;
    line-height: 1.8;
}

/* Products Section */
.products-section {
    padding: 80px 0;
}

.products-section h2 {
    text-align: center;
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 60px;
    font-size: 18px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    padding: 30px;
}

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

.product-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-info {
    padding: 25px;
}

.product-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
}

.product-description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.current-price {
    font-size: 24px;
    font-weight: bold;
    color: #ff6b35;
}

.original-price {
    font-size: 16px;
    color: #95a5a6;
    text-decoration: line-through;
}

.add-to-cart-btn {
    width: 100%;
    background: #ff6b35;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.add-to-cart-btn:hover {
    background: #e55a2b;
}

/* Special Offer Section */
.special-offer {
    background: #fff5f0;
    color: #333;
    padding: 64px 0;
    text-align: center;
}

.special-offer h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.offer-content {
    max-width: 600px;
    margin: 0 auto;
}

.offer-price {
    font-size: 48px;
    font-weight: bold;
    margin: 30px 0;
}

/* Video Section */
.video-section {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
    scroll-margin-top: 80px;
}

.video-placeholder {
    width: 100%;
    max-width: 800px;
    height: 450px;
    background: #333;
    border-radius: 16px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.review-text {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.review-author {
    font-weight: bold;
    color: #ff6b35;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    padding: 12px 16px;
    text-align: center;
    transform: translateY(0);
}

.sticky-cta.hide {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
}

.sticky-header {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.sticky-header::before,
.sticky-header::after {
    content: "💥";
    font-size: 14px;
}

.sticky-timer {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.sticky-timer-unit {
    text-align: center;
    background: rgba(255,255,255,0.15);
    border-radius: 8px;
    padding: 6px 8px;
    min-width: 45px;
}

.sticky-timer-number {
    font-size: 18px;
    font-weight: bold;
    display: block;
    line-height: 1;
}

.sticky-timer-label {
    font-size: 9px;
    margin-top: 2px;
    opacity: 0.9;
}

.sticky-benefits {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 12px;
    flex-wrap: wrap;
    font-size: 12px;
}

.sticky-benefits span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.sticky-benefits span::before {
    content: "✔";
    color: #27ae60;
    font-weight: bold;
}

@media (max-width: 768px) {
    .sticky-cta {
        padding: 12px 15px;
    }
    
    .sticky-header {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .sticky-timer {
        gap: 6px;
        margin-bottom: 10px;
    }
    
    .sticky-timer-unit {
        min-width: 35px;
        padding: 4px 6px;
    }
    
    .sticky-timer-number {
        font-size: 16px;
    }
    
    .sticky-benefits {
        font-size: 11px;
        gap: 10px;
        margin-bottom: 10px;
    }
}

/* Questions Section */
.questions-section {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.question-btn {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.question-btn:hover {
    background: #e55a2b;
}

/* Footer redesign */
.footer { background:#1f1f1f; color:#fff; padding:40px 0 24px; }
.footer-inner { display:grid; grid-template-columns: repeat(2, minmax(220px,1fr)); gap:24px; align-items:start; }
.footer-section h3 { color:#ff6b35; font-weight:600; margin-bottom:10px; }
.footer-section p, .footer-section a, .payment-details { color:#cfcfcf; }
.footer-section a { text-decoration:none; }
.footer-section a:hover { color:#ff6b35; }
.footer-bottom { border-top:1px solid #2e2e2e; margin-top:20px; padding-top:16px; text-align:center; color:#aaa; }
@media (max-width: 768px) { .footer-inner { grid-template-columns: 1fr; } }
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section h3 {
        margin-bottom: 10px;
        font-size: 18px;
    }
    
    .footer-bottom {
        padding-top: 15px;
        font-size: 14px;
    }
}

.footer-section h3 {
    margin-bottom: 15px;
    color: #ff6b35;
}

.footer-section p, .footer-section a {
    color: #ccc;
    text-decoration: none;
    line-height: 1.6;
}

.footer-section a:hover {
    color: #ff6b35;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 20px;
    text-align: center;
    color: #999;
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
}

.cart-header h3 {
    margin: 0;
    color: #333;
}

.close-cart {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    padding: 5px;
}

.cart-content {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.item-info h4 {
    margin: 0 0 5px 0;
    font-size: 14px;
    color: #333;
    line-height: 1.3;
}

.cart-item-price {
    color: #ff6b35;
    font-weight: bold;
    margin: 0;
}

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

.item-controls button {
    width: 30px;
    height: 30px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.item-controls button:hover {
    background: #f5f5f5;
}

.remove-btn {
    background: #ff4757 !important;
    color: white !important;
    border-color: #ff4757 !important;
}

.quantity {
    min-width: 20px;
    text-align: center;
    font-weight: bold;
}

.empty-cart {
    text-align: center;
    color: #666;
    font-style: italic;
    padding: 40px 20px;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    background: #f9f9f9;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: bold;
}

.total-breakdown {
    text-align: right;
}

.total-breakdown > div {
    margin-bottom: 5px;
}

.discount {
    color: #28a745;
    font-size: 14px;
}

.final-total {
    font-size: 18px;
    color: #ff6b35;
}

.checkout-btn {
    width: 100%;
    background: #ff6b35;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;
    transition: background 0.3s;
}

.checkout-btn:hover {
    background: #e55a2b;
}

.checkout-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* Notification */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #28a745;
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transform: translateX(400px);
    transition: transform 0.3s ease;
    z-index: 1001;
}

.notification.show {
    transform: translateX(0);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .timer {
        gap: 10px;
    }
    
    .timer-number {
        font-size: 24px;
        padding: 8px 12px;
        min-width: 50px;
    }
    
    .hero-benefits {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .cart-sidebar {
        width: 100vw;
        right: -100vw;
    }
    
    .cart-sidebar.open {
        right: 0;
    }
    
    .notification {
        right: 10px;
        left: 10px;
        transform: translateY(-100px);
    }
    
    .notification.show {
        transform: translateY(0);
    }
    
    .sticky-timer {
        gap: 10px;
    }
    
    .sticky-timer-number {
        font-size: 18px;
        padding: 6px 10px;
        min-width: 35px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .review-slide {
        flex: 0 0 100%; /* 1 slide on mobile */
    }
    
    .carousel-track {
        gap: 0;
    }
    
    .review-media {
        height: 300px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 24px;
    }
    
    .timer-number {
        font-size: 20px;
        padding: 6px 10px;
        min-width: 40px;
    }
    
    .price-highlight {
        font-size: 28px;
    }
    
    .products-section h2,
    .benefits-section h2 {
        font-size: 28px;
    }
    
    .benefit-card {
        padding: 25px;
    }
    
    .product-info {
        padding: 20px;
    }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .review-slide {
        flex: 0 0 calc(50% - 10px); /* 2 slides on tablet */
    }
}
.why-patches { padding: 60px 0; background: #f8f9fa; scroll-margin-top: 80px; }
.patches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}
.patch-benefit {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}
.benefit-icon .icon-placeholder {
    width: 64px;
    height: 64px;
    background: #ffe8d6;
    border-radius: 50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin: 0 auto 10px;
    color: #ff6b35;
}
.reviews { padding: 60px 0; scroll-margin-top: 80px; }
.reviews-placeholder {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.questions { padding: 60px 0; text-align: center; scroll-margin-top: 80px; }
.footer-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 20px;
}
.footer-links a { color:#fff; text-decoration:none; }
.footer-links a:hover { color:#3498db; }
.payment-info, .copyright { text-align:center; color:#fff; }
.mini-timer { display:inline-flex; gap:8px; margin-left:10px; }
.sticky-offer .sticky-text { color:#fff; }
.sticky-benefits { display:flex; gap:10px; margin:8px 0; }
.sticky-btn {
    background: #fff;
    color: #ff6b35;
    border: none;
    padding: 10px 18px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
}
.sticky-btn:hover { background: #f1f1f1; }


.why-patches { padding: 60px 0; background: #f8f9fa; scroll-margin-top: 80px; }
.patches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}
.patch-benefit {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}
.benefit-icon .icon-placeholder {
    width: 64px;
    height: 64px;
    background: #ffe8d6;
    border-radius: 50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin: 0 auto 10px;
    color: #ff6b35;
}
.reviews { padding: 60px 0; scroll-margin-top: 80px; }
.reviews-placeholder {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.questions { padding: 60px 0; text-align: center; scroll-margin-top: 80px; }
.footer-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 20px;
}
.footer-links a { color:#fff; text-decoration:none; }
.footer-links a:hover { color:#3498db; }
.payment-info, .copyright { text-align:center; color:#fff; }
.mini-timer { display:inline-flex; gap:8px; margin-left:10px; }
.sticky-offer .sticky-text { color:#fff; }
.sticky-benefits { display:flex; gap:10px; margin:8px 0; }
.sticky-btn {
    background: #fff;
    color: #ff6b35;
    border: none;
    padding: 10px 18px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
}
.sticky-btn:hover { background: #f1f1f1; }

/* Why-patches GIF icons */
.benefit-icon img { width: 100%; max-width: 200px; display:block; margin:0 auto 10px; border-radius:12px; box-shadow:0 6px 18px rgba(0,0,0,0.08); }

/* Hero image styling */
.hero-image img {
    width: 100%;
    display: block;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* Special offer image */
.offer-image img {
    width: 100%;
    max-width: 480px;
    display: block;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* Responsive YouTube embed */
.video-embed {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.video-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Media gallery */
.media-gallery {
    padding: 60px 0;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}
.gallery-grid img {
    width: 100%;
    display: block;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    background: #fff;
}

/* Reviews Carousel Styles */
.reviews-carousel {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.carousel-container {
    overflow: hidden;
    border-radius: 12px;
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.3s ease-in-out;
    gap: 20px;
}

.review-slide {
    flex: 0 0 calc(33.333% - 14px); /* 3 slides on desktop */
    min-width: 0;
}

.review-media {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.review-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.carousel-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-btn svg {
    color: #333;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.3s ease;
}

.carousel-dot.active {
    background: #ff6b6b;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .review-slide {
        flex: 0 0 100%; /* 1 slide on mobile */
    }
    
    .carousel-track {
        gap: 0;
    }
    
    .review-media {
        height: 300px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .review-slide {
        flex: 0 0 calc(50% - 10px); /* 2 slides on tablet */
    }
}
/* Hero layout restore */
.hero {
  padding: 64px 0;
}
.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  align-items: center;
}
.hero-text { text-align: left; }

/* Hero benefits list */
.benefits { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.benefit-item { display: flex; align-items: center; gap: 8px; font-weight: 600; }
.checkmark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px; border-radius: 50%;
  background: #ff6b35; color: #fff; font-weight: 700;
}

/* Hero price and CTA */
.price-section { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.old-price { color: #999; text-decoration: line-through; }
.new-price { color: #ff6b35; font-size: 24px; font-weight: 800; }
.cta-btn {
  background: #ff6b35; color: #fff; border: none; padding: 12px 18px;
  border-radius: 999px; font-weight: 700; cursor: pointer;
}
.cta-btn:hover { background: #e55a2b; }

/* Responsive tweaks */
@media (max-width: 768px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-text { text-align: center; }
  .price-section { justify-content: center; }
}

.footer-section h3 {
    margin-bottom: 15px;
    color: #ff6b35;
}

.footer-section p, .footer-section a {
    color: #ccc;
    text-decoration: none;
    line-height: 1.6;
}

.footer-section a:hover {
    color: #ff6b35;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 20px;
    text-align: center;
    color: #999;
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
}

.cart-header h3 {
    margin: 0;
    color: #333;
}

.close-cart {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    padding: 5px;
}

.cart-content {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.item-info h4 {
    margin: 0 0 5px 0;
    font-size: 14px;
    color: #333;
    line-height: 1.3;
}

.cart-item-price {
    color: #ff6b35;
    font-weight: bold;
    margin: 0;
}

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

.item-controls button {
    width: 30px;
    height: 30px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.item-controls button:hover {
    background: #f5f5f5;
}

.remove-btn {
    background: #ff4757 !important;
    color: white !important;
    border-color: #ff4757 !important;
}

.quantity {
    min-width: 20px;
    text-align: center;
    font-weight: bold;
}

.empty-cart {
    text-align: center;
    color: #666;
    font-style: italic;
    padding: 40px 20px;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    background: #f9f9f9;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: bold;
}

.total-breakdown {
    text-align: right;
}

.total-breakdown > div {
    margin-bottom: 5px;
}

.discount {
    color: #28a745;
    font-size: 14px;
}

.final-total {
    font-size: 18px;
    color: #ff6b35;
}

.checkout-btn {
    width: 100%;
    background: #ff6b35;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;
    transition: background 0.3s;
}

.checkout-btn:hover {
    background: #e55a2b;
}

.checkout-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* Notification */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #28a745;
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transform: translateX(400px);
    transition: transform 0.3s ease;
    z-index: 1001;
}

.notification.show {
    transform: translateX(0);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .timer {
        gap: 10px;
    }
    
    .timer-number {
        font-size: 24px;
        padding: 8px 12px;
        min-width: 50px;
    }
    
    .hero-benefits {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .cart-sidebar {
        width: 100vw;
        right: -100vw;
    }
    
    .cart-sidebar.open {
        right: 0;
    }
    
    .notification {
        right: 10px;
        left: 10px;
        transform: translateY(-100px);
    }
    
    .notification.show {
        transform: translateY(0);
    }
    
    .sticky-timer {
        gap: 10px;
    }
    
    .sticky-timer-number {
        font-size: 18px;
        padding: 6px 10px;
        min-width: 35px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .review-slide {
        flex: 0 0 100%; /* 1 slide on mobile */
    }
    
    .carousel-track {
        gap: 0;
    }
    
    .review-media {
        height: 300px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 24px;
    }
    
    .timer-number {
        font-size: 20px;
        padding: 6px 10px;
        min-width: 40px;
    }
    
    .price-highlight {
        font-size: 28px;
    }
    
    .products-section h2,
    .benefits-section h2 {
        font-size: 28px;
    }
    
    .benefit-card {
        padding: 25px;
    }
    
    .product-info {
        padding: 20px;
    }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .review-slide {
        flex: 0 0 calc(50% - 10px); /* 2 slides on tablet */
    }
}
/* Headings: less bold, black, larger spacing */
.section-title {
  color: #111;
  font-weight: 600;
  margin: 48px 0 24px;
}

h3, h4 {
  color: #111;
  font-weight: 600;
  margin: 20px 0 10px;
}

/* Optional: hero heading if present */
.hero h1 {
  color: #111;
  font-weight: 600;
}