/* ═══════════════════════════════════════
   PET SET GO — PREMIUM AQUA THEME
═══════════════════════════════════════ */
:root {
    --primary: #0a4a6b;
    --secondary: #1795b1;
    --bg: #ffffff;
    --hero-stripes: #dcf2f7;
    --text-dark: #222222;
    --text-light: #555555;
    --white: #ffffff;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Nunito', sans-serif;
    background: var(--bg);
    color: var(--text-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ═══════════════════════════════════════
   INTRO — Text Zoom
═══════════════════════════════════════ */
#intro-overlay {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#intro-text {
    font-family: 'Fredoka', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 4px;
    text-transform: uppercase;
    will-change: transform, opacity;
    text-align: center;
    line-height: 1.2;
}

/* ═══════════════════════════════════════
   HEADER 
═══════════════════════════════════════ */
header {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    padding: 2rem 5vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
}

.left-nav, .right-nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    flex: 1;
}

.right-nav { justify-content: flex-end; }

header a {
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

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

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    text-align: center;
    text-decoration: none;
}

.logo-icon { display: none; }

.logo-text {
    font-family: 'Fredoka', cursive;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.cart-icon { color: var(--text-dark); display: flex; align-items: center; }

/* ═══════════════════════════════════════
   HERO BANNER
═══════════════════════════════════════ */
#hero-banner {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding-top: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(to bottom, #ffffff 0%, #e6f7fa 100%);
}

.hero-bg-stripes {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 80px,
        rgba(255, 255, 255, 0.4) 80px,
        rgba(255, 255, 255, 0.4) 160px
    );
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.hero-content p {
    font-family: 'Nunito', sans-serif;
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 650px;
    margin-inline: auto;
    line-height: 1.6;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--secondary);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    padding: 0.9rem 2rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(23, 149, 177, 0.3);
}

.btn-primary:hover {
    background: #11788f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(23, 149, 177, 0.4);
}

.buy-now-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(23, 149, 177, 0.4);
}

/* ═══════════════════════════════════════
   PDP PRODUCT PAGE
═══════════════════════════════════════ */
.pdp-body {
    background-color: #fcfdfe;
    padding-top: 100px;
}
.product-pdp {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}
.pdp-top-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
}
@media (max-width: 900px) {
    .pdp-top-grid {
        grid-template-columns: 1fr;
    }
}
.main-image-box {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    margin-bottom: 1.5rem;
    text-align: center;
}
.main-image-box img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}
.thumbnail-list {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}
.thumbnail-list .thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid transparent;
    cursor: pointer;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: all 0.3s;
}
.thumbnail-list .thumb.active, .thumbnail-list .thumb:hover {
    border-color: var(--primary);
}
.pdp-category {
    font-size: 0.9rem;
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}
.pdp-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin: 0.5rem 0 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.badge-stock {
    background: #e8f5e9;
    color: #2e7d32;
    font-size: 0.8rem;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
}
.pdp-price-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.pdp-price-box .current-price {
    font-family: 'Fredoka', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
}
.pdp-price-box .old-price {
    font-size: 1.5rem;
    color: #999;
    text-decoration: line-through;
}
.pdp-desc {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}
.pdp-options label {
    font-weight: 700;
    display: block;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}
.size-selector {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}
.size-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s;
}
.size-btn:hover { border-color: var(--primary); }
.size-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}
.pdp-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}
.qty-selector {
    display: flex;
    align-items: center;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    overflow: hidden;
}
.qty-selector button {
    background: none;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1.2rem;
    cursor: pointer;
    font-weight: 700;
    color: var(--text-dark);
}
.qty-selector input {
    width: 50px;
    text-align: center;
    border: none;
    font-weight: 700;
    font-size: 1.2rem;
    background: transparent;
}
.add-to-cart-btn {
    flex: 1;
    background: #ffcc00;
    color: #333;
    text-align: center;
    padding: 1rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.3);
    transition: all 0.3s;
}
.add-to-cart-btn:hover {
    background: #e6b800;
    transform: translateY(-2px);
}

