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

:root {
    --primary-color: #FF9900;
    --primary-dark: #E88B00;
    --secondary-color: #232F3E;
    --text-color: #0F1111;
    --text-light: #565959;
    --bg-light: #F7F8F8;
    --white: #FFFFFF;
    --border-color: #D5D9D9;
    --success-color: #067D62;
    --shadow: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-lg: 0 4px 16px rgba(0,0,0,0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

/* Scroll offset for fixed header */
section[id] {
    scroll-margin-top: 80px;
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo-img {
    height: 85px;
    width: auto;
    display: block;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.nav a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 80px 0;
    margin-top: 0;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
        "content image"
        "cta image";
    gap: 20px 60px;
    align-items: center;
}

.hero-content {
    grid-area: content;
    animation: fadeInLeft 0.8s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: end;
}

.hero-image {
    grid-area: image;
    grid-row: 1 / 3;
    animation: fadeInRight 0.8s ease;
    display: flex;
    align-items: center;
}

.hero-cta-wrapper {
    grid-area: cta;
    align-self: start;
}

.hero-cta-note {
    margin-top: 12px;
    font-size: 16px;
    color: #6b7280;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FF9900, #FF6600);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: fit-content;
    box-shadow: 0 4px 15px rgba(255, 153, 0, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.2rem;
    color: var(--secondary-color);
}

.highlight {
    color: var(--primary-color);
    display: block;
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.hero-rating .stars {
    color: var(--primary-color);
    font-size: 1.5rem;
    letter-spacing: 3px;
}

.hero-rating .rating-text {
    color: var(--text-color);
    font-size: 1.15rem;
    font-weight: 600;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.hero-benefits {
    list-style: none;
    margin-bottom: 2rem;
    padding: 0;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    padding: 20px 25px;
}

.hero-benefits li {
    font-size: 1.2rem;
    color: var(--text-color);
    padding: 10px 0;
    font-weight: 600;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.hero-benefits li:last-child {
    border-bottom: none;
}

/* Hero Checklist - Clean Minimal Design */
.hero-checklist {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 2rem;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.checklist-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.check-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
}

.check-text {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1.4;
}

@media (max-width: 768px) {
    .hero-checklist {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .check-text {
        font-size: 0.9rem;
    }
}

.price-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.2rem;
    padding: 15px 0;
}

.price-current {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--secondary-color);
}

.price-original {
    font-size: 1.5rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.price-save {
    background: #dc2626;
    color: white;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 700;
}

.hero-urgency {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fef3c7;
    border: 2px solid #f59e0b;
    padding: 14px 20px;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: #92400e;
}

.urgency-icon {
    font-size: 1.3rem;
}

.hero-cta-wrapper {
    margin-bottom: 1.5rem;
}

.hero-cta-box {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    border: 2px solid rgba(255, 153, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-urgency-banner {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 12px 20px;
    margin: -25px -25px 20px -25px;
    text-align: center;
    font-weight: 700;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    animation: pulse-bg 2s infinite;
}

.urgency-dot-hero {
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    animation: blink 1s infinite;
}

.hero-price-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px dashed #e5e7eb;
    flex-wrap: wrap;
}

.hero-price-main {
    text-align: left;
}

.hero-price-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.hero-price-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-price-current {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
}

.hero-price-original {
    font-size: 1.4rem;
    text-decoration: line-through;
    color: #9ca3af;
}

.hero-price-save {
    display: inline-block;
    margin-top: 8px;
    font-size: 0.95rem;
    color: white;
    font-weight: 700;
    background: linear-gradient(135deg, #10b981, #059669);
    padding: 5px 14px;
    border-radius: 20px;
}

.hero-coupon {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    padding: 18px 22px;
    border-radius: 14px;
    text-align: center;
    border: 2px dashed var(--primary-color);
    position: relative;
}

.hero-coupon::before {
    content: '✂️';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 0 8px;
    font-size: 1.2rem;
}

.coupon-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: #92400e;
    margin-bottom: 4px;
}

.coupon-code {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    letter-spacing: 2px;
}

.hero-buy-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 20px 30px;
    background: linear-gradient(135deg, var(--primary-color), #f97316);
    color: white;
    text-decoration: none;
    border-radius: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 153, 0, 0.4);
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
}

.hero-buy-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shine 2s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.hero-buy-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 153, 0, 0.5);
}

.buy-btn-main {
    font-size: 1.4rem;
    font-weight: 800;
}

.buy-btn-sub {
    font-size: 0.9rem;
    opacity: 0.95;
    margin-top: 4px;
}

/* Modern Amazon Button */
.amazon-btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    border: 1px solid transparent;
}

.amazon-btn-modern:hover {
    background: #ff9900;
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 153, 0, 0.35);
}

.amazon-logo {
    flex-shrink: 0;
}

.amazon-btn-text {
    line-height: 1.4;
    font-weight: 700;
}

.amazon-btn-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.amazon-btn-modern:hover .amazon-btn-arrow {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .amazon-btn-modern {
        padding: 14px 24px;
        font-size: 0.95rem;
        gap: 10px;
    }
}

.hero-trust-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-trust-row span {
    font-size: 0.9rem;
    color: var(--text-color);
    font-weight: 600;
}

.hero-timer-box {
    background: linear-gradient(135deg, #1e1e1e, #2d2d2d);
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    text-align: center;
    border: 2px solid #ef4444;
}

.hero-stock-warning {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: #dc2626;
    font-weight: 600;
}

.details-timer-box {
    background: linear-gradient(135deg, #1e1e1e, #2d2d2d);
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    text-align: center;
    border: 2px solid #ef4444;
}

.timer-unit-small {
    padding: 10px 15px;
    min-width: 60px;
}

.timer-unit-small .timer-number {
    font-size: 1.8rem;
}

.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--secondary-color);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-large {
    padding: 20px 50px;
    font-size: 1.3rem;
}

.amazon-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 700;
}

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

.discount-code {
    margin-top: 0.8rem;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
    text-align: center;
}

.discount-code strong {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--success-color);
    padding: 2px 6px;
    border-radius: 3px;
    background: rgba(6, 125, 98, 0.1);
    margin-left: 3px;
    letter-spacing: 0.5px;
}

.price-note {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
}

.trust-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.trust-badges span {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.1rem;
    background: rgba(6, 125, 98, 0.1);
    padding: 8px 14px;
    border-radius: 8px;
}

/* Image Gallery */
.image-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
    padding: 10px;
}

.gallery-item {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    cursor: zoom-in;
}

.details-gallery {
    max-width: 100%;
    gap: 25px;
}

.details-gallery .gallery-item {
    border-radius: 16px;
}

.product-placeholder {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-light);
}

