/* ==============================================
   SNUGLIBUNNY STYLESHEET (V3 - "KIDDO" STYLE)
   ============================================== */

/* ===== 1. GLOBAL & MOBILE-FIRST STYLES ===== */

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

body {
    /* NEW: Clean, soft body font */
    font-family: 'Nunito', -apple-system, sans-serif;
    line-height: 1.6;
    /* NEW: Light, airy color palette */
    background-color: #FFFFFF;
    color: #555555; /* Soft gray text */
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 90%;
    max-width: 1200px; /* NEW: A bit wider for an airy feel */
    margin: 0 auto;
}

img {
    max-width: 100%;
    display: block;
}

section {
    padding: 60px 0; /* NEW: Lots of white space */
}

/* NEW: Light, elegant, modern headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', sans-serif;
    font-weight: 400; /* NEW: Use a light weight */
    color: #333333;
    margin-bottom: 20px;
    line-height: 1.3;
}
h1 { font-size: 36px; }
h2 { font-size: 30px; }
h3 { font-size: 24px; }

p {
    margin-bottom: 15px;
    font-size: 16px;
    color: #777;
}

a {
    color: #E89F9E; /* NEW: Soft pink */
    text-decoration: none;
    transition: all 0.3s ease;
}
a:hover {
    color: #333;
}

/* ===== BUTTONS (Simple & Soft) ===== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 8px; /* NEW: Softly rounded, not a pill */
    font-weight: bold;
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    /* NEW: No shadow, simple design */
    box-shadow: none;
    transition: all 0.3s ease;
}
.btn-primary {
    background-color: #E89F9E;
    color: #fff;
    border: 1px solid #E89F9E;
}
.btn-primary:hover {
    background-color: #fff;
    color: #E89F9E;
}
.btn-secondary {
    background-color: #f5f5f5; /* NEW: Light gray */
    color: #333;
    border: 1px solid #eee;
}
.btn-secondary:hover {
    background-color: #333;
    color: #fff;
}


/* ===== 2. HEADER & NAVIGATION (Minimalist) ===== */
.site-header {
    background-color: #fff;
    border-bottom: 1px solid #f5f5f5;
    padding: 10px 0; /* NEW: Reduced padding for the logo */
    position: sticky;
    top: 0;
    z-index: 1000;
}
.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* NEW: Styles for the logo link, image, and text */
.logo-link {
    display: flex;         /* Puts the image and text side-by-side */
    align-items: center;   /* Vertically centers them */
    text-decoration: none; /* Removes underline from the link */
}
.logo-img {
    height: 50px; /* You can adjust this height */
    width: auto;
    margin: 0;
}
.logo-text {
    font-family: 'Fredoka', sans-serif; /* Our new "cute" font */
    font-size: 28px;
    font-weight: 600;
    color: #8C6F62; /* A soft brown from your font image */
    margin-left: 12px; /* Space between bunny and text */
}
/* Mobile Nav Menu */
.nav {
    display: none; 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    z-index: 100;
}
.nav.nav-open {
    display: flex; 
    flex-direction: column;
    justify-content: center;
    align: center;
}
.nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}
.nav li {
    margin: 20px 0;
}
.nav a {
    text-decoration: none;
    color: #333;
    font-size: 28px;
    font-weight: 500;
    padding: 10px;
    font-family: 'Raleway', sans-serif;
}
.nav a.active {
    color: #E89F9E;
}

.nav-toggle {
    display: block; 
    background: transparent;
    border: 0;
    cursor: pointer;
    z-index: 101;
}
.hamburger {
    display: block;
    width: 25px;
    height: 2px; /* NEW: Thinner lines */
    background: #333;
    position: relative;
    transition: all 0.3s ease;
}
.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px; /* NEW: Thinner lines */
    background: #333;
    left: 0;
    transition: all 0.3s ease;
}
.hamburger::before { top: -8px; }
.hamburger::after { bottom: -8px; }

.no-scroll {
    overflow: hidden;
}


/* ===== 3. PAGE SECTIONS (Homepage) ===== */

.hero {
    background-color: #fafafa; /* NEW: Light gray background */
    text-align: center;
    padding: 80px 0;
}
.hero h2 {
    font-size: 40px;
    font-weight: 300; /* NEW: Very light heading */
    color: #333;
}

/* Product Cards */
.featured-products .product-card,
.product-item-card {
    background: #fff;
    border: 1px solid #f5f5f5; /* NEW: Light border */
    border-radius: 8px;
    overflow: hidden;
    /* NEW: Very soft, subtle shadow */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}