/* Review Section */
.pdp-reviews-section {
    background: #fff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
}
.review-tabs {
    display: flex;
    gap: 2rem;
    border-bottom: 2px solid #eee;
    margin-bottom: 2rem;
}
.review-tabs .tab {
    font-weight: 700;
    font-size: 1.2rem;
    padding-bottom: 1rem;
    cursor: pointer;
    color: #888;
}
.review-tabs .tab.active {
    color: var(--text-dark);
    border-bottom: 3px solid var(--text-dark);
}
.review-summary-box {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #eee;
    align-items: center;
}
@media (max-width: 800px) {
    .review-summary-box { grid-template-columns: 1fr; gap: 2rem; }
}
.rating-overall h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 4rem;
    color: var(--text-dark);
    margin: 0;
}
.rating-overall h2 span {
    font-size: 1.2rem;
    font-family: 'Nunito', sans-serif;
    color: #888;
    margin-left: 10px;
}
.rating-overall p { color: #888; margin-top: 5px; }
.bar-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}
.star-label { min-width: 60px; font-weight: 700; color: #555; }
.bar-bg {
    flex: 1;
    height: 8px;
    background: #eee;
    border-radius: 10px;
    overflow: hidden;
}
.bar-fill {
    height: 100%;
    background: #ffcc00;
    border-radius: 10px;
}
.write-review h3 { margin-bottom: 0.5rem; color: var(--text-dark); }
.write-review p { color: var(--text-light); margin-bottom: 1rem; font-size: 0.9rem; }
.write-btn {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--text-dark);
    background: transparent;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}
.write-btn:hover { background: var(--text-dark); color: #fff; }

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    color: var(--text-light);
    font-weight: 700;
}
.review-header select {
    border: none;
    background: transparent;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
    cursor: pointer;
    outline: none;
}
.review-item {
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
    margin-bottom: 2rem;
}
.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.reviewer-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}
.reviewer-info h4 { margin: 0; color: var(--text-dark); }
.verified { color: var(--primary); font-size: 0.8rem; font-weight: 700; }
.reviewer-info .date { margin-left: auto; color: #aaa; font-size: 0.9rem; }
.review-item h5 { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--text-dark); }
.review-item p { color: var(--text-light); line-height: 1.6; margin-bottom: 1rem; }
.review-item .stars { color: #ffcc00; font-size: 0.9rem; margin-bottom: 1rem; font-weight: 700; }
.review-images { display: flex; gap: 1rem; }
.review-images img { width: 80px; height: 80px; object-fit: cover; border-radius: 8px; }

.hero-visuals {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5vw 4rem;
}

.main-product-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 5;
    transform: translateY(20px);
    width: 100%;
}

.main-hero-img {
    width: 100%;
    max-width: 1200px;
    height: auto;
    object-fit: cover;
    filter: drop-shadow(0 40px 60px rgba(0,0,0,0.2));
}

.floating-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,1);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    max-width: 280px;
    z-index: 2;
}

.left-card { transform: translateY(-40px); }

.quote-icon {
    font-family: Georgia, serif;
    font-size: 4rem;
    color: var(--secondary);
    line-height: 0;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
}

.left-card p {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.5;
    margin-bottom: 1.2rem;
}

.avatars { display: flex; align-items: center; }
.avatars img {
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -10px;
    cursor: pointer;
    transition: transform 0.3s, border-color 0.3s;
}
.avatars img:first-child { margin-left: 0; }
.avatars img:hover { transform: scale(1.1); z-index: 5; position: relative; }
.avatars img.avatar-active {
    border-color: var(--secondary);
    transform: scale(1.15);
    z-index: 10;
    position: relative;
    box-shadow: 0 4px 10px rgba(23, 149, 177, 0.3);
}

.avatar-more {
    font-size: 0.8rem; font-weight: 700;
    margin-left: 8px; color: var(--text-light);
}

