/**
 * PetDealsClub - Modern Redesign
 * Professional, pet-friendly design system
 */

/* ========================================
   GOOGLE FONTS
   ======================================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Nunito:wght@400;500;600;700&display=swap');

/* ========================================
   CSS CUSTOM PROPERTIES - COLOR PALETTE
   ======================================== */
:root {
    /* Primary - Warm Orange/Coral */
    --primary-base: #FF6B35;
    --primary-hover: #E85A2A;
    --primary-light: #FFF0EB;
    --primary-dark: #CC4520;

    /* Secondary - Teal/Mint */
    --secondary-base: #2EC4B6;
    --secondary-hover: #25A094;
    --secondary-light: #E8F8F6;

    /* Accent - Warm Yellow */
    --accent-base: #FFB347;
    --accent-hover: #FFA026;

    /* Neutral Scale */
    --neutral-50: #FAFAF9;
    --neutral-100: #F5F5F4;
    --neutral-200: #E7E5E4;
    --neutral-300: #D6D3D1;
    --neutral-400: #A8A29E;
    --neutral-500: #78716C;
    --neutral-600: #57534E;
    --neutral-700: #44403C;
    --neutral-800: #292524;
    --neutral-900: #1C1917;

    /* Semantic Colors */
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;
    --info: #3B82F6;

    /* Spacing Scale */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    --spacing-4xl: 6rem;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --shadow-card: 0 2px 8px 0 rgb(0 0 0 / 0.08);
    --shadow-card-hover: 0 12px 24px 0 rgb(0 0 0 / 0.12);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 250ms ease;
    --transition-slow: 350ms ease;
}

/* ========================================
   BASE STYLES
   ======================================== */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--neutral-700);
    background-color: var(--neutral-50);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--neutral-800);
}

h1 { font-size: 2.5rem; letter-spacing: -0.02em; }
h2 { font-size: 2rem; letter-spacing: -0.015em; }
h3 { font-size: 1.5rem; letter-spacing: -0.01em; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
}

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

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

/* ========================================
   NAVBAR STYLES
   ======================================== */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--neutral-200);
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* FIX 2: Logo prominence - larger, bolder logo */
.navbar .logo-link {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-base);
    text-shadow: 0 2px 4px rgba(255, 107, 53, 0.15);
    transition: all var(--transition-fast);
}

.navbar .logo-link:hover {
    color: var(--primary-hover);
    text-shadow: 0 2px 8px rgba(255, 107, 53, 0.25);
    transform: translateY(-1px);
}

.navbar .logo-link .logo-emoji {
    font-size: 2rem;
}

.navbar .btn-ghost {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--primary-base) !important;
    transition: all var(--transition-fast);
}

.navbar .btn-ghost:hover {
    color: var(--primary-hover) !important;
    transform: translateY(-1px);
}

/* FIX 4: Nav hover effects - smooth underline highlight */
.navbar .menu-horizontal li a {
    font-weight: 600;
    color: var(--neutral-600);
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
    position: relative;
}

.navbar .menu-horizontal li a::after {
    content: '';
    position: absolute;
    bottom: 0.25rem;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: var(--primary-base);
    transition: transform 0.2s ease;
}

.navbar .menu-horizontal li a:hover {
    color: var(--primary-base);
    background-color: var(--primary-light);
}

.navbar .menu-horizontal li a:hover::after {
    transform: translateX(-50%) scaleX(1);
}

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

/* Hero Slideshow */
.hero-slideshow {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    border-radius: var(--radius-2xl);
    margin-bottom: var(--spacing-3xl);
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.5));
    z-index: 3;
    pointer-events: none;
}

.hero-slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-slide-content h1 {
    color: white;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-slide-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* Slide Indicators */
.hero-slideshow-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.hero-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

.hero-indicator.active {
    background: white;
    transform: scale(1.2);
}

/* Original hero-custom (fallback for other pages) */
.hero-custom {
    background: linear-gradient(135deg, var(--primary-base) 0%, var(--accent-base) 100%);
    border-radius: var(--radius-2xl);
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
    margin-bottom: var(--spacing-3xl);
}

/* FIX 1: Darker overlay for better text contrast */
.hero-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.4));
    z-index: 1;
}

.hero-custom::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="paw-pattern" x="0" y="0" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="3" fill="white" fill-opacity="0.05"/></pattern></defs><rect width="100%" height="100%" fill="url(%23paw-pattern)"/></svg>');
    opacity: 0.2;
    z-index: 1;
}

