/* GLOBAL BASE */
body {
    font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #ffffff;
    color: #000000;
    margin: 0;
    line-height: 1.6;
}

/* ============================================
   BANNER CAROUSEL (UNCHANGED)
   ============================================ */
.banner-carousel {
    background: linear-gradient(120deg, #ffffff 0%, #ffffff 55%, #e0f2f1 85%, #bbf7d0 100%);
    padding: 0;
    margin-top: 0;
    position: relative;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: center;
}

.carousel-slides {
    width: 100%;
    height: 100%;
}

.carousel-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
    display: block;
    opacity: 1;
}

.slide-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
}

.slide-text h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 16px;
    color: #000000;
}

.slide-text p {
    font-size: 1rem;
    color: #333333;
    margin-bottom: 24px;
    max-width: 420px;
    line-height: 1.6;
}

.slide-cta-group {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
}

.slide-btn {
    padding: 12px 32px;
    background: #22c55e;
    color: #ffffff;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 12px 24px rgba(34, 197, 94, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.slide-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(34, 197, 94, 0.45);
}

.slide-features {
    display: flex;
    gap: 16px;
}

.slide-feature-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #000000;
}

.slide-feature-item i {
    color: #16a34a;
}

.slide-image {
    display: flex;
    justify-content: center;
}

.slide-image img {
    max-width: 100%;
    max-height: 380px;
    border-radius: 20px;
    background: radial-gradient(circle at top left, #f8fafc, #e2e8f0);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.15);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.25s ease, transform 0.2s ease;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.05);
}

.carousel-prev {
    left: 16px;
}

.carousel-next {
    right: 16px;
}

.carousel-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.dot.active {
    background: #22c55e;
    transform: scale(1.3);
}

/* ============================================
   NEW: TRUST BAR
   ============================================ */
.trust-bar {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 20px 0;
}

.trust-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}

.trust-item i {
    font-size: 1.4rem;
    color: #22c55e;
}

.trust-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #000000;
}

/* ============================================
   NEW: PROBLEM-SOLUTION STATEMENT
   ============================================ */
.problem-solution {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    padding: 40px 0;
    text-align: center;
}

.problem-solution-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.problem-solution h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 12px;
}

.problem-solution p {
    font-size: 1.1rem;
    color: #333333;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ============================================
   PAGE SECTIONS
   ============================================ */
.page-section {
    padding: 56px 0;
    background: linear-gradient(120deg, #ffffff 0%, #ffffff 65%, #e0f2f1 92%, #bbf7d0 100%);
    border-top: 1px solid rgba(226, 232, 240, 0.9);
}

.page-section + .page-section {
    margin-top: 16px;
}

/* Inner containers */
.top-deals-inner,
.shop-category-inner,
.best-sellers-inner,
.why-trust-inner,
.reviews-inner,
.shop-model-inner,
.decision-helper-inner,
.protection-guide-inner,
.customer-setups-inner,
.common-questions-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   TOP DEALS SECTION (ENHANCED)
   ============================================ */
.top-deals {
    color: #000000;
}

.top-deals-header {
    text-align: center;
    margin-bottom: 24px;
}

.top-deals-header h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0 auto 8px;
    color: #000000;
}

.top-deals-header p {
    font-size: 1rem;
    color: #666666;
    margin: 0;
}

.top-deals-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 24px;
}

.deal-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    padding: 12px 8px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.deal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.15);
    border-color: #22c55e;
}

.deal-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border-radius: 12px;
    margin-bottom: 12px;
}

.deal-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.25s ease;
}

.deal-card:hover .deal-image-wrap img {
    transform: scale(1.06);
}

.urgency-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 4px 10px;
    background: rgba(239, 68, 68, 0.9);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 999px;
    z-index: 2;
}

.urgency-badge.hot {
    background: rgba(249, 115, 22, 0.9);
}

.deal-title {
    font-size: 0.98rem;
    font-weight: 500;
    margin: 10px 4px 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #000000;
}

.deal-price {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 4px;
    color: #16a34a;
}

/* ============================================
   SHOP BY CATEGORY (KEPT)
   ============================================ */
.shop-category {
    color: #000000;
}

.shop-category-header {
    text-align: center;
    margin-bottom: 24px;
}

.shop-category-header h2 {
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0 auto 12px;
    color: #000000;
}

.shop-category-header p {
    margin: 0 auto;
    font-size: 0.98rem;
    color: #666666;
}