.right-gallery {
    position: relative; width: 280px; height: 280px;
    background: transparent; border: none; box-shadow: none;
    backdrop-filter: none; padding: 0; transform: translateY(-20px);
}

.gallery-card {
    position: absolute; width: 140px; height: 140px;
    border-radius: 20px; overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1); background: #fff;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.gallery-card:hover {
    box-shadow: 0 25px 40px rgba(0,0,0,0.2);
    z-index: 10 !important;
}

/* Stacking 5 images */
.gallery-card.back-3 { top: 0; left: 0; transform: scale(0.7) rotate(-15deg); opacity: 0.6; z-index: 1; }
.gallery-card.back-3:hover { transform: scale(0.9) rotate(-10deg) translate(-20px, -20px); opacity: 1; }

.gallery-card.back-2 { top: 10px; left: 30px; transform: scale(0.75) rotate(-10deg); opacity: 0.7; z-index: 2; }
.gallery-card.back-2:hover { transform: scale(0.95) rotate(-5deg) translate(-10px, -20px); opacity: 1; }

.gallery-card.back-1 { top: 25px; left: 60px; transform: scale(0.8) rotate(-5deg); opacity: 0.8; z-index: 3; }
.gallery-card.back-1:hover { transform: scale(1) rotate(-2deg) translate(0, -10px); opacity: 1; }

.gallery-card.back { top: 40px; left: 90px; transform: scale(0.9) rotate(0deg); opacity: 0.9; z-index: 4; }
.gallery-card.back:hover { transform: scale(1.05) rotate(2deg); opacity: 1; }

.gallery-card.front { bottom: 0; right: 0; transform: scale(1) rotate(5deg); z-index: 5; }
.gallery-card.front:hover { transform: scale(1.1) rotate(0deg); }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; }

/* ═══════════════════════════════════════
   FLOATING PRODUCT OVERLAY (SCROLL EFFECT)
═══════════════════════════════════════ */
#floating-product-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(550px, 80vw);
    height: min(550px, 80vh);
    z-index: 5;
    pointer-events: none;
    display: none; /* Hidden by default, activated by GSAP on scroll */
    filter: drop-shadow(0 40px 80px rgba(0,0,0,0.18));
    will-change: transform;
}

#floating-product {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ═══════════════════════════════════════
   LIGHTBOX OVERLAY
═══════════════════════════════════════ */
.lightbox-overlay {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    padding-top: 5vh;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    animation: zoomIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.lightbox-close:hover { color: #ccc; }

/* ═══════════════════════════════════════
   TESTIMONIAL CAROUSEL
═══════════════════════════════════════ */
#testimonials-section {
    padding: 6rem 5vw 4rem;
    background: #fdfdfd;
    text-align: center;
    overflow: hidden;
}

.section-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 2.5rem;
    color: var(--secondary);
    letter-spacing: 3px;
    margin-bottom: 3.5rem;
    text-transform: uppercase;
}

