/*
Theme Name: Just For U
Theme URI: https://www.justforu.in
Author: Just For U Team
Author URI: https://www.justforu.in
Description: Custom WordPress theme for Just For U - Baby & Kids Products Store. Vibrant, mobile-first, SEO-optimized design inspired by Hamleys. NO Elementor Pro required - built with pure PHP/HTML/CSS.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.4
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: justforu
Tags: e-commerce, woocommerce, kids, baby, colorful, responsive, mobile-first

This theme supports WooCommerce and works WITHOUT Elementor Pro.
*/

/* ==========================================================================
   CSS VARIABLES - DESIGN SYSTEM
   ========================================================================== */

:root {
    /* Primary Colors */
    --primary-pink: #FF4B8C;
    --primary-blue: #4BA3FF;
    --primary-yellow: #FFD54B;
    --primary-green: #4BFF8C;
    --primary-purple: #A34BFF;

    /* Category Colors */
    --boys-color: #4BA3FF;
    --girls-color: #FF4B8C;
    --infant-color: #FFD54B;
    --toys-color: #4BFF8C;
    --accessories-color: #A34BFF;

    /* Neutral Colors */
    --white: #FFFFFF;
    --black: #000000;
    --gray-100: #F7F7F7;
    --gray-200: #E8E8E8;
    --gray-300: #D1D1D1;
    --gray-400: #A8A8A8;
    --gray-500: #808080;
    --gray-600: #5C5C5C;
    --gray-700: #383838;
    --gray-800: #1F1F1F;

    /* Semantic Colors */
    --success: #4BFF8C;
    --warning: #FFD54B;
    --error: #FF4B4B;
    --info: #4BA3FF;

    /* Typography */
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-secondary: 'Quicksand', sans-serif;

    /* Font Sizes */
    --text-xs: 0.75rem;
    /* 12px */
    --text-sm: 0.875rem;
    /* 14px */
    --text-base: 1rem;
    /* 16px */
    --text-lg: 1.125rem;
    /* 18px */
    --text-xl: 1.25rem;
    /* 20px */
    --text-2xl: 1.5rem;
    /* 24px */
    --text-3xl: 1.875rem;
    /* 30px */
    --text-4xl: 2.25rem;
    /* 36px */
    --text-5xl: 3rem;
    /* 48px */

    /* Spacing */
    --space-xs: 0.25rem;
    /* 4px */
    --space-sm: 0.5rem;
    /* 8px */
    --space-md: 1rem;
    /* 16px */
    --space-lg: 1.5rem;
    /* 24px */
    --space-xl: 2rem;
    /* 32px */
    --space-2xl: 3rem;
    /* 48px */
    --space-3xl: 4rem;
    /* 64px */

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;

    /* Z-Index Scale */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */

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

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    overflow-x: hidden;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-md);
    color: var(--gray-800);
}

h1 {
    font-size: var(--text-5xl);
}

h2 {
    font-size: var(--text-4xl);
}

h3 {
    font-size: var(--text-3xl);
}

h4 {
    font-size: var(--text-2xl);
}

h5 {
    font-size: var(--text-xl);
}

h6 {
    font-size: var(--text-lg);
}

p {
    margin-bottom: var(--space-md);
}

a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

/* ==========================================================================
   LAYOUT
   ========================================================================== */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.container-fluid {
    width: 100%;
    padding: 0 var(--space-md);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-sm) var(--space-lg);
    font-family: var(--font-secondary);
    font-size: var(--text-base);
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
}

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

.btn-primary:hover {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

/* ==========================================================================
   HOMEPAGE SECTIONS
   ========================================================================== */

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--primary-blue) 100%);
    color: var(--white);
    text-align: center;
    padding: var(--space-3xl) var(--space-md);
}

.hero-content h1 {
    font-size: var(--text-5xl);
    color: var(--white);
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.8s ease;
}

.hero-content p {
    font-size: var(--text-xl);
    margin-bottom: var(--space-2xl);
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

/* Category Cards */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    padding: var(--space-2xl) 0;
}

.category-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.category-card-boys {
    background: var(--boys-color);
}

.category-card-girls {
    background: var(--girls-color);
}