/* About Section */
.about {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 153, 0, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(35, 47, 62, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.about-header {
    text-align: center;
    margin-bottom: 0.8rem;
    position: relative;
    z-index: 1;
}

.about-tagline {
    color: var(--secondary-color);
    font-size: 2.5rem;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 0;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.about-content-wrapper {
    position: relative;
    z-index: 1;
}

.about-intro-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.about-intro-content {
    padding-right: 20px;
}

.about-intro-content h3 {
    font-size: 2.5rem;
    margin-bottom: 0.3rem;
    margin-top: 0;
    color: var(--secondary-color);
    font-weight: 700;
    line-height: 1.2;
}

.intro-lead {
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--text-color);
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 1rem;
}

.intro-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-top: 0;
}

.about-intro-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-intro-image::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 16px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-intro-image:hover::before {
    opacity: 0.3;
}

.about-intro-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.about-intro-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.about-intro-image:hover img {
    transform: scale(1.02);
}

.about-intro-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 153, 0, 0.08) 0%, transparent 100%);
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.about-card:hover::before {
    transform: scaleX(1);
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.about-card:hover .card-icon {
    transform: scale(1.2) rotate(5deg);
}

.about-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.about-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
}

.highlight-card {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #3a4b5f 100%);
    border: none;
    position: relative;
}

.highlight-card::before {
    background: linear-gradient(90deg, var(--primary-color), #FFD700);
}

.highlight-card h4,
.highlight-card p {
    color: var(--white);
}

.highlight-card .card-icon {
    filter: brightness(0) invert(1);
}

.highlight-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(255, 153, 0, 0.3);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--bg-light);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

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