.testimonial-slider {
    position: relative;
    max-width: 1000px;
    height: 350px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

/* Base Card State (Hidden) */
.t-card {
    position: absolute;
    width: 450px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(10, 74, 107, 0.08);
    padding: 2.5rem 2.5rem;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    pointer-events: none;
    z-index: 1;
    transform: translateX(0) scale(0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Active 3 States */
.t-card.t-left {
    transform: translateX(-70%) scale(0.85);
    opacity: 0.5;
    z-index: 2;
    pointer-events: auto;
    cursor: pointer;
}

.t-card.t-right {
    transform: translateX(70%) scale(0.85);
    opacity: 0.5;
    z-index: 2;
    pointer-events: auto;
    cursor: pointer;
}

.t-card.t-center {
    transform: translateX(0) scale(1);
    opacity: 1;
    z-index: 5;
    pointer-events: auto;
    box-shadow: 0 20px 60px rgba(23, 149, 177, 0.15);
}

.t-card.t-left:hover, .t-card.t-right:hover {
    opacity: 0.8;
}

.t-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--secondary);
    margin-top: -65px; /* Pop out the top */
    margin-bottom: 1rem;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.t-name {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.3rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.t-role {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.t-quotes {
    font-size: 2.5rem;
    color: var(--secondary);
    line-height: 0;
    margin-bottom: 0.5rem;
    font-family: Georgia, serif;
    opacity: 0.4;
}

.t-text {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.6;
    font-style: italic;
}


/* ═══════════════════════════════════════
   VIDEO TESTIMONIALS (INFINITE SCROLL)
═══════════════════════════════════════ */
#video-testimonials {
    padding: 0 0 6rem; /* Removed horizontal padding to allow full-width scroll */
    background: #fdfdfd;
    text-align: center;
    overflow: hidden;
}

.infinite-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    padding: 1rem 0;
}

/* Gradient Masks for smooth fade out at edges */
.infinite-slider::before,
.infinite-slider::after {
    position: absolute;
    top: 0;
    width: 10vw;
    height: 100%;
    content: "";
    z-index: 2;
    pointer-events: none;
}
.infinite-slider::before {
    left: 0;
    background: linear-gradient(to right, #fdfdfd 0%, transparent 100%);
}
.infinite-slider::after {
    right: 0;
    background: linear-gradient(to left, #fdfdfd 0%, transparent 100%);
}

.slider-track {
    display: inline-flex;
    gap: 2rem;
    animation: scroll 30s linear infinite;
    padding: 0 1rem;
}

.infinite-slider:hover .slider-track {
    animation-play-state: paused;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 1rem)); } /* -50% because we duplicated the 6 cards */
}

.video-card {
    position: relative;
    width: 260px; /* Fixed width for consistent scrolling */
    flex-shrink: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    aspect-ratio: 9 / 16;
    background: #000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.95;
    transition: opacity 0.3s ease;
}

.video-card:hover video {
    opacity: 1;
}

/* ═══════════════════════════════════════
   FEATURE SECTIONS (Alternating)
═══════════════════════════════════════ */
.feature-section {
    position: relative; height: 100vh; width: 100%;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 10vw; background: #fff; overflow: hidden;
}

.feature-section:nth-of-type(even) { background: #fdfdfd; }

.feature-section.centered-content {
    background: linear-gradient(135deg, #f7fbfc 0%, #edf8fa 100%);
    display: block; padding: 0;
}

.feature-text { flex: 1; max-width: 500px; z-index: 10; position: relative; }
.feature-visual-target { flex: 1; height: 100%; display: flex; align-items: center; justify-content: center; }
.feature-visual-target img { max-width: 90%; max-height: 80%; border-radius: 20px; box-shadow: 0 20px 50px rgba(0,0,0,0.05); }

.step-label {
    display: inline-block; font-family: 'Fredoka', sans-serif;
    font-size: 1.2rem; font-weight: 700; color: var(--secondary);
    margin-bottom: 1rem; opacity: 0.8;
}

.feature-text h2 {
    font-family: 'Fredoka', sans-serif; font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1; color: var(--primary); margin-bottom: 2rem;
}

.feature-text p { font-size: 1.2rem; line-height: 1.7; color: var(--text-light); }

header a:hover { opacity: 0.8; }
header .logo { font-family: 'Fredoka', sans-serif; font-size: 1.5rem; font-weight: 700; white-space: nowrap; }
.cart-icon { font-size: 1.3rem; }

/* Subpage Solid Header override */
header.solid-header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: none; /* Removed shadow to blend seamlessly visually */
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

header.solid-header a {
    color: #fff;
    opacity: 0.9;
}

header.solid-header a:hover {
    color: #fff;
    opacity: 1;
}

header.solid-header .logo a {
    color: #fff;
    font-weight: 700;
}

/* ═══════════════════════════════════════
   OFFER SECTION
═══════════════════════════════════════ */
.feature-section.offer-layout {
    background: radial-gradient(circle at left center, #edf8fa 0%, #ffffff 100%);
    padding-bottom: 10vh;
}

.offer-card {
    background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(20px);
    border: 1px solid rgba(23, 149, 177, 0.2); border-radius: 30px;
    padding: 3rem 4rem; max-width: 550px;
    box-shadow: 0 20px 80px rgba(10, 74, 107, 0.08); position: relative; z-index: 10;
}

.offer-badge {
    display: inline-block; background: #e91e63; color: #fff;
    font-family: 'Fredoka', sans-serif; font-size: 0.85rem; font-weight: 700;
    padding: 0.4rem 1.2rem; border-radius: 50px; text-transform: uppercase;
    letter-spacing: 1.5px; margin-bottom: 1.5rem; animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(233, 30, 99, 0.4); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(233, 30, 99, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(233, 30, 99, 0); }
}

.offer-card h2 {
    font-family: 'Fredoka', sans-serif; font-size: 2.8rem;
    color: var(--primary); margin-bottom: 2rem; line-height: 1.1;
}

.pricing-options {
    background: #fcfdfe; border-radius: 20px; padding: 1.5rem;
    margin-bottom: 2rem; border: 1px solid rgba(23, 149, 177, 0.15);
}

.price-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1rem 0; font-family: 'Fredoka', sans-serif;
}

.price-row:not(:last-child) { border-bottom: 1px dashed rgba(23, 149, 177, 0.2); }

.price-row.prepaid { color: var(--secondary); }
.price-row.cod { color: var(--text-light); }

.price-label { font-size: 1.2rem; font-weight: 600; display: flex; align-items: center; gap: 0.8rem; }

.discount-tag {
    background: var(--secondary); color: #fff; font-size: 0.7rem;
    padding: 0.2rem 0.6rem; border-radius: 12px; text-transform: uppercase; letter-spacing: 1px;
}

.price-amount { font-size: 2.2rem; font-weight: 800; }

.mrp-row {
    text-align: right; font-family: 'Nunito', sans-serif;
    font-size: 0.9rem; color: #888; margin-top: 0.5rem;
}
.mrp-row .old-price { text-decoration: line-through; color: #e91e63; font-weight: 700; }

.buy-now-btn {
    width: 100%; text-align: center; font-family: 'Fredoka', sans-serif;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff; border: none; padding: 1.2rem; font-size: 1.5rem;
    font-weight: 700; border-radius: 50px; cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 30px rgba(23, 149, 177, 0.25); display: inline-block; text-decoration: none;
}
.buy-now-btn:hover {
    transform: scale(1.05) translateY(-5px); box-shadow: 0 20px 40px rgba(23, 149, 177, 0.3);
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.site-footer {
    background: #fff; border-top: 1px solid #f0f0f0;
    color: #666; padding: 3rem 2rem; text-align: center; font-size: 0.9rem;
}

/* ═══════════════════════════════════════
   ANIMATIONS & RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1100px) { .feature-section { padding: 0 5vw; } }
@media (max-width: 900px) {
    .left-nav, .right-nav { display: none; }
    header { justify-content: center; background: rgba(255,255,255,0.9); padding: 1rem; border-bottom: 1px solid #ddd; position: fixed; }
    .hero-visuals { flex-direction: column; gap: 3rem; margin-top: 1rem; }
    .left-card { transform: translateY(0); order: 2; margin-top: 2rem; }
    .right-gallery { transform: translateY(0); order: 3; margin: 0 auto; }
    .main-product-wrapper { order: 1; transform: translateY(0); }
    .main-hero-img { width: 90vw; }
    #hero-banner { padding-top: 100px; }
    
    .feature-section { flex-direction: column; height: auto; padding: 6rem 1.5rem; text-align: center; }
    .feature-text { max-width: 100%; margin-bottom: 2rem; }
    .feature-visual-target { display: block; height: auto; }
    .feature-visual-target img { margin-bottom: 2rem; }
    .offer-card { margin-top: 0; padding: 3rem 2rem; }
    .offer-card h2 { font-size: 2.2rem; }
}