.category-card-infant {
    background: var(--infant-color);
}

.category-card-toys {
    background: var(--toys-color);
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-lg);
    padding: var(--space-2xl) 0;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

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

@media (max-width: 768px) {
    :root {
        --text-5xl: 2rem;
        --text-4xl: 1.75rem;
        --text-3xl: 1.5rem;
    }

    .hero-section {
        min-height: 400px;
        padding: var(--space-2xl) var(--space-md);
    }

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

    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: var(--space-md);
    }
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes confetti {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }

    100% {
        transform: translateY(20px) rotate(15deg);
        opacity: 0.7;
    }
}

/* ==========================================================================
   HOMEPAGE V2 - VIBRANT DESIGN
   ========================================================================== */

/* Hero Section V2 */
.hero-section-v2 {
    position: relative;
    min-height: 600px;
    background: linear-gradient(135deg, #fff5f8 0%, #f0f8ff 50%, #fff9e6 100%);
    padding: var(--space-2xl) var(--space-md);
    overflow: hidden;
}

.hero-decorations {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.confetti {
    position: absolute;
    font-size: 2rem;
    animation: float 3s ease-in-out infinite;
}

.confetti-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.confetti-2 {
    top: 20%;
    right: 10%;
    animation-delay: 0.5s;
}

.confetti-3 {
    bottom: 30%;
    left: 15%;
    animation-delay: 1s;
}

.confetti-4 {
    bottom: 20%;
    right: 5%;
    animation-delay: 1.5s;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-2xl);
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
    max-width: 500px;
}

.tagline-image {
    max-width: 280px;
    height: auto;
    margin-bottom: var(--space-sm);
    mix-blend-mode: multiply;
}

.hero-tagline-english {
    font-size: var(--text-lg);
    color: var(--primary-pink);
    font-weight: 600;
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-section-v2 .hero-title {
    font-size: var(--text-5xl);
    color: var(--gray-800);
    margin-bottom: var(--space-md);
    line-height: 1.1;
}

.hero-section-v2 .hero-subtitle {
    font-size: var(--text-lg);
    color: var(--gray-600);
    margin-bottom: var(--space-xl);
}

.hero-section-v2 .hero-buttons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.btn-lg {
    padding: var(--space-md) var(--space-xl);
    font-size: var(--text-lg);
}

.hero-image {
    flex: 1;
    max-width: 550px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

/* Features Bar */
.features-bar {
    background: var(--white);
    padding: var(--space-lg) 0;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.features-row {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-lg);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.feature-icon {
    font-size: 2rem;
}

.feature-text {
    display: flex;
    flex-direction: column;
}

.feature-text strong {
    font-weight: 600;
    color: var(--gray-800);
}

.feature-text span {
    font-size: var(--text-sm);
    color: var(--gray-500);
}

/* Category Section V2 */
.category-section-v2 {
    padding: var(--space-3xl) 0;
    background: var(--gray-100);
}

.section-subtitle {
    text-align: center;
    color: var(--gray-500);
    margin-bottom: var(--space-2xl);
    font-size: var(--text-lg);
}

.category-grid-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.category-card-v2 {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 3/4;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.category-card-v2:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.category-link-v2 {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.category-image-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-lg);
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: var(--white);
}

.category-name-v2 {
    font-size: var(--text-2xl);
    font-weight: 700;
    margin-bottom: var(--space-xs);
    color: var(--white);
}

.category-cta-v2 {
    font-size: var(--text-sm);
    opacity: 0.9;
}

/* Products Section Updates */
.products-section {
    padding: var(--space-3xl) 0;
}

.section-title {
    text-align: center;
    margin-bottom: var(--space-sm);
}

.section-cta {
    text-align: center;
    margin-top: var(--space-2xl);
}

/* Store Section V2 */
.store-section-v2 {
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--primary-blue) 100%);
    padding: var(--space-3xl) 0;
    color: var(--white);
}

.store-content-v2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-2xl);
}

.store-text h2 {
    font-size: var(--text-4xl);
    color: var(--white);
    margin-bottom: var(--space-md);
}

.store-text p {
    font-size: var(--text-lg);
    opacity: 0.9;
    margin-bottom: var(--space-xl);
}