.feature-card {
    padding: 30px;
    background: rgba(249, 250, 251, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
}

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

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

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.features-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.features-image-item {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.features-image-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.features-image-item img {
    width: 100%;
    height: auto;
    display: block;
    cursor: zoom-in;
}

/* Details Section */
.details {
    padding: 80px 0;
    background: var(--white);
}

.details-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.details-image .product-placeholder {
    height: 400px;
}

.details-image .image-gallery {
    max-width: 100%;
}

.details-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.details-header {
    text-align: left;
}

.details-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), #FF6600);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.details-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.details-rating .stars {
    color: #ff9900;
    font-size: 1.4rem;
    letter-spacing: 2px;
}

.details-rating .rating-text {
    font-size: 1.2rem;
    color: var(--text-color);
    font-weight: 600;
}

.details-header h3 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    font-weight: 800;
}

.details-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.5;
}

.target-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.target-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--bg-light);
    padding: 18px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.target-card:hover {
    background: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.target-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.target-content strong {
    display: block;
    font-size: 1rem;
    color: var(--secondary-color);
    margin-bottom: 4px;
}

.target-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.4;
    margin: 0;
}

.details-cta {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid var(--primary-color);
}

.cta-price {
    margin-bottom: 15px;
}

.cta-price-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-price-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.cta-current {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
}

