/* ============================================
   BOLD & ENERGETIC DESIGN SYSTEM
   Pet-Friendly Mobile-First Responsive Styles
   ============================================ */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
    overflow-x: hidden;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 28px;
}

h2 {
    font-size: 24px;
}

h3 {
    font-size: 20px;
}

p {
    margin-bottom: 1rem;
    font-size: 16px;
    line-height: 1.7;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Section Spacing */
section {
    padding: 50px 0;
}

.section-title {
    text-align: center;
    font-size: 28px;
    color: #EF4444;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.15);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 8px 0;
    box-shadow: 0 6px 30px rgba(239, 68, 68, 0.25);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo a {
    font-size: 24px;
    font-weight: 900;
    color: #EF4444;
    display: flex;
    align-items: center;
    gap: 5px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: #EF4444;
    margin: 4px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: #1a1a1a;
    font-weight: 700;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: #EF4444;
    transition: width 0.3s ease;
}

.nav-link:hover:after {
    width: 100%;
}

.nav-link:hover {
    color: #EF4444;
}

.cta-btn-nav {
    background: linear-gradient(135deg, #EF4444 0%, #F59E0B 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 800;
    transition: all 0.3s ease;
    min-height: 48px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.cta-btn-nav:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
        box-shadow: -5px 0 20px rgba(239, 68, 68, 0.2);
        transition: right 0.3s ease;
        gap: 20px;
    }

    .nav-links.active {
        right: 0;
    }

    .cta-btn-nav {
        width: 100%;
        justify-content: center;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    margin-top: 80px;
    padding: 60px 0;
    background: linear-gradient(135deg, #FEF3C7 0%, #FECACA 100%);
    overflow: hidden;
    position: relative;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 50%;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -50px;
    animation: float-shape 8s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
    animation: float-shape 6s ease-in-out infinite reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 50%;
    animation: float-shape 10s ease-in-out infinite;
}

@keyframes float-shape {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(30px, 30px) rotate(180deg);
    }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-image {
    text-align: center;
}

.product-showcase {
    position: relative;
    display: inline-block;
}

.product-bottle {
    max-width: 350px;
    margin: 0 auto;
    filter: drop-shadow(0 20px 40px rgba(239, 68, 68, 0.3));
    animation: bounce-animation 2s ease-in-out infinite;
}

@keyframes bounce-animation {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

.paw-prints {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.paw {
    position: absolute;
    font-size: 30px;
    opacity: 0;
    animation: paw-appear 3s ease-in-out infinite;
}

.paw-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.paw-2 {
    top: 60%;
    right: 15%;
    animation-delay: 1s;
}

.paw-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

@keyframes paw-appear {
    0%, 100% {
        opacity: 0;
        transform: scale(0.5) rotate(0deg);
    }
    50% {
        opacity: 0.6;
        transform: scale(1) rotate(15deg);
    }
}

.hero-content {
    text-align: center;
}

.hero-title {
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 900;
}

.hero-description {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #EF4444 0%, #F59E0B 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    min-height: 50px;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.5);
}

.cta-btn:active {
    transform: translateY(-1px) scale(1.02);
}

.cta-btn-large {
    font-size: 18px;
    padding: 18px 40px;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 2rem;
}

.trust-item {
    background: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    color: #10B981;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.2);
}

/* Tablet */
@media (min-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr 1fr;
    }

    .hero-content {
        text-align: left;
    }

    .hero-title {
        font-size: 36px;
    }

    .trust-badges {
        justify-content: flex-start;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .hero-title {
        font-size: 48px;
    }

    .hero-description {
        font-size: 18px;
    }

    .section-title {
        font-size: 36px;
    }
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-choose-section {
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.feature-card {
    background: linear-gradient(135deg, #FEF3C7 0%, #FECACA 50%, #D1FAE5 100%);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #EF4444 0%, #F59E0B 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.feature-card:hover:before {
    opacity: 0.1;
}

.feature-card:hover {
    transform: translateY(-10px) rotate(-2deg);
    box-shadow: 0 20px 40px rgba(239, 68, 68, 0.3);
    border-color: #EF4444;
}

.feature-icon {
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.feature-icon img {
    max-width: 80px;
    margin: 0 auto;
}

.feature-card h3 {
    color: #EF4444;
    margin-bottom: 10px;
    font-size: 20px;
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: #4a5568;
    font-size: 15px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

@media (min-width: 576px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
}

/* ============================================
   WHAT IS SECTION
   ============================================ */
.what-is-section {
    background: linear-gradient(135deg, #FEF3C7 0%, #FECACA 100%);
}

.what-is-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.what-is-content p {
    color: #4a5568;
    margin-bottom: 1.2rem;
}

.what-is-image img {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(239, 68, 68, 0.3);
    border: 5px solid white;
}

@media (min-width: 768px) {
    .what-is-container {
        grid-template-columns: 1fr 1fr;
    }
}

/* ============================================
   HOW IT WORKS - ACCORDION
   ============================================ */
.how-it-works-section {
    background: white;
}

.accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 15px;
    border: 3px solid #FEF3C7;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: #EF4444;
    box-shadow: 0 5px 20px rgba(239, 68, 68, 0.2);
}

.accordion-header {
    width: 100%;
    background: linear-gradient(135deg, #FEF3C7 0%, #FECACA 100%);
    border: none;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: 800;
    color: #1a1a1a;
    transition: all 0.3s ease;
    min-height: 48px;
    text-align: left;
}

.accordion-header:hover {
    background: linear-gradient(135deg, #F59E0B 0%, #EF4444 100%);
    color: white;
}

.accordion-icon {
    transition: transform 0.3s ease;
    stroke: #EF4444;
    flex-shrink: 0;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content p {
    padding: 20px;
    color: #4a5568;
    line-height: 1.8;
    background: white;
}

.accordion-item.active .accordion-content {
    max-height: 600px;
}

@media (min-width: 768px) {
    .accordion-header {
        font-size: 18px;
        padding: 24px;
    }
}

/* ============================================
   CUSTOMER REVIEWS
   ============================================ */
.reviews-section {
    background: linear-gradient(135deg, #FEF3C7 0%, #D1FAE5 100%);
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.review-card {
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.15);
    transition: all 0.3s ease;
    border: 3px solid transparent;
    animation: slide-in-review 0.6s ease-out;
}

@keyframes slide-in-review {
    0% {
        opacity: 0;
        transform: translateX(-50px) rotate(-5deg);
    }
    100% {
        opacity: 1;
        transform: translateX(0) rotate(0deg);
    }
}

.review-card:hover {
    transform: translateY(-10px) rotate(2deg);
    box-shadow: 0 20px 50px rgba(239, 68, 68, 0.25);
    border-color: #10B981;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.review-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 4px solid #EF4444;
    box-shadow: 0 5px 15px rgba(239, 68, 68, 0.3);
}

.review-info h4 {
    color: #1a1a1a;
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 800;
}

.review-location {
    color: #718096;
    font-size: 14px;
}

.star-rating {
    color: #F59E0B;
    font-size: 20px;
    margin-top: 5px;
}

.review-text {
    color: #4a5568;
    line-height: 1.7;
    font-style: italic;
    font-weight: 500;
}

@media (min-width: 768px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-section {
    background: linear-gradient(135deg, #EF4444 0%, #F59E0B 100%);
    color: white;
}

.pricing-subtitle {
    text-align: center;
    font-size: 18px;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 700;
}

.countdown-timer {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 25px;
    max-width: 500px;
    margin: 0 auto 3rem;
    text-align: center;
    border: 3px solid white;
}

.timer-label {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 800;
    text-transform: uppercase;
}

.timer-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timer-number {
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
    background: white;
    color: #EF4444;
    padding: 15px 25px;
    border-radius: 15px;
    min-width: 90px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.timer-text {
    font-size: 12px;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
}

.timer-separator {
    font-size: 42px;
    font-weight: 900;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 2rem;
}

.pricing-card {
    background: white;
    border-radius: 25px;
    padding: 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    color: #1a1a1a;
    border: 4px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    border-color: #10B981;
}

.pricing-card.featured {
    border: 5px solid #F59E0B;
    transform: scale(1.05);
    background: linear-gradient(135deg, #FEF3C7 0%, #FECACA 100%);
}

.most-popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    padding: 10px 24px;
    border-radius: 20px;
    font-weight: 900;
    font-size: 13px;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.4);
}

.pricing-label {
    font-size: 16px;
    font-weight: 900;
    color: #EF4444;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-package {
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 5px;
    color: #1a1a1a;
}

.pricing-supply {
    font-size: 14px;
    color: #718096;
    margin-bottom: 20px;
    font-weight: 700;
}

.pricing-image {
    margin: 20px 0;
}

.pricing-image img {
    max-width: 200px;
    margin: 0 auto;
}

.pricing-price {
    font-size: 36px;
    font-weight: 900;
    color: #EF4444;
    margin-bottom: 10px;
}

.pricing-total {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.old-price {
    font-size: 22px;
    color: #718096;
    text-decoration: line-through;
    font-weight: 700;
}

.new-price {
    font-size: 32px;
    font-weight: 900;
    color: #10B981;
}

.bonus-badges {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.bonus-badge {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    padding: 10px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
}

.pricing-btn {
    display: block;
    margin: 20px auto;
    transition: transform 0.3s ease;
}

.pricing-btn img {
    max-width: 220px;
    margin: 0 auto;
}

.pricing-btn:hover {
    transform: scale(1.1);
}

.payment-logos {
    margin-top: 15px;
}

.payment-logos img {
    max-width: 200px;
    margin: 0 auto;
}

.rating-image {
    text-align: center;
    margin-top: 2rem;
}

.rating-image img {
    max-width: 400px;
    margin: 0 auto;
}

@media (min-width: 576px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card.featured {
        grid-column: 1 / -1;
    }
}

@media (min-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .pricing-card.featured {
        grid-column: auto;
    }

    .timer-number {
        font-size: 56px;
        min-width: 110px;
    }
}

/* ============================================
   INGREDIENTS
   ============================================ */
.ingredients-section {
    background: white;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.ingredient-card {
    background: linear-gradient(135deg, #FEF3C7 0%, #D1FAE5 100%);
    padding: 25px;
    border-radius: 15px;
    border-left: 5px solid #EF4444;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(239, 68, 68, 0.1);
}

.ingredient-card:hover {
    transform: translateX(10px) rotate(1deg);
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.2);
    border-left-color: #10B981;
}

.ingredient-card h3 {
    color: #EF4444;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 900;
}

.ingredient-card p {
    color: #4a5568;
    font-size: 15px;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .ingredients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* ============================================
   SCIENTIFIC EVIDENCE
   ============================================ */
.scientific-section {
    background: linear-gradient(135deg, #FEF3C7 0%, #FECACA 100%);
}

.scientific-content {
    max-width: 900px;
    margin: 0 auto;
}

.scientific-item {
    background: white;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 15px;
    border-left: 6px solid #F59E0B;
    box-shadow: 0 5px 20px rgba(239, 68, 68, 0.1);
    transition: all 0.3s ease;
}

.scientific-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.2);
}

.scientific-item h3 {
    color: #1a1a1a;
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: 900;
}

.scientific-item p {
    color: #4a5568;
    line-height: 1.8;
}

/* ============================================
   MONEY BACK GUARANTEE
   ============================================ */
.guarantee-section {
    background: white;
}

.guarantee-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.guarantee-image img {
    max-width: 300px;
    margin: 0 auto;
}

.guarantee-points {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.guarantee-point h3 {
    color: #EF4444;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 900;
}

.guarantee-point p {
    color: #4a5568;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .guarantee-container {
        grid-template-columns: 1fr 1.5fr;
    }
}

/* ============================================
   BENEFITS
   ============================================ */
.benefits-section {
    background: linear-gradient(135deg, #FEF3C7 0%, #D1FAE5 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(239, 68, 68, 0.1);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.benefit-item:hover {
    transform: translateX(15px) scale(1.02);
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.2);
    border-color: #10B981;
}

.benefit-icon {
    font-size: 32px;
    color: white;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 900;
}

.benefit-text h3 {
    color: #1a1a1a;
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 900;
}

.benefit-text p {
    color: #4a5568;
    font-size: 15px;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    background: white;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 3px solid #FEF3C7;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #EF4444;
    box-shadow: 0 5px 20px rgba(239, 68, 68, 0.2);
}

.faq-question {
    width: 100%;
    background: linear-gradient(135deg, #FEF3C7 0%, #FECACA 100%);
    border: none;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: 800;
    color: #1a1a1a;
    transition: all 0.3s ease;
    min-height: 48px;
    text-align: left;
}

.faq-question:hover {
    background: linear-gradient(135deg, #F59E0B 0%, #EF4444 100%);
    color: white;
}

.faq-icon {
    transition: transform 0.3s ease;
    stroke: #EF4444;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 20px;
    color: #4a5568;
    line-height: 1.8;
    background: white;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

@media (min-width: 768px) {
    .faq-question {
        font-size: 18px;
        padding: 24px;
    }
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.final-cta-section {
    background: linear-gradient(135deg, #FEF3C7 0%, #FECACA 100%);
    overflow: hidden;
    position: relative;
}

.final-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.floating-paw {
    position: absolute;
    font-size: 40px;
    opacity: 0.3;
    animation: float-paw 4s ease-in-out infinite;
}

.paw-float-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.paw-float-2 {
    top: 70%;
    left: 80%;
    animation-delay: 1s;
}

.paw-float-3 {
    top: 40%;
    right: 5%;
    animation-delay: 2s;
}

.paw-float-4 {
    bottom: 20%;
    left: 60%;
    animation-delay: 3s;
}

@keyframes float-paw {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(15deg);
    }
}

.final-cta-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.final-cta-image {
    animation: scale-pulse 2s ease-in-out infinite;
}

@keyframes scale-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.final-product-img {
    max-width: 350px;
    margin: 0 auto;
    filter: drop-shadow(0 20px 60px rgba(239, 68, 68, 0.4));
}

.final-cta-title {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    font-weight: 900;
}

.final-pricing {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 2rem;
}

.final-regular-price {
    font-size: 18px;
    color: #718096;
    font-weight: 700;
}

.final-special-price {
    font-size: 40px;
    font-weight: 900;
    color: #EF4444;
}

.cta-btn-final {
    margin: 0 auto 1rem;
}

.final-cta-note {
    font-size: 14px;
    color: #4a5568;
    font-weight: 700;
}

@media (min-width: 768px) {
    .final-cta-container {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }

    .final-pricing {
        align-items: flex-start;
    }

    .cta-btn-final {
        margin: 0 0 1rem 0;
    }

    .final-cta-title {
        font-size: 32px;
    }
}

@media (min-width: 1024px) {
    .final-cta-title {
        font-size: 42px;
    }

    .final-special-price {
        font-size: 52px;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 50px 0 30px;
}

.footer-content {
    text-align: center;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 2rem;
}

.footer-links a {
    color: white;
    font-size: 14px;
    transition: color 0.3s ease;
    font-weight: 700;
}

.footer-links a:hover {
    color: #F59E0B;
}

.footer-separator {
    color: #718096;
}

.footer-disclaimer {
    max-width: 900px;
    margin: 0 auto 2rem;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: #a0aec0;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 2rem;
}

.social-link {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #EF4444 0%, #F59E0B 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.4);
}

.footer-copyright p {
    font-size: 13px;
    color: #718096;
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #EF4444 0%, #F59E0B 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.4);
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 35px rgba(239, 68, 68, 0.5);
}

/* ============================================
   PURCHASE NOTIFICATION
   ============================================ */
.purchase-notification {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(239, 68, 68, 0.3);
    padding: 15px;
    transform: translateX(-400px);
    transition: transform 0.5s ease;
    z-index: 998;
    max-width: 320px;
    border: 3px solid #10B981;
}

.purchase-notification.show {
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.notification-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.notification-text {
    font-size: 14px;
    color: #1a1a1a;
}

.notification-text strong {
    display: block;
    margin-bottom: 2px;
    font-weight: 900;
}

.notification-text p {
    color: #718096;
    font-size: 12px;
    margin: 0;
}

@media (max-width: 576px) {
    .purchase-notification {
        left: 20px;
        right: 20px;
        max-width: calc(100% - 40px);
    }
}

/* ============================================
   REDUCED MOTION SUPPORT
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    