.shop-category-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 20px;
}

.category-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
    padding: 18px 10px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    overflow: hidden;
}

.category-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at top right, rgba(34, 197, 94, 0.15), transparent 55%);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.15);
    border-color: #22c55e;
}

.category-card:hover::after {
    opacity: 1;
}

.category-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 999px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    overflow: hidden;
}

.category-icon-wrap img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    transition: transform 0.25s ease;
}

.category-card:hover .category-icon-wrap img {
    transform: scale(1.06);
}

.category-title {
    font-size: 0.98rem;
    font-weight: 500;
    margin: 4px 0 2px;
    text-align: center;
    color: #000000;
}

.category-subtitle {
    font-size: 0.86rem;
    margin: 0;
    text-align: center;
    color: #666666;
}

/* ============================================
   NEW: WHY TRUST US (ENHANCED)
   ============================================ */
.why-trust {
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
}

.why-trust-header {
    text-align: center;
    margin-bottom: 32px;
}

.why-trust-header h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 8px;
}

.why-trust-header p {
    font-size: 1rem;
    color: #666666;
    max-width: 700px;
    margin: 0 auto;
}

.why-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.trust-card {
    padding: 24px 20px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    transition: all 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.15);
    border-color: #22c55e;
}

.trust-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #16a34a 0%, #065f46 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    color: #ffffff;
}

.trust-icon i {
    font-size: 1.2rem;
}

.trust-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #000000;
    margin: 0 0 8px;
}

.trust-card p {
    font-size: 0.9rem;
    color: #333333;
    margin: 0;
    line-height: 1.5;
}

/* ============================================
   BEST SELLERS (ENHANCED)
   ============================================ */
.best-sellers {
    color: #000000;
}

.best-sellers-header {
    text-align: center;
    margin-bottom: 24px;
}

.best-sellers-header h2 {
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0 auto 8px;
    color: #000000;
}

.best-sellers-header p {
    margin: 0 auto;
    font-size: 0.98rem;
    color: #666666;
}

.best-sellers-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.best-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    border-radius: 18px;
    padding: 14px 14px 16px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    overflow: hidden;
}

.best-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #22c55e;
}

.best-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 14px;
    overflow: hidden;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.best-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.25s ease;
}

.best-card:hover .best-image-wrap img {
    transform: scale(1.05);
}

.best-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.5);
    color: #000000;
    font-size: 0.72rem;
    font-weight: 500;
    z-index: 2;
}

.verified-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    padding: 4px 8px;
    background: rgba(34, 197, 94, 0.95);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 500;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
    justify-content: center;
    z-index: 2;
}

.verified-badge i {
    font-size: 0.75rem;
}

.best-title {
    font-size: 1rem;
    font-weight: 500;
    margin: 12px 2px 4px;
    color: #000000;
}

.best-meta {
    font-size: 0.86rem;
    margin: 0 2px 6px;
    color: #666666;
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 2px;
    margin: 0 2px 8px;
}

.rating-stars i {
    font-size: 0.8rem;
    color: #fbbf24;
}

.rating-count {
    font-size: 0.8rem;
    color: #666666;
    margin-left: 6px;
}

.best-price {
    font-size: 0.98rem;
    font-weight: 600;
    margin: 0 2px;
    color: #16a34a;
}

/* ============================================
   REVIEWS SECTION (SIMPLIFIED)
   ============================================ */
.reviews-section {
    color: #000000;
}

.reviews-header {
    text-align: center;
    margin-bottom: 40px;
}

.reviews-header h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #000000;
    margin: 0 auto 12px;
}

.reviews-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.95rem;
}

.star-rating {
    color: #fbbf24;
    display: flex;
    gap: 2px;
}

.star-rating i {
    font-size: 1rem;
}

.rating-score {
    font-weight: 700;
    color: #000000;
    font-size: 1.1rem;
}

.reviews-count {
    color: #666666;
}

.reviews-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto 32px;
}

.reviews-slides {
    display: flex;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
    height: 300px;
}

.review-slide {
    flex: 0 0 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0 8px;
    height: 100%;
}

.review-slide.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
}

.review-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 18px;
    padding: 28px 24px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    flex-shrink: 0;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #22c55e;
    flex-shrink: 0;
}

.review-header h4 {
    margin: 0;
    color: #000000;
    font-size: 1rem;
    font-weight: 600;
    flex: 1;
}