.hero-custom .relative.z-10 {
    position: relative;
    z-index: 10;
}

.hero-custom .hero-title {
    color: white;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.hero-custom .hero-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* ========================================
   BUTTON STYLES
   ======================================== */
.btn-custom-primary {
    background: var(--primary-base);
    color: white;
    border: none;
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
    box-shadow: 0 4px 14px 0 rgba(255, 107, 53, 0.39);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.btn-custom-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(255, 107, 53, 0.23);
    color: white;
}

.btn-custom-secondary {
    background: white;
    color: var(--primary-base);
    border: 2px solid white;
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.btn-custom-secondary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    color: var(--primary-base);
}

/* FIX 5: Button enhancements - more clickable CTAs */
.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-base) 0%, var(--accent-base) 100%);
    color: white;
    border: none;
    padding: 1.125rem 2.5rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    transition: all 0.2s ease;
    box-shadow: 0 6px 20px 0 rgba(255, 107, 53, 0.4);
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px 0 rgba(255, 107, 53, 0.45);
    color: white;
}

.btn-cta:active {
    transform: translateY(0);
    box-shadow: 0 4px 14px 0 rgba(255, 107, 53, 0.3);
}

/* ========================================
   CARD STYLES
   ======================================== */
/* FIX 3: Card consistency - ensure equal height with grid */
.card-modern {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    transition: all var(--transition-normal);
    overflow: hidden;
    border: 1px solid var(--neutral-100);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-modern:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
    border-color: var(--primary-light);
}

.card-modern .card-image-wrapper {
    flex-shrink: 0;
    overflow: hidden;
}

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

.card-modern:hover .card-image {
    transform: scale(1.05);
}

.card-modern .card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-modern .card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--neutral-800);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.card-modern .card-excerpt {
    font-size: 0.875rem;
    color: var(--neutral-500);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.card-modern .card-meta {
    display: flex;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--neutral-100);
    background: var(--neutral-50);
    flex-shrink: 0;
    margin-top: auto;
}

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

.card-modern:hover .card-image {
    transform: scale(1.05);
}

.card-modern .card-content {
    padding: 1.5rem;
}

.card-modern .card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--neutral-800);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.card-modern .card-excerpt {
    font-size: 0.875rem;
    color: var(--neutral-500);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-modern .card-meta {
    display: flex;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--neutral-100);
    background: var(--neutral-50);
}

.card-modern .card-meta-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    color: var(--neutral-500);
    font-weight: 500;
}

/* ========================================
   CATEGORY CARD
   ======================================== */
.category-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.category-card:hover {
    border-color: var(--primary-base);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.category-card .category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.category-card .category-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--neutral-800);
}

/* ========================================
   PRODUCT CARD
   ======================================== */
.product-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all var(--transition-normal);
    border: 1px solid var(--neutral-100);
    position: relative;
}

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

.product-card .product-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: var(--success);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    z-index: 10;
}

.product-card .product-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
    padding: 1.5rem;
    background: var(--neutral-50);
}

.product-card .product-info {
    padding: 1.25rem;
}

.product-card .product-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--neutral-800);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.product-card .product-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-base);
    margin-bottom: 0.25rem;
}

.product-card .product-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.product-card .product-rating .stars {
    color: var(--warning);
    font-size: 0.875rem;
}

.product-card .product-rating .count {
    font-size: 0.75rem;
    color: var(--neutral-500);
}

.product-card .btn-buy {
    width: 100%;
    background: var(--primary-base);
    color: white;
    border: none;
    padding: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.product-card .btn-buy:hover {
    background: var(--primary-hover);
    color: white;
}

/* ========================================
   PRODUCT CARD INLINE (Article Content)
   ======================================== */
.product-recommendations-inline {
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-light) 0%, #FFF5F0 100%);
    border-radius: var(--radius-xl);
    border: 1px solid var(--primary-light);
}

.product-recommendations-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neutral-800);
    margin-bottom: 1.5rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.product-recommendations-title::before {
    content: '🛒';
    font-size: 1.75rem;
}

.product-grid-inline {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.product-card-inline {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--neutral-100);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.product-card-inline:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
    border-color: var(--primary-base);
}

.product-card-inline-image {
    width: 100%;
    height: 200px;
    background: var(--neutral-50);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    flex-shrink: 0;
}