.store-section-v2 .btn-primary {
    background: var(--white);
    color: var(--primary-pink);
    border-color: var(--white);
}

.store-section-v2 .btn-primary:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

.store-stats {
    display: flex;
    gap: var(--space-2xl);
}

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

.stat-number {
    display: block;
    font-size: var(--text-5xl);
    font-weight: 700;
}

.stat-label {
    font-size: var(--text-base);
    opacity: 0.9;
}

/* Instagram Section */
.instagram-section {
    padding: var(--space-3xl) 0;
    background: white;
}

.instagram-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.instagram-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: var(--space-md);
}

.instagram-feed-wrapper {
    margin-bottom: var(--space-xl);
}

/* Override Instagram feed plugin styles for better integration */
.instagram-feed-wrapper #sb_instagram {
    padding: 0 !important;
}

.instagram-feed-wrapper .sbi_photo_wrap {
    border-radius: var(--radius-lg) !important;
    overflow: hidden;
}

.instagram-cta {
    text-align: center;
}

.instagram-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
}

/* Newsletter V2 */
.newsletter-section-v2 {
    padding: var(--space-3xl) 0;
    background: var(--gray-100);
}

.newsletter-content-v2 {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.newsletter-content-v2 h2 {
    margin-bottom: var(--space-sm);
}

.newsletter-content-v2 p {
    color: var(--gray-600);
    margin-bottom: var(--space-xl);
}

.newsletter-form-v2 {
    display: flex;
    gap: var(--space-md);
    max-width: 450px;
    margin: 0 auto;
}

.newsletter-form-v2 input {
    flex: 1;
    padding: var(--space-md);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: var(--text-base);
}

.newsletter-form-v2 input:focus {
    outline: none;
    border-color: var(--primary-pink);
}

/* ==========================================================================
   RESPONSIVE V2
   ========================================================================== */

@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-section-v2 .hero-buttons {
        justify-content: center;
    }

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

    .store-content-v2 {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-section-v2 {
        min-height: auto;
        padding: var(--space-xl) var(--space-md);
    }

    .tagline-image {
        max-width: 200px;
    }

    .features-row {
        flex-direction: column;
        text-align: center;
    }

    .feature-item {
        flex-direction: column;
    }

    .category-grid-v2 {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-md);
    }

    .store-stats {
        flex-direction: column;
        gap: var(--space-lg);
    }

    .newsletter-form-v2 {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .category-grid-v2 {
        grid-template-columns: 1fr;
    }

    .hero-section-v2 .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-section-v2 .hero-buttons .btn {
        width: 100%;
    }
}

/* ==========================================================================
   ENHANCED VIBRANT STYLES - INSPIRED BY RFORRABBIT
   ========================================================================== */

/* Gradient Text Effect */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--primary-purple) 50%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Pulse Animation for CTA Buttons */
.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 75, 140, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 75, 140, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 75, 140, 0);
    }
}

/* Additional Confetti Positions */
.confetti-5 {
    top: 50%;
    left: 25%;
    animation-delay: 2s;
}

.confetti-6 {
    bottom: 40%;
    right: 25%;
    animation-delay: 2.5s;
}

/* Enhanced Button Styles */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
}

.btn:hover::before {
    left: 100%;
}

/* Glassmorphism Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-xl);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
}

/* Product Card Enhancements */
.woocommerce ul.products li.product {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-10px) scale(1.02);
}

/* Enhanced Sale Badge */
.woocommerce ul.products li.product .onsale {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    animation: wiggle 2s infinite;
}

@keyframes wiggle {

    0%,
    100% {
        transform: rotate(-3deg);
    }

    50% {
        transform: rotate(3deg);
    }
}

/* Category Card Hover Glow */
.category-card-v2:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2),
        0 0 30px var(--card-color, rgba(255, 75, 140, 0.3));
}

/* Smooth Scroll Reveal Animation */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title {
    animation: slideUp 0.6s ease-out;
}

/* Feature Items Hover */
.feature-item {
    transition: all 0.3s ease;
    padding: var(--space-md);
    border-radius: var(--radius-lg);
}

.feature-item:hover {
    background: rgba(255, 75, 140, 0.1);
    transform: scale(1.05);
}

