/*
Theme Name: Avada
Description: The Avada Website Builder is the ultimate design and creation suite. Design Anything, Build Everything, Fast. The #1 selling product of all time on ThemeForest.
Theme URI: https://avada.com/
Author: ThemeFusion
Author URI: https://themeforest.net/user/ThemeFusion
License: Themeforest Split Licence
Version: 7.12
Requires PHP: 5.6
Requires at least: 4.9
Text Domain: Avada
*/

/* Classes needed by Theme Check */
.wp-caption-text,
.gallery-caption,
.bypostauthor {
}
/*
Theme Name: Pink Litter
Template: Avada
Version: 1.0
*/

/* ========================================
   GLOBAL SETTINGS
======================================== */

:root {
    --primary-pink: #FF69B4;
    --light-pink: #FFB6C1;
    --pale-pink: #FFC0CB;
    --soft-pink: #FFE4E1;
    --bg-pink: #FFF5F7;
    --dark-text: #2C3E50;
    --gray-text: #7F8C8D;
    --white: #FFFFFF;
}

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

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--dark-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ========================================
   HEADER
======================================== */

#site-header {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 9999;
    transition: all 0.3s ease;
}

.site-logo img {
    max-height: 60px;
    transition: all 0.3s;
}

.main-navigation a {
    color: var(--dark-text);
    font-weight: 600;
    padding: 10px 20px;
    transition: color 0.3s;
}

.main-navigation a:hover {
    color: var(--primary-pink);
}

.cart-icon {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary-pink);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

/* ========================================
   HERO SECTION
======================================== */

.hero-section {
    min-height: 90vh;
    background: linear-gradient(135deg, var(--light-pink) 0%, var(--pale-pink) 50%, var(--soft-pink) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 60px 20px;
}

.hero-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.3), transparent);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    animation: float 20s ease-in-out infinite;
}

.hero-section::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.2), transparent);
    border-radius: 50%;
    bottom: -150px;
    left: -150px;
    animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -20px) rotate(5deg); }
    50% { transform: translate(-20px, 20px) rotate(-5deg); }
    75% { transform: translate(20px, 20px) rotate(3deg); }
}

.hero-content {
    text-align: center;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(48px, 8vw, 82px);
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    animation: fadeInUp 1s ease;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(20px, 4vw, 32px);
    color: var(--dark-text);
    margin-bottom: 40px;
    font-weight: 300;
    animation: fadeInUp 1.2s ease;
}

.hero-image {
    max-width: 700px;
    margin: 40px auto;
    animation: fadeInUp 1.4s ease;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.hero-cta {
    animation: fadeInUp 1.6s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-pink) 0%, #FF1493 100%);
    color: white;
    padding: 20px 60px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: bold;
    border: none;
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 105, 180, 0.6);
    text-decoration: none;
    color: white;
}

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

/* ========================================
   FEATURES SECTION
======================================== */

.features-section {
    padding: 100px 20px;
    background: var(--white);
}

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

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

.feature-box {
    text-align: center;
    padding: 40px 20px;
    transition: all 0.3s ease;
    border-radius: 20px;
}

.feature-box:hover {
    transform: translateY(-10px);
    background: var(--bg-pink);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--light-pink) 0%, var(--primary-pink) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
    box-shadow: 0 5px 20px rgba(255, 105, 180, 0.3);
}

.feature-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 15px;
}

.feature-description {
    font-size: 16px;
    color: var(--gray-text);
    line-height: 1.6;
}

/* ========================================
   SECTION HEADINGS
======================================== */

.section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(36px, 6vw, 52px);
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: clamp(16px, 3vw, 22px);
    color: var(--gray-text);
}

/* ========================================
   CATEGORIES SECTION
======================================== */

.categories-section {
    padding: 100px 20px;
    background: var(--bg-pink);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.category-card {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    height: 500px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
    cursor: pointer;
}

.category-card:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 50px rgba(0,0,0,0.25);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    padding: 40px 30px;
    color: white;
}

.category-name {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
}