.product-card-inline-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform var(--transition-slow);
}

.product-card-inline:hover .product-card-inline-image img {
    transform: scale(1.05);
}

.product-card-inline-content {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-card-inline-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--neutral-800);
    margin-bottom: 0.75rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-inline-title a {
    color: inherit;
    transition: color var(--transition-fast);
}

.product-card-inline-title a:hover {
    color: var(--primary-base);
}

.product-card-inline-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    flex-grow: 1;
}

.product-card-inline-features .product-card-bullet {
    font-size: 0.875rem;
    color: var(--neutral-600);
    padding-left: 1.25rem;
    margin-bottom: 0.375rem;
    position: relative;
    line-height: 1.4;
}

.product-card-inline-features .product-card-bullet::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
    font-size: 0.75rem;
    top: 2px;
}

.product-card-inline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--primary-base);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.875rem;
    text-align: center;
    text-decoration: none;
    transition: all var(--transition-fast);
    width: 100%;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.2);
}

.product-card-inline-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    color: white;
}

.product-card-inline-btn svg {
    transition: transform var(--transition-fast);
}

.product-card-inline-btn:hover svg {
    transform: translateX(2px);
}

/* Responsive adjustments for inline product cards */
@media (max-width: 768px) {
    .product-recommendations-inline {
        padding: 1.5rem 1rem;
    }

    .product-grid-inline {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .product-card-inline {
        flex-direction: row;
    }

    .product-card-inline-image {
        width: 120px;
        height: 120px;
        flex-shrink: 0;
    }

    .product-card-inline-content {
        padding: 0.875rem;
    }

    .product-card-inline-title {
        font-size: 0.9375rem;
    }

    .product-card-inline-features .product-card-bullet {
        font-size: 0.8125rem;
    }
}

@media (max-width: 480px) {
    .product-card-inline {
        flex-direction: column;
    }

    .product-card-inline-image {
        width: 100%;
        height: 180px;
    }
}

/* ========================================
   TRUST SIGNALS BAR
   ======================================== */
.trust-bar {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2rem;
    margin-bottom: var(--spacing-3xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--neutral-200);
}

.trust-bar .trust-item {
    text-align: center;
    padding: 0.5rem;
}

.trust-bar .trust-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    display: block;
}

.trust-bar .trust-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-base);
    margin-bottom: 0.25rem;
}

.trust-bar .trust-desc {
    font-size: 0.875rem;
    color: var(--neutral-500);
}

/* ========================================
   SECTION HEADERS
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.section-header .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--neutral-800);
    margin-bottom: 0.75rem;
}

.section-header .section-subtitle {
    font-size: 1.125rem;
    color: var(--neutral-500);
}

/* ========================================
   NEWSLETTER SECTION
   ======================================== */
.newsletter-section {
    background: linear-gradient(135deg, var(--secondary-base) 0%, #20A094 100%);
    border-radius: var(--radius-2xl);
    padding: 3rem 2rem;
    text-align: center;
    color: white;
    margin-bottom: var(--spacing-3xl);
}

.newsletter-section .newsletter-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.newsletter-section .newsletter-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.newsletter-section .newsletter-text {
    font-size: 1.125rem;
    opacity: 0.95;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-section .newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 450px;
    margin: 0 auto;
}

.newsletter-section .newsletter-input {
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    border: none;
    font-size: 1rem;
    font-family: 'Nunito', sans-serif;
}

.newsletter-section .newsletter-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.newsletter-section .newsletter-btn {
    padding: 1rem 2rem;
    background: var(--primary-base);
    color: white;
    border: none;
    font-weight: 700;
    border-radius: var(--radius-lg);
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: all var(--transition-fast);
}

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

/* ========================================
   FOOTER
   ======================================== */
.footer-modern {
    background: var(--neutral-800);
    color: var(--neutral-300);
    padding: 4rem 0 2rem;
}

.footer-modern .footer-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-modern .footer-link {
    display: block;
    color: var(--neutral-400);
    padding: 0.375rem 0;
    transition: all var(--transition-fast);
    font-size: 0.9375rem;
}

.footer-modern .footer-link:hover {
    color: var(--primary-base);
    padding-left: 0.25rem;
}

.footer-modern .footer-bottom {
    border-top: 1px solid var(--neutral-700);
    padding-top: 2rem;
    margin-top: 3rem;
    text-align: center;
    color: var(--neutral-500);
    font-size: 0.875rem;
}

/* ========================================
   ARTICLE PAGE
   ======================================== */
.article-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .article-container {
        grid-template-columns: 1fr 320px;
    }
}