.featured-products .product-card:hover,
.product-item-card:hover {
    transform: translateY(-5px); /* NEW: Softer hover */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.featured-products .product-carousel-placeholder {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 10px 0 20px 0;
}
.featured-products .product-card {
    flex: 0 0 220px;
    height: 280px;
    display: grid;
    place-items: center;
    font-weight: bold;
}

.custom-order-cta {
    background-color: #fafafa; /* NEW: Light gray */
    color: #333;
    text-align: center;
    padding: 80px 0;
}
.custom-order-cta .btn {
    background-color: #fff;
    border: 1px solid #eee;
    color: #333;
}
.custom-order-cta .btn:hover {
    background-color: #E89F9E;
    color: #fff;
    border-color: #E89F9E;
}

.testimonials .testimonial-card {
    background: #fafafa;
    border: 1px solid #f5f5f5;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 15px;
}
.testimonials .testimonial-card p {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 400;
    font-style: italic;
    color: #555;
    line-height: 1.7;
}


/* ===== 4. FOOTER (Minimalist) ===== */
.site-footer {
    background-color: #fafafa; 
    color: #777;
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid #f5f5f5;
}
.footer-links {
    margin: 20px 0;
}
.footer-links a {
    display: inline-block;
    margin: 0 10px;
    color: #555;
    text-decoration: none;
    font-weight: 600;
}
.footer-social {
    margin-bottom: 20px;
}
.footer-social a {
    display: inline-block;
    margin: 0 10px;
    color: #555;
    font-weight: bold;
    text-decoration: none;
    font-size: 18px;
}
.copyright {
    font-size: 14px;
}

/* ===== 5. WHATSAPP FLOAT BUTTON ===== */
/* (This style is good, we'll keep it) */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    z-index: 1000;
    transition: all 0.3s ease;
}
.whatsapp-float:hover {
    transform: scale(1.1);
}

/* ===== 6. SHOP PAGE STYLES ===== */

.shop-header {
    background-color: #fafafa;
    padding: 50px 0;
    text-align: center;
}

.shop-categories {
    padding-bottom: 20px;
}
.category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}
.category-btn {
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #f0f0f0;
    color: #555;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.category-btn:hover {
    background-color: #E89F9E;
    border-color: #E89F9E;
    color: #fff;
}
.category-btn.active {
    background-color: #E89F9E;
    border-color: #E89F9E;
    color: #fff;
}

/* Product Grid */
.grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 20px;
}

.product-image-placeholder {
    height: 180px;
    width: 100%;
    background-color: #f9f9f9;
    background-size: cover;
    background-position: center;
}
.product-item-card h3 {
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    font-size: 18px;
    padding: 15px 15px 0 15px;
    color: #333;
    margin-bottom: 5px;
}
.product-item-card .product-price {
    font-size: 16px;
    font-weight: bold;
    color: #E89F9E;
    padding: 0 15px 15px 15px;
    font-family: 'Nunito', sans-serif;
}
.product-item-card .btn {
    display: block;
    width: 90%;
    margin: 0 auto 15px auto;
}


/* ===== 8. PRODUCT DETAIL PAGE STYLES ===== */
.product-detail-image img {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #f5f5f5;
}
.product-detail-info {
    padding-top: 20px;
}
.product-detail-info h1 {
    font-size: 36px;
    font-weight: 400;
}
.product-detail-price {
    display: block;
    font-size: 28px;
    font-weight: 600;
    color: #E89F9E;
    margin-bottom: 20px;
    font-family: 'Nunito', sans-serif;
}
.product-description {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}
.product-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* ===== 10. CUSTOM ORDER FORM STYLES ===== */
.custom-order-page {
    background-color: #fafafa;
    padding: 40px 0;
}
.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #f5f5f5;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}
.form-container h2 {
    text-align: center;
    margin-bottom: 10px;
    font-weight: 400;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: 'Nunito', sans-serif;
    transition: all 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #E89F9E;
    box-shadow: 0 0 5px rgba(232, 159, 158, 0.5);
}
.form-group .btn {
    width: 100%;
    font-size: 16px;
    padding: 15px;
}

/* ===== 11. ABOUT PAGE STYLES ===== */
.about-hero {
    background-color: #fafafa;
    padding: 80px 0;
    text-align: center;
}
.about-hero h1 {
    font-size: 40px;
    font-weight: 300;
}

/* ===== 13. CONTACT PAGE STYLES ===== */
.contact-header h2 {
    font-size: 40px;
    font-weight: 300;
}
.contact-form-container {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #f5f5f5;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

/* ===== 15. SHOPPING CART STYLES ===== */
.cart-page h1 {
    font-size: 40px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 40px;
}
.cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}
.cart-table thead {
    border-bottom: 2px solid #f5f5f5;
}
.cart-table th {
    text-align: left;
    padding: 15px;
    font-size: 14px;
    text-transform: uppercase;
    color: #777;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
}
.product-info a {
    font-weight: 600;
    color: #333;
}
.cart-table td {
    border-bottom: 1px solid #f5f5f5;
}