.review-stars {
    display: flex;
    gap: 2px;
    margin-top: 2px;
}

.review-stars i {
    font-size: 0.85rem;
    color: #fbbf24;
}

.review-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 12px;
    font-style: italic;
    flex: 1;
}

.review-product {
    font-size: 0.9rem;
    color: #16a34a;
    font-weight: 600;
    align-self: flex-end;
    flex-shrink: 0;
}

.carousel-btn.review-prev,
.carousel-btn.review-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(34, 197, 94, 0.9);
    border: none;
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    z-index: 20;
}

.carousel-btn.review-prev {
    left: -25px;
}

.carousel-btn.review-next {
    right: -25px;
}

.carousel-btn.review-prev:hover,
.carousel-btn.review-next:hover {
    background: #22c55e;
    transform: translateY(-50%) scale(1.1);
}

.reviews-cta {
    text-align: center;
}

.reviews-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: transparent;
    color: #000000;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.reviews-view-all:hover {
    border-color: #22c55e;
    color: #22c55e;
}

/* ============================================
   NEW: COMMON QUESTIONS
   ============================================ */
.common-questions {
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
}

.common-questions-header {
    text-align: center;
    margin-bottom: 36px;
}

.common-questions-header h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 8px;
}

.common-questions-header p {
    font-size: 1rem;
    color: #666666;
}

.qa-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.qa-item {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.qa-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    border-color: #22c55e;
}

.qa-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #16a34a 0%, #065f46 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    color: #ffffff;
}

.qa-icon i {
    font-size: 1.2rem;
}

.qa-item h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #000000;
    margin: 0 0 10px;
}

.qa-item p {
    font-size: 0.9rem;
    color: #333333;
    margin: 0;
    line-height: 1.6;
}

/* ============================================
   PRICING PROMISE
   ============================================ */
.pricing-promise {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    text-align: center;
}

.pricing-promise-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.pricing-promise h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #000000;
}

.pricing-promise p {
    font-size: 1rem;
    color: #333333;
    max-width: 760px;
    margin: 0 auto 14px;
    line-height: 1.6;
}

/* ============================================
   NEW: FINAL CTA
   ============================================ */
.final-cta {
    background: linear-gradient(135deg, #000000 0%, #1f2937 100%);
    padding: 56px 0;
    text-align: center;
}

.final-cta-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.final-cta h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 28px;
}

.final-cta-features {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
}

.cta-feature i {
    font-size: 1.2rem;
    color: #22c55e;
}

.cta-feature span {
    font-size: 0.95rem;
}

.final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn.primary {
    background: #22c55e;
    color: #ffffff;
}

.cta-btn.primary:hover {
    background: #16a34a;
    transform: translateY(-2px);
}

.cta-btn.secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.cta-btn.secondary:hover {
    background: #ffffff;
    color: #000000;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .top-deals-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    
    .shop-category-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    
    .best-sellers-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .why-trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .qa-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .slide-content {
        grid-template-columns: 1fr;
        padding: 48px 24px;
        text-align: center;
    }
    
    .slide-text p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .slide-cta-group {
        justify-content: center;
    }
    
    .trust-bar-inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .carousel-btn {
        display: none;
    }
    
    .carousel-dots {
        bottom: 20px;
        gap: 12px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .dot.active {
        transform: scale(1.4);
    }
    
    .banner-carousel {
        min-height: 420px;
    }
    
    .slide-content {
        padding: 40px 20px 80px;
    }
    
    .slide-image {
        order: -1;
    }
    
    .slide-text h1 {
        font-size: 2rem;
    }
    
    .trust-bar-inner {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .problem-solution h2 {
        font-size: 1.6rem;
    }
    
    .top-deals-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }
    
    .shop-category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-trust-grid {
        grid-template-columns: 1fr;
    }
    
    .best-sellers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .final-cta-features {
        flex-direction: column;
        gap: 16px;
    }
    
    .final-cta-buttons {
        flex-direction: column;
    }
    
    .cta-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .slide-text h1 {
        font-size: 1.7rem;
    }
    
    .problem-solution h2 {
        font-size: 1.4rem;
    }
    
    .problem-solution p {
        font-size: 1rem;
    }
    
    .top-deals-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .shop-category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .best-sellers-grid {
        grid-template-columns: 1fr;
    }
    
    .bundle-card {
        padding: 20px 16px;
    }
    
    .final-cta h2 {
        font-size: 1.6rem;
    }
}