.article-content .article-header {
    margin-bottom: 2rem;
}

.article-content .article-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--neutral-800);
}

.article-content .article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    color: var(--neutral-500);
    font-size: 0.9375rem;
}

.article-content .prose-custom {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--neutral-200);
    line-height: 1.8;
}

.article-content .prose-custom h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--neutral-800);
}

.article-content .prose-custom h3 {
    font-size: 1.375rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--neutral-800);
}

.article-content .prose-custom p {
    margin-bottom: 1.25rem;
}

.article-content .prose-custom a {
    color: var(--primary-base);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.article-content .prose-custom a:hover {
    color: var(--primary-hover);
}

.article-content .prose-custom ul,
.article-content .prose-custom ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}

.article-content .prose-custom li {
    margin-bottom: 0.5rem;
}

.article-content .prose-custom blockquote {
    border-left: 4px solid var(--primary-base);
    padding-left: 1.5rem;
    font-style: italic;
    color: var(--neutral-600);
    margin: 1.5rem 0;
}

/* ========================================
   SIDEBAR
   ======================================== */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    box-shadow: var(--shadow-card-hover);
    border: 1px solid var(--neutral-100);
    margin-bottom: 0;
    transition: all var(--transition-normal);
}

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

.sidebar-card .sidebar-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-base);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-light);
}

.sidebar-card .sidebar-title svg {
    flex-shrink: 0;
    color: var(--primary-base);
}

.sidebar-card .sidebar-text {
    font-size: 0.875rem;
    color: var(--neutral-600);
    margin-bottom: 1rem;
    line-height: 1.5;
}

/* Top Picks - Enhanced Button Styles (legacy - kept for compatibility) */
.sidebar-card .btn-sidebar {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    width: 100%;
    padding: 0.875rem 1rem;
    background: linear-gradient(135deg, var(--primary-light) 0%, #FFF5F0 100%);
    border: 1px solid var(--primary-base);
    border-radius: var(--radius-lg);
    text-align: left;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--neutral-800);
    margin-bottom: 0.75rem;
    transition: all var(--transition-normal);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 2px 4px rgba(255, 107, 53, 0.1);
}

.sidebar-card .btn-sidebar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-base) 0%, var(--accent-base) 100%);
    opacity: 0;
    transition: all var(--transition-normal);
    z-index: 0;
}

.sidebar-card .btn-sidebar:hover::before {
    left: 0;
    opacity: 0.1;
}

.sidebar-card .btn-sidebar:hover {
    background: linear-gradient(135deg, var(--primary-base) 0%, var(--accent-base) 100%);
    border-color: var(--primary-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.25);
}

.sidebar-card .btn-sidebar .product-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
    z-index: 1;
}

.sidebar-card .btn-sidebar .product-text {
    flex: 1;
    z-index: 1;
}

.sidebar-card .btn-sidebar .product-arrow {
    font-size: 0.75rem;
    opacity: 0;
    transform: translateX(-8px);
    transition: all var(--transition-fast);
    z-index: 1;
}

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

/* ========================================
   TOP PICKS SIDEBAR PRODUCT CARDS
   ======================================== */
.sidebar-product-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--neutral-200);
    margin-bottom: 1rem;
    transition: all var(--transition-normal);
}

.sidebar-product-card:hover {
    border-color: var(--primary-base);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.15);
    transform: translateY(-2px);
}

.sidebar-product-link {
    display: flex;
    text-decoration: none;
    color: inherit;
}

.sidebar-product-image-wrapper {
    flex-shrink: 0;
    width: 90px;
    height: 90px;
    padding: 0.75rem;
    background: var(--neutral-50);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.sidebar-product-content {
    flex: 1;
    padding: 0.75rem 0.875rem 0.875rem 0.5rem;
    display: flex;
    flex-direction: column;
}

.sidebar-product-name {
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--neutral-800);
    line-height: 1.3;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sidebar-product-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 0.5rem 0;
    flex-grow: 1;
}

.sidebar-product-bullet {
    font-size: 0.75rem;
    color: var(--neutral-600);
    line-height: 1.4;
    padding-left: 0.875rem;
    position: relative;
    margin-bottom: 0.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sidebar-product-bullet::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-base);
    font-weight: bold;
}