/* Newsletter Input Focus */
.newsletter-form-v2 input:focus {
    box-shadow: 0 0 0 4px rgba(255, 75, 140, 0.2);
}

/* Store Section Gradient Enhancement */
.store-section-v2 {
    background: linear-gradient(135deg, var(--primary-pink) 0%, #9c27b0 50%, var(--primary-blue) 100%);
    background-size: 200% 200%;
    animation: gradientShift 10s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Products Grid Enhancement */
.product-grid,
ul.products {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
    gap: 25px !important;
}

/* Add to Cart Button Gradient */
.woocommerce ul.products li.product .button,
.woocommerce .button.add_to_cart_button {
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--primary-purple) 100%) !important;
    border: none !important;
    color: white !important;
    font-weight: 600 !important;
    padding: 12px 24px !important;
    border-radius: 25px !important;
    transition: all 0.3s ease !important;
}

.woocommerce ul.products li.product .button:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 30px rgba(255, 75, 140, 0.4) !important;
}

/* Hero Image Enhancement */
.hero-image img {
    transition: transform 0.5s ease;
}

.hero-image:hover img {
    transform: scale(1.03) rotate(1deg);
}

/* Loading Shimmer Effect */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.loading-shimmer {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

/* Price Styling */
.woocommerce ul.products li.product .price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-pink);
}

.woocommerce ul.products li.product .price del {
    color: var(--gray-400);
    font-size: 0.9rem;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 30px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

/* Responsive Enhancements */
@media (max-width: 768px) {

    .product-grid,
    ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {

    .product-grid,
    ul.products {
        grid-template-columns: 1fr !important;
    }
}

/* ==========================================================================
   WOOCOMMERCE PRODUCT GRID - STRONG OVERRIDE
   Forces 3-column grid on all WooCommerce product listing pages
   ========================================================================== */

/* Main Grid - 3 columns on desktop */
.woocommerce ul.products,
.woocommerce-page ul.products,
ul.products,
.products-container ul.products,
body.woocommerce ul.products,
body.woocommerce-page ul.products,
.ast-container ul.products,
#primary ul.products,
.site-content ul.products {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 25px !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
}

/* Override individual product width */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product,
ul.products li.product,
body.woocommerce ul.products li.product {
    width: auto !important;
    max-width: 100% !important;
    float: none !important;
    clear: none !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #fff !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05) !important;
    transition: all 0.3s ease !important;
}

.woocommerce ul.products li.product img,
.woocommerce-page ul.products li.product img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1;
    object-fit: cover !important;
    margin: 0 !important;
    display: block !important;
}

/* Product hover effect */
.woocommerce ul.products li.product:hover,
ul.products li.product:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12) !important;
}