/* ===== 18. CHECKOUT PAGE STYLES ===== */
.checkout-page h1 {
    text-align: center;
    font-size: 40px;
    font-weight: 300;
    margin-bottom: 40px;
}
.checkout-form-container .order-form {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #f5f5f5;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}
.checkout-summary-container {
    background: #fafafa;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #f5f5f5;
    margin-top: 30px;
}
.checkout-summary-container h3 {
    font-weight: 500;
}

/* ===== 19. THANK YOU PAGE STYLES ===== */
.thank-you-page {
    text-align: center;
    padding: 80px 0;
}
.thank-you-page h2 {
    font-size: 40px;
    font-weight: 400;
    color: #E89F9E;
}
.order-receipt {
    background: #fafafa;
    border: 1px solid #f5f5f5;
    padding: 20px;
    border-radius: 8px;
}


/* ==============================================
   DESKTOP MEDIA QUERIES
   ============================================== */
@media (min-width: 768px) {
    
    /* Show nav links, hide hamburger */
    .nav-toggle {
        display: none;
    }

    .nav {
        display: block;
        position: static;
        width: auto;
        height: auto;
        background: none;
        backdrop-filter: none;
    }
    .nav ul {
        display: flex;
    }
    .nav li {
        margin: 0 0 0 30px;
    }
    .nav a {
        font-size: 16px;
        font-weight: 500;
        color: #555;
    }
    .nav a:hover {
        color: #E89F9E;
    }
    .nav a.active {
        color: #E89F9E;
        font-weight: 700;
    }

    /* Hero */
    .hero {
        text-align: left;
    }
    .hero h2 {
        font-size: 52px;
    }

    /* Grids */
    .featured-products .product-carousel-placeholder {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
    .grid-container {
        grid-template-columns: repeat(3, 1fr); 
        gap: 25px;
    }
    
    /* Product Detail */
    .product-detail-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
    .product-detail-info h1 {
        font-size: 42px;
    }
    
    /* About Page */
    .about-layout {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 50px;
    }

    /* Contact Page */
    .contact-layout {
        display: grid;
        grid-template-columns: 3fr 2fr; 
        gap: 50px;
    }
    
    /* Checkout */
    .checkout-layout {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 40px;
    }
    .checkout-summary-container {
        margin-top: 0;
        position: sticky;
        top: 100px;
    }
}

/* Larger desktop */
@media (min-width: 1024px) {
    .grid-container {
        grid-template-columns: repeat(4, 1fr);
    }
    .product-image-placeholder {
        height: 250px;
    }
}
/* ==============================================
   V3.1 - VIBRANCY & NEW SECTIONS
   ============================================== */

/* --- 1. Vibrant Headings --- */
.section-subheading {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #E89F9E; /* Our pink accent */
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}
.section-heading {
    text-align: center;
    font-size: 30px;
    font-weight: 300;
    margin-top: 0;
    margin-bottom: 40px;
}
@media (min-width: 768px) {
    .section-heading {
        font-size: 40px;
    }
}

/* --- 2. NEW: Category Grid --- */
.category-grid-section {
    background-color: #fdfcfa; /* NEW: A warmer white */
}
.category-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.category-card {
    display: block;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}
.category-card:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
.category-card-image {
    width: 100%;
    /* Creates a 1:1 square aspect ratio */
    padding-bottom: 100%; 
    background-size: cover;
    background-position: center;
}
.category-card-title {
    position: absolute;
    bottom: 15px;
    left: 15px;
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: #333;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    padding: 5px 12px;
    border-radius: 5px;
}

/* --- 3. Dynamic Testimonials --- */
.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
.testimonials .testimonial-card {
    background: #fafafa;
    border: 1px solid #f5f5f5;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 0;
    position: relative;
}
/* This adds the "quote" icon for personality */
.testimonials .testimonial-card::before {
    content: '“';
    font-family: 'Lora', serif; /* Use an elegant font */
    font-size: 100px;
    font-weight: 700;
    color: #E89F9E;
    opacity: 0.2;
    position: absolute;
    top: -10px;
    left: 10px;
    line-height: 1;
}
.testimonial-quote {
    font-family: 'Raleway', sans-serif;
    font-size: 17px;
    font-weight: 400;
    font-style: italic;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}
.testimonial-author {
    font-weight: 700;
    color: #333;
    position: relative;
    z-index: 2;
}

/* --- 4. Desktop Grids --- */
@media (min-width: 768px) {
    .category-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .testimonial-grid {
        grid-template-columns: 1fr 1fr;
    }
}