.sidebar-product-cta {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-base);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: all var(--transition-fast);
}

.sidebar-product-card:hover .sidebar-product-cta {
    color: var(--primary-hover);
    transform: translateX(2px);
}

.sidebar-product-card:hover .sidebar-product-name {
    color: var(--primary-base);
}

/* You May Also Like - Sidebar Links */
.sidebar-related-articles {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sidebar-related-link {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 0.75rem;
    background: var(--neutral-50);
    border-radius: var(--radius-md);
    border: 1px solid var(--neutral-100);
    transition: all var(--transition-fast);
    text-decoration: none;
}

.sidebar-related-link:hover {
    background: var(--primary-light);
    border-color: var(--primary-base);
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.1);
}

.sidebar-related-link .link-thumbnail {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    object-fit: cover;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--neutral-200) 0%, var(--neutral-300) 100%);
}

.sidebar-related-link .link-content {
    flex: 1;
    min-width: 0;
}

.sidebar-related-link .link-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--secondary-base);
    margin-bottom: 0.25rem;
}

.sidebar-related-link .link-title {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--neutral-800);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sidebar-related-link:hover .link-title {
    color: var(--primary-base);
}

/* Sidebar Divider */
.sidebar-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neutral-200), transparent);
    margin: 1rem 0;
}

/* ========================================
   BREADCRUMBS
   ======================================== */
.breadcrumbs-custom {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
}

.breadcrumbs-custom a {
    color: var(--neutral-500);
    transition: color var(--transition-fast);
}

.breadcrumbs-custom a:hover {
    color: var(--primary-base);
}

.breadcrumbs-custom .separator {
    color: var(--neutral-300);
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-section {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--neutral-200);
    margin: 2rem 0;
}

.faq-section .faq-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--neutral-800);
}

.faq-item {
    border-bottom: 1px solid var(--neutral-200);
    padding: 1.25rem 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item .faq-question {
    font-family: 'Poppins', sans-serif;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--neutral-800);
    margin-bottom: 0.5rem;
}

.faq-item .faq-answer {
    color: var(--neutral-600);
    line-height: 1.7;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    
    .hero-custom {
        padding: 2.5rem 1.5rem;
    }
    
    .hero-custom .hero-title {
        font-size: 2rem;
    }
    
    .section-header .section-title {
        font-size: 1.75rem;
    }
    
    .article-content .article-title {
        font-size: 1.75rem;
    }
    
    .article-content .prose-custom {
        padding: 1.5rem;
    }
    
    .newsletter-section {
        padding: 2rem 1.5rem;
    }
    
    .newsletter-section .newsletter-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 640px) {
    .trust-bar {
        padding: 1.5rem 1rem;
    }
    
    .card-modern .card-content {
        padding: 1.25rem;
    }
}

/* ========================================
   UTILITIES
   ======================================== */
.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-base) 0%, var(--accent-base) 100%);
}

.bg-gradient-secondary {
    background: linear-gradient(135deg, var(--secondary-base) 0%, #20A094 100%);
}

.text-primary-custom {
    color: var(--primary-base);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-base) 0%, var(--accent-base) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.badge-new {
    background: var(--success);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
}

/* FIX 3: Grid utilities for equal height cards */
.grid-equal-height {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    align-items: stretch;
    gap: 2rem;
}

@media (min-width: 768px) {
    .grid-equal-height {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Equal height cards for DaisyUI cards in Editor's Picks */
.grid-equal-height .card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.grid-equal-height .card figure {
    flex-shrink: 0;
}

.grid-equal-height .card .card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.grid-equal-height .card .card-title {
    flex-grow: 0;
}

.grid-equal-height .card .card-title a {
    display: block;
}

/* Ensure card images maintain aspect ratio but cards have equal height */
.grid-equal-height .card figure img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.5s ease forwards;
}

/* ========================================
   DAISYUI THEME OVERRIDES
   ======================================== */
:root {
    --p: var(--primary-base);
    --pf: var(--primary-hover);
    --s: var(--secondary-base);
    --a: var(--accent-base);
    --n: var(--neutral-600);
    --b1: #FFFFFF;
    --b2: var(--neutral-50);
    --bc: var(--neutral-200);
}

/* ========================================
   CATEGORY HERO BANNER
   ======================================== */
.category-hero {
    border-radius: var(--radius-2xl);
    padding: 3rem 2rem;
    margin-bottom: var(--spacing-3xl);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 280px;
}

.category-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.15), rgba(0,0,0,0.25));
    z-index: 1;
}