.cta-original {
    font-size: 1.3rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.details-cta .amazon-btn {
    width: 100%;
    justify-content: center;
    padding: 18px 30px;
    font-size: 1.2rem;
}

.cta-discount {
    margin-top: 12px;
    font-size: 0.95rem;
    color: var(--text-light);
}

.cta-discount strong {
    color: var(--success-color);
    background: rgba(6, 125, 98, 0.1);
    padding: 3px 8px;
    border-radius: 4px;
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.cta-trust span {
    font-size: 0.9rem;
    color: var(--success-color);
    font-weight: 600;
}

/* Social Proof Bar */
.social-proof-bar {
    display: flex;
    justify-content: space-between;
    background: linear-gradient(135deg, var(--secondary-color), #3a4b5f);
    padding: 20px 25px;
    border-radius: 12px;
    color: white;
}

.proof-item {
    text-align: center;
}

.proof-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
}

.proof-label {
    font-size: 0.85rem;
    opacity: 0.9;
}

.proof-text {
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
}

.disclaimer-text {
    font-size: 0.8rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 12px;
    line-height: 1.5;
    font-style: italic;
}

/* Customer Note - Simple Text Design */
.customer-note {
    text-align: center;
    padding: 20px 0;
    margin: 20px 0;
    border-top: 1px solid rgba(0,0,0,0.08);
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.customer-note p {
    font-size: 0.9rem;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

.customer-note .note-disclaimer {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 10px;
    font-style: italic;
}

/* Guarantee Box */
.guarantee-box {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border: 2px solid var(--success-color);
    border-radius: 12px;
    padding: 20px;
}

.guarantee-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.guarantee-icon {
    font-size: 1.5rem;
}

.guarantee-header strong {
    font-size: 1.1rem;
    color: var(--success-color);
}

.guarantee-box p {
    margin: 0;
    font-size: 0.95rem;
    color: #065f46;
    line-height: 1.5;
}

/* Amazon Info Box */
.amazon-info-box {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 20px 24px;
    text-align: center;
}

.amazon-info-box h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 0 12px 0;
}

.amazon-info-box p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0 0 8px 0;
}

.amazon-info-box p:last-child {
    margin-bottom: 0;
}

/* Urgency Banner */
.urgency-banner {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    padding: 12px 15px;
    border-radius: 8px 8px 0 0;
    margin: -25px -25px 20px -25px;
    text-align: center;
    font-weight: 700;
    font-size: 0.95rem;
    animation: pulse-bg 2s infinite;
}

@keyframes pulse-bg {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.9; }
}

/* Save Badge */
.cta-save {
    background: var(--success-color);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 700;
}

/* Stock Warning */
.stock-warning {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    padding: 10px 15px;
    border-radius: 8px;
    margin-top: 12px;
    text-align: center;
}

.stock-warning span {
    color: #92400e;
    font-weight: 700;
    font-size: 0.95rem;
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
    background: var(--bg-light);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.review-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-left-width: 6px;
}

.stars {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.review-text {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.reviewer {
    color: var(--text-light);
    font-weight: 500;
}

.reviews-disclaimer {
    text-align: center;
    font-size: 14px;
    color: #6b7280;
    margin-top: 30px;
    line-height: 1.6;
}

.reviews-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.reviews-image-item {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reviews-image-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.reviews-image-item img {
    width: 100%;
    height: auto;
    display: block;
    cursor: zoom-in;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: var(--white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: var(--white);
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    text-align: left;
    transition: background 0.3s;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 25px 20px;
    color: var(--text-light);
    line-height: 1.7;
}

.faq-disclaimer {
    text-align: center;
    font-size: 14px;
    color: #6b7280;
    margin-top: 40px;
    line-height: 1.6;
}

.faq-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.faq-image-item {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-image-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.faq-image-item img {
    width: 100%;
    height: auto;
    display: block;
    cursor: zoom-in;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    padding: 80px 0;
    text-align: center;
    color: var(--text-color);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255, 153, 0, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(99, 102, 241, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.final-offer {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.offer-badge-wrapper {
    margin-bottom: 15px;
}

.offer-badge {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    padding: 8px 20px;
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.3;
}

.offer-rating {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.offer-rating .stars {
    color: #ff9900;
    font-size: 1.3rem;
    letter-spacing: 2px;
}

.offer-rating .rating-text {
    font-size: 1.15rem;
    color: var(--text-light);
    font-weight: 500;
}

.offer-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.offer-trust-text {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 500;
    margin-bottom: 2rem;
}

.offer-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 40px;
    padding: 25px 40px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.stat-icon {
    font-size: 1.5rem;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.offer-box {
    background: white;
    border-radius: 24px;
    padding: 35px;
    margin-bottom: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.offer-box-simple {
    text-align: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: none;
    padding: 40px 50px;
    position: relative;
    overflow: hidden;
}

.offer-box-simple::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff9900, #ffb84d, #ff9900);
}

.offer-box-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 25px 0;
    letter-spacing: 0.02em;
}

.offer-expect-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 25px auto;
    max-width: 500px;
}

.offer-expect-list li {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    padding: 12px 20px;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    border-left: 3px solid #ff9900;
    text-align: left;
    transition: all 0.3s ease;
}

.offer-expect-list li:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(5px);
}

.offer-box-note {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    line-height: 1.6;
}

.offer-box-simple .amazon-btn-modern {
    background: #ff9900;
    color: #1a1a1a;
    padding: 18px 40px;
    font-size: 1.1rem;
    box-shadow: 0 8px 30px rgba(255, 153, 0, 0.4);
}

.offer-box-simple .amazon-btn-modern:hover {
    background: #ffb84d;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 153, 0, 0.5);
}

.coupon-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding: 12px 24px;
    background: rgba(255, 153, 0, 0.15);
    border: 2px dashed #ff9900;
    border-radius: 10px;
}

.coupon-badge .coupon-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.coupon-badge .coupon-code {
    font-size: 1.2rem;
    font-weight: 800;
    color: #ffdd00;
    letter-spacing: 0.05em;
}

.coupon-badge .coupon-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.copy-btn {
    padding: 6px 14px;
    background: #ffffff;
    color: #1a1a1a;
    border: none;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.copy-btn:hover {
    background: #f0f0f0;
}

.copy-btn.copied {
    background: #22c55e;
    color: white;
}

.offer-guarantees-simple {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    background: transparent;
    padding: 0;
    box-shadow: none;
}

.offer-guarantees-simple span {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
}

.offer-amazon-note {
    text-align: center;
    font-size: 13px;
    color: #9ca3af;
    margin-top: 15px;
}

.offer-urgency-banner {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    padding: 14px 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
    text-align: center;
    animation: pulse-bg 2s infinite;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.offer-price-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.offer-price-left {
    text-align: center;
}

.offer-label {
    display: block;
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.offer-price-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.offer-price-current {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--secondary-color);
}

.offer-price-original {
    font-size: 1.5rem;
    text-decoration: line-through;
    color: #9ca3af;
}

.offer-savings {
    display: inline-block;
    margin-top: 10px;
    font-size: 1rem;
    color: white;
    font-weight: 700;
    background: linear-gradient(135deg, #10b981, #059669);
    padding: 6px 16px;
    border-radius: 20px;
}

.offer-price-right {
    text-align: center;
}

.extra-discount {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    padding: 20px 25px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    border: 2px dashed var(--primary-color);
}

.extra-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #92400e;
}

.extra-code {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--secondary-color);
    letter-spacing: 3px;
}

.offer-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 480px;
    margin: 0 auto 20px;
    padding: 22px 45px;
    font-size: 1.4rem;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-color), #f97316);
    color: white;
    box-shadow: 0 8px 30px rgba(255, 153, 0, 0.4);
    transition: all 0.3s ease;
    border: none;
}

.offer-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 153, 0, 0.5);
    background: linear-gradient(135deg, #f97316, var(--primary-color));
}

.btn-text {
    font-weight: 800;
    color: white;
}

.btn-subtext {
    font-size: 0.9rem;
    opacity: 0.95;
    margin-top: 4px;
    color: white;
}

.offer-urgency {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
    color: #dc2626;
    background: #fef2f2;
    padding: 12px 20px;
    border-radius: 10px;
    border: 1px solid #fecaca;
}

.urgency-dot {
    width: 10px;
    height: 10px;
    background: #ef4444;
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.offer-guarantees {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--text-color);
    font-weight: 500;
}

.guarantee-item .guarantee-icon {
    font-size: 1.3rem;
}

.offer-final-note {
    font-size: 1.15rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    opacity: 0.8;
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

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

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

.footer-contact p {
    opacity: 0.8;
}

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

/* Image Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s;
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    cursor: zoom-out;
    animation: zoomIn 0.3s;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #f1f1f1;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10000;
}

.modal-close:hover,
.modal-close:focus {
    color: var(--primary-color);
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #f1f1f1;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 3rem;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.modal-nav:hover {
    background: rgba(0, 0, 0, 0.8);
    color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.modal-prev {
    left: 30px;
}

.modal-next {
    right: 30px;
}

.slide img {
    cursor: zoom-in;
}

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

@keyframes zoomIn {
    from { transform: scale(0.8); }
    to { transform: scale(1); }
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero .container {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .hero-content {
        order: 1;
    }

    .hero-image {
        order: 2;
    }

    .hero-cta-wrapper {
        order: 3;
    }

    .details-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .nav {
        display: none;
    }

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

    .features-grid {
        grid-template-columns: 1fr;
    }

    .features-images {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .reviews-images {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }

    .about-tagline {
        font-size: 2rem;
        line-height: 1.2;
    }

    .about-intro-section {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 3rem;
    }

    .about-intro-content {
        padding-right: 0;
    }

    .about-intro-content h3 {
        font-size: 2rem;
        margin-bottom: 0.4rem;
        line-height: 1.2;
    }

    .intro-lead {
        font-size: 1.2rem;
    }

    .intro-description {
        font-size: 1rem;
    }

    .about-header {
        margin-bottom: 1rem;
    }

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

@media (max-width: 640px) {
    .container {
        padding: 0 15px;
    }

    .header {
        padding: 0.6rem 0;
    }

    .logo-img {
        height: 68px;
    }

    .hero {
        padding: 30px 0;
    }

    .about {
        padding: 40px 0;
    }

    .about-header {
        margin-bottom: 0.5rem;
    }

    .about-tagline {
        font-size: 1.3rem;
        margin-bottom: 0;
        line-height: 1.3;
    }

    .about-intro-section {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 2rem;
    }

    .about-intro-content {
        padding-right: 0;
        text-align: left;
    }

    .about-intro-content h3 {
        font-size: 1.6rem;
        margin-bottom: 0.2rem;
        margin-top: 0;
        line-height: 1.3;
    }

    .intro-lead {
        font-size: 1rem;
        margin-top: 0;
    }

    .intro-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .about-intro-image {
        border-radius: 12px;
    }

    .about-intro-image img {
        aspect-ratio: unset;
        object-fit: contain;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .about-card {
        padding: 25px 18px;
    }

    .about-card h4 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .about-card p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .card-icon {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .features {
        padding: 40px 0;
    }

    .features-grid {
        gap: 20px;
    }

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

    .details {
        padding: 40px 0;
    }

    .reviews {
        padding: 40px 0;
    }

    .reviews-grid {
        gap: 20px;
    }

    .faq {
        padding: 40px 0;
    }

    .cta-section {
        padding: 60px 0;
    }

    .cta-section h2 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }

    .offer-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .offer-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 15px;
        padding: 20px;
        margin-bottom: 25px;
    }

    .stat-item {
        flex: 1;
        min-width: 80px;
    }

    .stat-value {
        font-size: 1.4rem;
    }

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

    .offer-box {
        padding: 20px;
        border-radius: 16px;
    }

    .offer-timer-box {
        padding: 15px 20px;
    }

    .timer-label {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }

    .timer-unit {
        padding: 12px 15px;
        min-width: 65px;
    }

    .timer-number {
        font-size: 2rem;
    }

    .timer-colon {
        font-size: 2rem;
    }

    .offer-price-section {
        flex-direction: column;
        gap: 20px;
    }

    .offer-price-current {
        font-size: 2.5rem;
    }

    .offer-price-original {
        font-size: 1.2rem;
    }

    .offer-savings {
        font-size: 0.9rem;
        padding: 5px 12px;
    }

    .extra-discount {
        padding: 15px 20px;
    }

    .extra-code {
        font-size: 1.3rem;
    }

    .offer-btn {
        padding: 18px 30px;
        font-size: 1.1rem;
        border-radius: 12px;
    }

    .btn-subtext {
        font-size: 0.8rem;
    }

    .offer-urgency {
        font-size: 0.9rem;
        padding: 10px 15px;
    }

    .offer-guarantees {
        flex-direction: column;
        gap: 12px;
        align-items: center;
        padding: 15px;
    }

    .guarantee-item {
        font-size: 0.9rem;
    }

    .offer-final-note {
        font-size: 0.95rem;
    }

    .hero-badge {
        font-size: 0.85rem;
        padding: 8px 14px;
        margin-bottom: 1rem;
    }

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

    .hero-rating {
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 1rem;
        padding: 10px 0;
    }

    .hero-rating .stars {
        font-size: 1.2rem;
    }

    .hero-rating .rating-text {
        font-size: 1rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
        margin-bottom: 1.2rem;
    }

    .hero-benefits {
        margin-bottom: 1.5rem;
        padding: 15px 18px;
    }

    .hero-benefits li {
        font-size: 1rem;
        padding: 8px 0;
    }

    .price-box {
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 1rem;
        padding: 10px 0;
    }

    .price-current {
        font-size: 2rem;
    }

    .price-original {
        font-size: 1.2rem;
    }

    .price-save {
        font-size: 0.9rem;
        padding: 6px 10px;
    }

    .hero-cta-box {
        padding: 20px;
        border-radius: 16px;
    }

    .cta-urgency-banner {
        margin: -20px -20px 15px -20px;
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    .hero-price-section {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        text-align: center;
    }

    .hero-price-main {
        text-align: center;
    }

    .hero-price-current {
        font-size: 2.4rem;
    }

    .hero-price-original {
        font-size: 1.2rem;
    }

    .hero-price-save {
        font-size: 0.85rem;
        padding: 4px 12px;
    }

    .hero-coupon {
        padding: 14px 18px;
    }

    .coupon-code {
        font-size: 1.3rem;
    }

    .hero-buy-btn {
        padding: 16px 25px;
    }

    .buy-btn-main {
        font-size: 1.15rem;
    }

    .buy-btn-sub {
        font-size: 0.8rem;
    }

    .hero-trust-row {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }

    .hero-trust-row span {
        font-size: 0.85rem;
    }

    .hero-timer-box {
        padding: 12px 15px;
    }

    .hero-timer-box .timer-unit {
        padding: 10px 12px;
        min-width: 55px;
    }

    .hero-timer-box .timer-number {
        font-size: 1.6rem;
    }

    .hero-timer-box .timer-colon {
        font-size: 1.6rem;
    }

    .details-timer-box {
        padding: 12px 15px;
    }

    .timer-unit-small {
        padding: 8px 12px;
        min-width: 50px;
    }

    .timer-unit-small .timer-number {
        font-size: 1.4rem;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }

    .btn-large {
        padding: 14px 30px;
        font-size: 1rem;
    }

    .feature-card {
        padding: 20px;
    }

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

    .feature-card h3 {
        font-size: 1.15rem;
        margin-bottom: 0.6rem;
    }

    .feature-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .review-card {
        padding: 20px;
    }

    .stars {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .review-text {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
    }

    .reviewer {
        font-size: 0.85rem;
    }

    .details-info {
        gap: 20px;
    }

    .details-header h3 {
        font-size: 1.6rem;
    }

    .details-subtitle {
        font-size: 1rem;
    }

    .target-cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .target-card {
        padding: 14px;
    }

    .target-icon {
        font-size: 1.5rem;
    }

    .target-content strong {
        font-size: 0.95rem;
    }

    .target-content p {
        font-size: 0.85rem;
    }

    .details-cta {
        padding: 20px;
    }

    .cta-current {
        font-size: 2rem;
    }

    .cta-original {
        font-size: 1.1rem;
    }

    .details-cta .amazon-btn {
        padding: 14px 25px;
        font-size: 1rem;
    }

    .cta-trust {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }

    .social-proof-bar {
        flex-direction: column;
        gap: 15px;
        padding: 18px 20px;
    }

    .proof-number {
        font-size: 1.5rem;
    }

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

    .guarantee-box {
        padding: 15px;
    }

    .guarantee-header strong {
        font-size: 1rem;
    }

    .guarantee-box p {
        font-size: 0.9rem;
    }

    .urgency-banner {
        font-size: 0.85rem;
        padding: 10px 12px;
        margin: -20px -20px 15px -20px;
    }

    .cta-save {
        font-size: 0.8rem;
        padding: 5px 10px;
    }

    .stock-warning span {
        font-size: 0.85rem;
    }

    .faq-list {
        padding: 0;
    }

    .faq-item {
        margin-bottom: 12px;
    }

    .faq-question {
        padding: 14px 18px;
        font-size: 0.95rem;
    }

    .faq-answer p {
        padding: 0 18px 14px;
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .faq-toggle {
        font-size: 1.3rem;
    }

    .faq-images {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }

    .product-placeholder {
        height: 300px;
    }

    .image-gallery {
        gap: 15px;
        padding: 5px;
    }

    .benefits-gallery {
        max-height: 450px;
    }

    .gallery-item {
        border-radius: 8px;
    }

    .trust-badges {
        flex-direction: column;
        gap: 8px;
        margin-top: 1rem;
    }

    .trust-badges span {
        font-size: 0.85rem;
    }

    .footer {
        padding: 40px 0 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 25px;
    }

    .footer-brand h3 {
        font-size: 1.5rem;
    }

    .footer-brand p {
        font-size: 0.9rem;
    }

    .footer-links h4,
    .footer-contact h4 {
        font-size: 1rem;
    }

    .footer-links a,
    .footer-contact p {
        font-size: 0.9rem;
    }

    .footer-bottom p {
        font-size: 0.85rem;
    }

    .price-note {
        font-size: 0.85rem;
    }

    .limited-offer {
        font-size: 0.95rem;
        margin-top: 1rem;
    }

    .hero-cta {
        margin-bottom: 1rem;
    }

    .modal-close {
        top: 10px;
        right: 15px;
        font-size: 40px;
    }

    .modal-content {
        max-width: 95%;
        max-height: 85vh;
    }

    .modal-nav {
        width: 50px;
        height: 50px;
        font-size: 2.5rem;
    }

    .modal-prev {
        left: 10px;
    }

    .modal-next {
        right: 10px;
    }

    .discount-code {
        font-size: 0.85rem;
    }

    .discount-code strong {
        font-size: 0.9rem;
    }

    .discount-code-cta {
        font-size: 0.95rem;
    }

    .discount-code-cta strong {
        font-size: 1rem;
    }
}