/* Tablet - 2 columns */
@media (max-width: 991px) {

    .woocommerce ul.products,
    .woocommerce-page ul.products,
    ul.products,
    body.woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Mobile - 2 columns still, or 1 on very small */
@media (max-width: 600px) {

    .woocommerce ul.products,
    .woocommerce-page ul.products,
    ul.products,
    body.woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
}

@media (max-width: 380px) {

    .woocommerce ul.products,
    .woocommerce-page ul.products,
    ul.products {
        grid-template-columns: 1fr !important;
    }
}

/* ==========================================================================
   TRUST-FOCUSED HOMEPAGE - NEW DESIGN (Jan 2026)
   Clean, calm, parent-friendly design
   ========================================================================== */

/* City Strip - Like Momatos */
.city-strip {
    background: linear-gradient(90deg, #FF4B8C 0%, #4BA3FF 100%);
    color: #fff;
    padding: 10px 0;
    text-align: center;
    font-size: 14px;
}

.city-strip .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.city-strip-icon {
    font-size: 16px;
}

.city-strip-text {
    color: #fff;
}

.city-strip-text strong {
    font-weight: 700;
}

/* Hero Section - Trust Focused */
.hero-section-trust {
    background: linear-gradient(135deg, #FFF5F8 0%, #F8FBFF 50%, #FFFBF0 100%);
    padding: 60px 20px;
    min-height: 500px;
}

.hero-section-trust .hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-section-trust .hero-text {
    flex: 1;
    max-width: 550px;
}

.hero-section-trust .hero-title {
    font-size: 2.8rem;
    line-height: 1.15;
    color: #1F1F1F;
    margin-bottom: 16px;
    font-family: var(--font-secondary);
}

.hero-highlight {
    color: #FF4B8C;
    display: block;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #4BA3FF, #FF4B8C);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 600;
    margin-left: 8px;
    vertical-align: middle;
}

.hero-section-trust .hero-subtitle {
    font-size: 1.1rem;
    color: #5C5C5C;
    line-height: 1.6;
    margin-bottom: 28px;
}

.hero-section-trust .hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-section-trust .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-icon {
    font-size: 1.1em;
}

.hero-section-trust .hero-image {
    flex: 1;
    max-width: 500px;
}

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

/* Trust Signal Strip */
.trust-strip {
    background: #fff;
    padding: 24px 0;
    border-bottom: 1px solid #E8E8E8;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #F7F7F7;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.trust-item:hover {
    background: #FFF5F8;
    transform: translateY(-2px);
}

.trust-icon {
    font-size: 2rem;
    line-height: 1;
}

.trust-text {
    display: flex;
    flex-direction: column;
}

.trust-text strong {
    font-weight: 600;
    color: #1F1F1F;
    font-size: 0.95rem;
}

.trust-text span {
    font-size: 0.8rem;
    color: #808080;
}

/* Shop by Need Section */
.shop-by-need-section {
    padding: 60px 0;
    background: #FAFAFA;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header .section-title {
    font-size: 2rem;
    color: #1F1F1F;
    margin-bottom: 8px;
}

.section-header .section-subtitle {
    font-size: 1rem;
    color: #808080;
    margin-bottom: 0;
}

.needs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.need-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--card-bg, #F7F7F7);
    border-radius: 16px;
    text-decoration: none;
    color: #1F1F1F;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.need-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-color: #FF4B8C;
    color: #1F1F1F;
}

.need-icon {
    font-size: 2.5rem;
    line-height: 1;
}

.need-content {
    flex: 1;
}

.need-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
    margin-top: 0;
}

.need-subtitle {
    font-size: 0.85rem;
    color: #808080;
}

.need-arrow {
    font-size: 1.5rem;
    color: #FF4B8C;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.need-card:hover .need-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Why Us Section */
.why-us-section {
    padding: 80px 0;
    background: #fff;
}

.why-us-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    align-items: start;
}

.why-us-text .section-title {
    text-align: left;
    margin-bottom: 32px;
}

.why-us-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-us-list li {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid #E8E8E8;
}

.why-us-list li:last-child {
    border-bottom: none;
}

.check-icon {
    width: 32px;
    height: 32px;
    background: #E8F5E9;
    color: #2E7D32;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.why-us-list li div strong {
    display: block;
    font-size: 1rem;
    color: #1F1F1F;
    margin-bottom: 4px;
}

.why-us-list li div span {
    font-size: 0.9rem;
    color: #808080;
}

.why-us-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-card {
    background: linear-gradient(135deg, #FFF5F8, #F8FBFF);
    padding: 24px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid #E8E8E8;
}

.stat-card .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #FF4B8C;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-card .stat-label {
    font-size: 0.9rem;
    color: #5C5C5C;
}

/* Category Section (Simplified) */
.category-section {
    padding: 60px 0;
    background: #F7F7F7;
}

.category-section .category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.category-section .category-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.category-section .category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--card-accent);
}

.category-image-wrap {
    aspect-ratio: 1;
    overflow: hidden;
}