.category-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="paw-pattern" x="0" y="0" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="3" fill="white" fill-opacity="0.08"/></pattern></defs><rect width="100%" height="100%" fill="url(%23paw-pattern)"/></svg>');
    opacity: 0.4;
    z-index: 1;
}

.category-hero-content {
    position: relative;
    z-index: 10;
}

.category-hero-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: inline-block;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.category-hero-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 12px rgba(0,0,0,0.2);
    font-family: 'Poppins', sans-serif;
}

.category-hero-description {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Category-specific styles with hero images */
.category-hero.hero-dogs {
    background: url('/images/heroes/hero-dogs.jpg') center center / cover no-repeat;
}

.category-hero.hero-cats {
    background: url('/images/heroes/hero-cats.jpg') center center / cover no-repeat;
}

.category-hero.hero-fish {
    background: url('/images/heroes/hero-fish.jpg') center center / cover no-repeat;
}

.category-hero.hero-small-animals {
    background: url('/images/heroes/hero-small-animals.jpg') center center / cover no-repeat;
}

.category-hero.hero-reptiles {
    background: url('/images/heroes/hero-reptiles.jpg') center center / cover no-repeat;
}

.category-hero.hero-birds {
    background: url('/images/heroes/hero-birds.jpg') center center / cover no-repeat;
}

.category-hero.hero-tech {
    background: url('/images/heroes/hero-tech.jpg') center center / cover no-repeat;
}

.category-hero.hero-supplements {
    background: url('/images/heroes/hero-supplements.jpg') center center / cover no-repeat;
}

.category-hero.hero-default {
    background: url('/images/heroes/hero-home-1.jpg') center center / cover no-repeat;
}

/* ========================================
   NO-IMAGE PLACEHOLDER - BEAUTIFUL GRADIENT
   ======================================== */
.no-image-placeholder {
    width: 100%;
    height: 192px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.no-image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="paw-placeholder" x="0" y="0" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="white" fill-opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23paw-placeholder)"/></svg>');
    opacity: 0.4;
}

.no-image-icon {
    font-size: 2.5rem;
    opacity: 0.2;
    position: relative;
    z-index: 1;
    filter: brightness(0) invert(1);
}

.no-image-paw {
    font-size: 5rem;
    opacity: 0.6;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2));
}

/* Category-specific no-image placeholders */
.article-card:has(.no-image-placeholder) .card-image-wrapper {
    position: relative;
}

/* Add subtle pulse animation to paw */
@keyframes pawPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.7;
    }
}

.no-image-paw {
    animation: pawPulse 3s ease-in-out infinite;
}

/* ========================================
   CONSISTENT CARD HEIGHTS
   ======================================== */
.article-card {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    transition: all var(--transition-normal);
    overflow: hidden;
    border: 1px solid var(--neutral-100);
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 420px;
}

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

.article-card .card-image-wrapper {
    flex-shrink: 0;
    overflow: hidden;
    height: 192px;
}

.article-card .card-image-wrapper img,
.article-card .card-image-wrapper .no-image-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-card .card-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.article-card .card-badge {
    align-self: flex-start;
    margin-bottom: 0.75rem;
}

.article-card .card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--neutral-800);
    margin-bottom: 0.75rem;
    line-height: 1.4;
    flex-grow: 0;
}

.article-card .card-title a {
    color: inherit;
    transition: color var(--transition-fast);
}

.article-card .card-title a:hover {
    color: var(--primary-base);
}

.article-card .card-excerpt {
    font-size: 0.875rem;
    color: var(--neutral-500);
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 1rem;
}

.article-card .card-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--neutral-100);
}

.article-card .btn-read-more {
    background: var(--primary-base);
    color: white;
    border: none;
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
}

.article-card .btn-read-more:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
}

/* ========================================
   ARTICLE GRID - EQUAL HEIGHTS
   ======================================== */
.article-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .article-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .article-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ========================================
   CATEGORY PRODUCT GRID (gummy.mom style)
   ======================================== */

.product-grid-category {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.product-card-category {
    background: white;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--neutral-100);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
}

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

.product-card-category .product-link {
    text-decoration: none;
    color: inherit;
}

.product-card-category .product-image {
    width: 100%;
    height: 200px;
    object-fit: contain;
    border-radius: var(--radius-md);
    background: var(--neutral-50);
    margin-bottom: 1rem;
}

