:root {
    --primary-color: #D96B7B;
    --dark-pink: #C94B5F;
    --soft-pink: #F8E3E6;
    --light-pink: #FFF2F3;
    --text-dark: #4A2C2A;
    --heading-dark: #2E1A18;
    --muted-text: #7A6A68;
    --bg-page: #FFF8F6;
    --bg-section: #F7F1EE;
    --card-bg: #FFFFFF;
    --border-divider: #F1E4E1;
    --footer-bg: #3A2321;
    --footer-text: #F7F1EE;
    --white: #FFFFFF;
    --badge-bg: #FFB84D;
    --container-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Quicksand', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-page);
}

h1, h2, h3, h4, .logo {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.heart, .paw {
    color: var(--primary-color);
}

/* Announcement Bar */
.announcement-bar {
    background: linear-gradient(90deg, #D96B7B 0%, #C94B5F 100%);
    color: var(--white);
    text-align: center;
    padding: 10px 0;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Header */
header {
    background-color: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo img {
    height: 50px;
    width: auto;
}

.footer-brand .logo img {
    height: 60px;
}

.desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.desktop-nav ul li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: color 0.3s;
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-icon {
    position: relative;
    font-size: 1.2rem;
    cursor: pointer;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 50%;
}

.btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.3s, background-color 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(180deg, #E8808F 0%, #D96B7B 100%);
    color: var(--white);
}

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

.btn-large {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-white {
    background-color: var(--white);
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background-color: var(--bg-page);
    padding: 80px 0;
    overflow: hidden;
}

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

.hero-badge-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.badge {
    background-color: var(--badge-bg);
    color: var(--white);
    padding: 3px 14px;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 0.8px;
    display: inline-block;
}

.rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.stars {
    color: #FFB84D;
    font-size: 1rem;
}

.score {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.hero-text h1 {
    font-size: 3.8rem;
    line-height: 1;
    margin-bottom: 5px;
    color: var(--heading-dark);
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
}

.subtitle {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-family: 'Dancing Script', cursive;
    font-weight: 600;
}

.description {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 30px;
    max-width: 450px;
}

.hero-features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 35px;
    max-width: 600px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.feature-icon {
    background-color: #FDF1F1;
    color: var(--primary-color);
    width: 35px;
    height: 35px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.hero-feature span {
    font-size: 0.75rem;
    line-height: 1.2;
    font-weight: 700;
    color: var(--text-dark);
}

.pricing {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.current-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-dark);
}

.old-price {
    font-size: 1.2rem;
    text-decoration: line-through;
    color: var(--text-muted);
    opacity: 0.6;
}

.discount {
    background-color: #F8E7E7;
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    max-width: 350px;
    width: 100%;
}

.payment-buttons {
    width: 100%;
    text-align: center;
}

.btn-paypal {
    background-color: #FFC439;
    color: #2C2E2F;
    width: 100%;
    padding: 12px 0;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.3s;
    margin-bottom: 8px;
}

.btn-paypal:hover {
    background-color: #F2BA36;
}

.more-options {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: underline;
    cursor: pointer;
}

.btn-large {
    background: linear-gradient(180deg, #E8808F 0%, #D96B7B 100%);
    color: var(--white);
    padding: 14px 0;
    font-size: 1.05rem;
    width: 100%;
    text-align: center;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pdf-link {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
}

.hero-image {
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background-color: #FCEAEA;
    border-radius: 25px;
    z-index: -1;
    transform: rotate(2deg);
}

.hero-image img {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 15px 45px rgba(214, 140, 140, 0.15);
}

/* Feature Bar */
.feature-bar {
    padding: 30px 0;
    background-color: var(--bg-section);
    border-top: 1px solid var(--border-divider);
    border-bottom: 1px solid var(--border-divider);
}

.feature-bar-content {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-item i {
    font-size: 2rem;
    color: var(--primary-color);
}

.feature-item h3 {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.feature-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Section Title */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin: 60px 0 40px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* What's Included */
.whats-included {
    background-color: var(--white);
    padding-bottom: 60px;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.included-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    border: 1px solid var(--border-divider);
}

.included-card:hover {
    transform: translateY(-10px);
}

.included-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.included-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    min-height: 50px;
}

.included-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Animals Grid */
.animals-included {
    background-color: var(--bg-page);
    padding: 80px 0;
}

/* Animals Image Container */
.animals-image-container {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

.animals-grid-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Materials & Videos */
.materials-videos {
    padding: 80px 0;
    background-color: var(--white);
}

.materials-videos-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
    align-items: stretch;
}

.materials, .videos {
    background-color: var(--bg-section);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-divider);
}

.materials h3, .videos h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-dark);
}

.materials h3 i, .videos h3 i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.materials ul {
    list-style: none;
    padding: 0;
}

.materials ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.materials ul li i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

.yarn-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 100px;
    height: auto;
    opacity: 0.8;
}

.videos p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

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

.video-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    margin-bottom: 10px;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.video-thumbnail::after {
    content: '\f144';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2rem;
    color: var(--primary-color);
    background-color: var(--white);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.video-item p {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.1;
    margin: 0;
}

.video-item span {
    font-size: 0.7rem;
    color: var(--text-muted);
    display: block;
}

/* Testimonials */
.testimonials {
    background-color: var(--white);
    padding: 80px 0;
}

.testimonial-slider {
    display: flex;
    gap: 30px;
    overflow: hidden;
    padding: 20px 0;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    background-color: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    border: 1px solid var(--border-divider);
}

.testimonial-card .stars {
    margin-bottom: 15px;
}

.testimonial-card p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.author span {
    font-weight: 700;
    color: var(--text-dark);
}

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

.dot {
    width: 10px;
    height: 10px;
    background-color: #DDD;
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background-color: var(--primary-color);
    width: 25px;
    border-radius: 10px;
}

/* FAQ */
.faq {
    background-color: var(--bg-page);
    padding: 80px 0;
}

.faq-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

.section-title-left {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.accordion-item {
    background-color: var(--white);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    border: 1px solid var(--border-divider);
}

.accordion-header {
    padding: 20px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.accordion-header:hover {
    background-color: #FAFAFA;
}

.accordion-body {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
    color: var(--text-muted);
}

.accordion-item.active .accordion-body {
    padding: 0 20px 20px;
    max-height: 200px;
}

.accordion-item.active .accordion-header i {
    transform: rotate(45deg);
}

.guarantee-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border: 2px dashed var(--primary-color);
}

.guarantee-badge {
    background-color: var(--bg-light);
    color: var(--primary-color);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.guarantee-badge i {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.guarantee-badge span {
    font-size: 0.7rem;
    font-weight: 800;
    width: 80px;
    line-height: 1.2;
}

/* Bottom CTA */
.bottom-cta {
    background: linear-gradient(135deg, #FCEFF1 0%, #F8E3E6 100%);
    padding: 60px 0;
    color: var(--text-dark);
    border-top: 1px solid var(--border-divider);
}

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

.bottom-cta .btn-white {
    background: linear-gradient(180deg, #E8808F 0%, #D96B7B 100%);
    color: var(--white);
}

.cta-text h3 {
    font-size: 2rem;
    margin-bottom: 5px;
}

.cta-text p {
    opacity: 0.9;
}

/* Footer */
footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 80px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand .logo img {
    filter: brightness(0) invert(1);
}

.footer-brand p {
    margin-bottom: 25px;
    color: var(--footer-text);
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--white);
    background-color: rgba(255,255,255,0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.social-links a:hover {
    background-color: var(--primary-color);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.link-group h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.link-group ul {
    list-style: none;
}

.link-group ul li {
    margin-bottom: 12px;
}

.link-group ul li a {
    color: var(--footer-text);
    opacity: 0.7;
    text-decoration: none;
    transition: color 0.3s;
}

.link-group ul li a:hover {
    color: var(--white);
    opacity: 1;
}

.footer-payment h4 {
    color: var(--white);
    margin-bottom: 20px;
}

.payment-icons {
    display: flex;
    gap: 15px;
    font-size: 2rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #777;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .hero-image {
        grid-row: 1;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-text {
        grid-row: 2;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-features-grid {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin: 0 auto 30px;
        max-width: 100%;
    }

    .hero-feature {
        white-space: nowrap;
    }

    .hero-buttons {
        align-items: center;
        margin: 0 auto;
        max-width: 100%;
    }

    .description {
        margin: 0 auto 30px;
    }

    .feature-bar-content {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .included-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .materials-videos-content {
        grid-template-columns: 1fr;
    }

    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .testimonial-card {
        flex: 0 0 85%;
        margin-right: 20px;
    }

    .testimonial-slider {
        overflow-x: auto;
        padding-bottom: 30px;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
    }

    .testimonial-card {
        scroll-snap-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        text-align: left;
    }

    .social-links {
        justify-content: center;
    }

    .payment-icons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 15px;
    }

    .mobile-menu-toggle {
        display: block;
        order: 1;
        font-size: 1.5rem;
        color: var(--text-dark);
    }

    .logo {
        order: 2;
        margin: 0 auto;
    }

    .logo img {
        height: 35px;
    }

    .header-actions {
        order: 3;
        display: flex;
        align-items: center;
    }

    .header-actions .btn {
        display: none;
    }

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

    .desktop-nav {
        display: none;
    }

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

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .subtitle {
        font-size: 1.4rem;
    }

    .hero-features-grid {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        max-width: 100%;
    }

    .feature-bar-content {
        grid-template-columns: 1fr;
    }

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

    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .bottom-cta-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .bottom-cta h3 {
        font-size: 1.5rem;
    }
}