.category-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.category-info {
    padding: 16px;
    text-align: center;
    border-top: 3px solid var(--card-accent, #E8E8E8);
}

.category-name {
    font-size: 1.1rem;
    color: #1F1F1F;
    margin: 0 0 4px 0;
}

.category-cta {
    font-size: 0.85rem;
    color: var(--card-accent, #FF4B8C);
    font-weight: 600;
}

/* Products Section */
.products-section {
    padding: 60px 0;
    background: #fff;
}

.products-section .section-header {
    margin-bottom: 32px;
}

/* Stores Section - Homepage */
.stores-section-home {
    padding: 80px 0;
    background: linear-gradient(135deg, #FF4B8C 0%, #4BA3FF 100%);
    color: #fff;
}

.stores-header {
    text-align: center;
    margin-bottom: 48px;
}

.stores-header .section-title {
    color: #fff;
    font-size: 2.2rem;
    margin-bottom: 8px;
}

.stores-header .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.stores-highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.store-card-home {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.store-card-home .store-icon {
    font-size: 2rem;
}

.store-card-home .store-info h4 {
    color: #fff;
    font-size: 1rem;
    margin: 0 0 4px 0;
}

.store-card-home .store-area {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.store-actions {
    display: flex;
    gap: 8px;
    margin-top: auto;
}

.store-btn {
    flex: 1;
    padding: 10px 12px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.store-btn.call {
    background: #fff;
    color: #FF4B8C;
}

.store-btn.directions {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.store-btn:hover {
    transform: translateY(-2px);
}

.stores-cta {
    text-align: center;
}

.stores-section-home .btn-primary {
    background: #fff;
    color: #FF4B8C;
    border-color: #fff;
    padding: 16px 40px;
    font-size: 1.1rem;
}

.stores-section-home .btn-primary:hover {
    background: #F7F7F7;
}

/* Omnichannel Strip */
.omnichannel-strip {
    padding: 60px 0;
    background: #FAFAFA;
}

.omnichannel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.omnichannel-card {
    background: #fff;
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid #E8E8E8;
    transition: all 0.3s ease;
}

.omnichannel-card:hover {
    border-color: #FF4B8C;
    transform: translateY(-4px);
}

.omnichannel-card.featured {
    border-color: #FF4B8C;
    background: linear-gradient(135deg, #FFF5F8, #fff);
}

.omnichannel-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.omnichannel-card h3 {
    font-size: 1.3rem;
    color: #1F1F1F;
    margin-bottom: 8px;
}

.omnichannel-card p {
    font-size: 0.95rem;
    color: #808080;
    margin-bottom: 20px;
}

/* Newsletter Section */
.newsletter-section {
    padding: 60px 0;
    background: #fff;
    border-top: 1px solid #E8E8E8;
}

.newsletter-content {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.newsletter-content p {
    color: #808080;
    margin-bottom: 24px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid #E8E8E8;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter-form input[type="email"]:focus {
    border-color: #FF4B8C;
}

/* Responsive - Trust Homepage */
@media (max-width: 1024px) {
    .hero-section-trust .hero-title {
        font-size: 2.2rem;
    }

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

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

    .why-us-content {
        grid-template-columns: 1fr;
    }

    .why-us-stats {
        flex-direction: row;
        justify-content: center;
    }

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

@media (max-width: 768px) {
    .city-strip {
        font-size: 12px;
        padding: 8px 0;
    }

    .hero-section-trust {
        padding: 40px 20px;
    }

    .hero-section-trust .hero-container {
        flex-direction: column;
        text-align: center;
    }

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

    .hero-badge {
        display: block;
        margin: 12px auto 0;
        width: fit-content;
    }

    .hero-section-trust .hero-buttons {
        justify-content: center;
    }

    .trust-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .trust-item {
        flex-direction: column;
        text-align: center;
        padding: 16px 12px;
    }

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

    .need-card {
        padding: 16px 20px;
    }

    .section-header .section-title {
        font-size: 1.6rem;
    }

    .why-us-stats {
        flex-direction: column;
    }

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

    .stores-highlight-grid {
        grid-template-columns: 1fr;
    }

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

    .newsletter-form {
        flex-direction: column;
    }
}

/* ==========================================================================
   FIX: Products Grid Layout
   Fixes the issue where product cards appear as full-width/zoomed images
   ========================================================================== */

.products-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
    gap: 20px;
}

/* Fix stretched/distorted product images - essential for grid layout */
.jfu-main-image img,
.product-card-image img,
.product-image img,
.product-card img {
    object-fit: contain !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: 250px !important; /* Constrain height to prevent massive zoom */
    width: auto !important;
    margin: 0 auto;
    display: block;
}

/* Ensure product cards don't expand to full width */
.product-card,
.product-card-v2 {
    max-width: 100%;
    width: 100%;
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px;
    }
}