.product-card-category .product-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--neutral-800);
    margin-bottom: 0.75rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-category .product-features {
    list-style: disc;
    padding-left: 1.25rem;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.product-card-category .product-features li {
    font-size: 0.875rem;
    color: var(--neutral-600);
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

.product-card-category .btn-view-product {
    display: inline-block;
    background: var(--primary-base);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.875rem;
    text-align: center;
    text-decoration: none;
    transition: all var(--transition-fast);
    margin-top: auto;
}

.product-card-category .btn-view-product:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
}

/* Section styling */
.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--neutral-500);
}

@media (max-width: 768px) {
    .product-grid-category {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .product-card-category {
        padding: 1rem;
    }
    
    .product-card-category .product-image {
        height: 150px;
    }
}

/* ========================================
   PRODUCT DETAIL PAGES
   ======================================== */

.product-detail-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.product-detail-page .breadcrumb {
    font-size: 0.875rem;
    color: var(--neutral-500);
    margin-bottom: 2rem;
}

.product-detail-page .breadcrumb a {
    color: var(--primary-base);
    text-decoration: none;
}

.product-detail-page .breadcrumb a:hover {
    text-decoration: underline;
}

.product-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .product-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.product-image-wrapper {
    background: var(--neutral-50);
    border-radius: var(--radius-xl);
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-main-image {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
}

.product-info .product-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.product-rating {
    font-size: 1.125rem;
    color: var(--neutral-700);
    margin-bottom: 0.5rem;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-base);
    margin-bottom: 1.5rem;
}

.product-benefits {
    background: var(--neutral-50);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.product-benefits h3 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--neutral-800);
}

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

.product-benefits li {
    padding: 0.5rem 0;
    color: var(--neutral-700);
    font-size: 0.9375rem;
}

.btn-buy-amazon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #FF9900 0%, #FF6600 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 15px rgba(255, 153, 0, 0.3);
}

.btn-buy-amazon:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 153, 0, 0.4);
    color: white;
}

.product-description {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 3rem;
    border: 1px solid var(--neutral-100);
}

.product-description h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-description p {
    color: var(--neutral-700);
    line-height: 1.7;
}

.related-products {
    margin-top: 3rem;
}

.related-products h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

.related-product-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 1rem;
    text-decoration: none;
    text-align: center;
    border: 1px solid var(--neutral-100);
    transition: all var(--transition-normal);
}

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

.related-product-card img {
    width: 100%;
    height: 150px;
    object-fit: contain;
    margin-bottom: 0.75rem;
}

.related-product-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--neutral-800);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ========================================
   BREADCRUMB NAVIGATION
   ======================================== */
.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.875rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item:not(:last-child)::after {
    content: '›';
    margin-left: 0.5rem;
    color: var(--neutral-400);
}

.breadcrumb-item a {
    color: var(--neutral-600);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.breadcrumb-item a:hover {
    color: var(--primary-base);
}

.breadcrumb-item.active {
    color: var(--neutral-800);
    font-weight: 500;
}

/* ========================================
   GUMMY.MOM DESIGN PATTERNS
   ======================================== */

/* Breadcrumb Navigation */
.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.875rem;
}
.breadcrumb-item {
    display: flex;
    align-items: center;
}
.breadcrumb-item:not(:last-child)::after {
    content: '›';
    margin-left: 0.5rem;
    color: var(--neutral-400);
}
.breadcrumb-item a {
    color: var(--neutral-600);
    text-decoration: none;
    transition: color var(--transition-fast);
}
.breadcrumb-item a:hover {
    color: var(--primary-base);
}
.breadcrumb-item.active {
    color: var(--neutral-800);
    font-weight: 500;
}

/* Trust Method Cards (How We Test & Review) */
.trust-method-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--neutral-100);
    transition: all var(--transition-normal);
}
.trust-method-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-2px);
}
.trust-method-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.trust-method-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--neutral-800);
    margin-bottom: 0.5rem;
}
.trust-method-desc {
    font-size: 0.875rem;
    color: var(--neutral-600);
    line-height: 1.5;
}

/* FAQ Section */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: white;
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}
.faq-question {
    padding: 1rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
}
.faq-question::-webkit-details-marker {
    display: none;
}
.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-base);
    transition: transform var(--transition-fast);
}
details[open] .faq-question::after {
    transform: rotate(45deg);
}
.faq-answer {
    padding: 0 1.5rem 1rem;
    color: var(--neutral-600);
    line-height: 1.6;
}