.category-description {
    font-size: 18px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.category-link {
    color: var(--light-pink);
    font-size: 18px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
}

.category-link:hover {
    color: var(--primary-pink);
    transform: translateX(5px);
}

/* ========================================
   PRODUCTS SECTION
======================================== */

.products-section {
    padding: 100px 20px;
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(255, 105, 180, 0.2);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--primary-pink) 0%, #FF1493 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    z-index: 5;
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 300px;
    background: var(--bg-pink);
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.product-card:hover .product-image-wrapper img {
    transform: scale(1.1);
}

.product-info {
    padding: 25px;
}

.product-category {
    color: var(--primary-pink);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.product-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 15px;
    line-height: 1.4;
}

.product-rating {
    margin-bottom: 15px;
}

.stars {
    color: #FFD700;
    font-size: 16px;
}

.product-price {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-pink);
    margin-bottom: 20px;
}

.old-price {
    font-size: 18px;
    color: #95A5A6;
    text-decoration: line-through;
    margin-left: 10px;
    font-weight: 400;
}

.add-to-cart-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-pink) 0%, #FF1493 100%);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.4);
}

/* ========================================
   WHY CHOOSE SECTION
======================================== */

.why-choose-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--bg-pink) 0%, var(--soft-pink) 100%);
}

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

.why-choose-image {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.why-choose-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.why-choose-title {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 25px;
    line-height: 1.2;
}

.why-choose-description {
    font-size: 18px;
    color: var(--gray-text);
    margin-bottom: 40px;
    line-height: 1.8;
}

.benefits-list {
    list-style: none;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.15);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--light-pink) 0%, var(--primary-pink) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-right: 20px;
    flex-shrink: 0;
}

.benefit-text h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 5px;
}

.benefit-text p {
    font-size: 15px;
    color: var(--gray-text);
    margin: 0;
}

/* ========================================
   TESTIMONIALS SECTION
======================================== */

.testimonials-section {
    padding: 100px 20px;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 15px 50px rgba(255, 105, 180, 0.15);
}

.quote-icon {
    font-size: 60px;
    color: var(--light-pink);
    opacity: 0.3;
    position: absolute;
    top: 20px;
    left: 30px;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--dark-text);
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    font-style: italic;
}

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

.author-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--light-pink);
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 5px;
}

.author-info p {
    font-size: 14px;
    color: var(--gray-text);
    margin: 0;
}

.rating-stars {
    color: #FFD700;
    font-size: 18px;
    margin-top: 5px;
}

/* ========================================
   NEWSLETTER SECTION
======================================== */

.newsletter-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-pink) 0%, #FF1493 100%);
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.newsletter-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.newsletter-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.newsletter-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
}

.newsletter-description {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 18px 25px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.newsletter-input:focus {
    outline: none;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.newsletter-button {
    padding: 18px 40px;
    background: white;
    color: var(--primary-pink);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.newsletter-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.newsletter-privacy {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    margin-top: 20px;
}

/* ========================================
   FOOTER
======================================== */

.site-footer {
    background: var(--dark-text);
    color: white;
    padding: 80px 20px 30px;
}

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

.footer-column h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--light-pink);
}

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

.footer-description {
    font-size: 15px;
    line-height: 1.8;
    color: #BDC3C7;
    margin-bottom: 20px;
}

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

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 182, 193, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-pink);
    font-size: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--primary-pink);
    color: white;
    transform: translateY(-5px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #BDC3C7;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--light-pink);
    transform: translateX(5px);
}

.contact-info {
    list-style: none;
}

.contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 15px;
    color: #BDC3C7;
}

.contact-info li i {
    color: var(--light-pink);
    margin-right: 12px;
    font-size: 18px;
}

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

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.payment-icon {
    width: 50px;
    height: 32px;
    background: white;
    border-radius: 5px;
    padding: 5px;
}

.copyright {
    color: #95A5A6;
    font-size: 14px;
}

/* ========================================
   UTILITIES
======================================== */

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-pink) 0%, #FF1493 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(255, 105, 180, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
}

.scroll-to-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(255, 105, 180, 0.6);
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */

@media (max-width: 1024px) {
    .why-choose-content {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .category-card {
        height: 350px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: auto;
        padding: 40px 15px;
    }
    
    .btn-primary {
        padding: 15px 40px;
        font-size: 16px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}