/* Section Header with Action */
.section-header-with-action {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}
.view-all-link {
    color: var(--primary-base);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    transition: color var(--transition-fast);
}
.view-all-link:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

/* Featured Product Cards (gummy.mom style) */
.product-card-featured {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--neutral-100);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
}
.product-card-featured:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
}
.product-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.product-card-content {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.product-card-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}
.product-card-title a {
    color: var(--neutral-800);
    text-decoration: none;
}
.product-card-title a:hover {
    color: var(--primary-base);
}
.product-best-for {
    font-size: 0.875rem;
    color: var(--primary-base);
    margin-bottom: 0.75rem;
}
.product-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    font-size: 0.8rem;
    color: var(--neutral-600);
}
.product-features-list li {
    margin-bottom: 0.25rem;
}
.btn-read-review {
    margin-top: auto;
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-light);
    color: var(--primary-base);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    text-align: center;
    transition: all var(--transition-fast);
}
.btn-read-review:hover {
    background: var(--primary-base);
    color: white;
}

/* Enhanced Category Cards (with keywords) */
.category-card-enhanced {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1rem;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--neutral-100);
    text-decoration: none;
    transition: all var(--transition-normal);
}
.category-card-enhanced:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
    border-color: var(--primary-light);
}
.category-card-enhanced .category-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}
.category-card-enhanced .category-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--neutral-800);
    margin-bottom: 0.5rem;
}
.category-card-enhanced .category-desc {
    font-size: 0.75rem;
    color: var(--neutral-600);
    line-height: 1.4;
    margin-bottom: 0.5rem;
}
.category-keywords {
    font-size: 0.7rem;
    color: var(--neutral-400);
    font-style: italic;
}

/* ========================================
   ARTICLE CARD MODERN
   ======================================== */
.article-card-modern {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
}
.article-card-modern:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
}
.article-card-image-link {
    display: block;
    overflow: hidden;
}
.article-card-image-link img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.article-card-content {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.article-card-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}
.article-category-badge {
    background: var(--primary-light);
    color: var(--primary-base);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}
.article-read-time {
    font-size: 0.75rem;
    color: var(--neutral-500);
}
.article-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}
.article-card-title a {
    color: var(--neutral-800);
    text-decoration: none;
}
.article-card-title a:hover {
    color: var(--primary-base);
}
.article-card-excerpt {
    font-size: 0.875rem;
    color: var(--neutral-600);
    line-height: 1.5;
    flex: 1;
    margin-bottom: 1rem;
}
.article-read-more {
    color: var(--primary-base);
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
}
.article-read-more:hover {
    text-decoration: underline;
}

/* ========================================
   ENHANCED CATEGORY CARDS (gummy.mom style)
   ======================================== */
.category-card-enhanced {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1rem;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--neutral-100);
    text-decoration: none;
    transition: all var(--transition-normal);
}
.category-card-enhanced:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
    border-color: var(--primary-light);
}
.category-card-enhanced .category-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}
.category-card-enhanced .category-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--neutral-800);
    margin-bottom: 0.5rem;
}
.category-card-enhanced .category-desc {
    font-size: 0.75rem;
    color: var(--neutral-600);
    line-height: 1.4;
    margin-bottom: 0.5rem;
}
.category-keywords {
    font-size: 0.7rem;
    color: var(--neutral-400);
    font-style: italic;
}

/* ========================================
   FEATURED PRODUCT CARDS (gummy.mom style)
   ======================================== */
.product-card-featured {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--neutral-100);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
}
.product-card-featured:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
}
.product-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.product-card-content {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.product-card-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}
.product-card-title a {
    color: var(--neutral-800);
    text-decoration: none;
}
.product-card-title a:hover {
    color: var(--primary-base);
}
.product-best-for {
    font-size: 0.875rem;
    color: var(--primary-base);
    margin-bottom: 0.75rem;
}
.product-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    font-size: 0.8rem;
    color: var(--neutral-600);
}
.product-features-list li {
    margin-bottom: 0.25rem;
}
.btn-read-review {
    margin-top: auto;
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-light);
    color: var(--primary-base);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    text-align: center;
    transition: all var(--transition-fast);
}
.btn-read-review:hover {
    background: var(--primary-base);
    color: white;
}
