/**
 * Empire Five Athletics - Sports Category Pages
 *
 * Follows exact styling from style.css + home.css
 *
 * @package Empire_Five_Child
 * @since 1.0.0
 */

/* ==========================================================================
   CSS VARIABLES (Fallback if style.css not loaded)
   ========================================================================== */
:root {
    /* Brand Colors */
    --empire-primary: #002868;
    --empire-secondary: #003580;
    --empire-accent: #BF0A30;
    --empire-accent-hover: #A00828;
    --empire-accent-light: rgba(191, 10, 48, 0.08);
    --empire-white: #FFFFFF;
    --empire-text: #1F2937;
    --empire-text-light: #6B7280;
    --empire-gray-light: #F3F4F6;

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

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

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;

    /* Container */
    --container-width: 1320px;
    --container-padding: 20px;
}

/* ==========================================================================
   SPORTS CATEGORY PAGE STYLES
   ========================================================================== */

/* ========== Full-Width Overrides ========== */
/* Override WordPress/GeneratePress container constraints */

/* The wrapper added by plugin - make it full width on category pages */
.empire-sports-content {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

/* Sections should be full width */
.sport-category-hero,
.category-tabs,
.products-section,
.why-choose-section,
.category-cta,
.faq-section {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    box-sizing: border-box;
}

/* ========== Hero Section ========== */
.sport-category-hero {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--empire-primary) 0%, var(--empire-secondary) 100%);
}

.sport-category-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></svg>') repeat;
    background-size: 100px 100px;
    z-index: 1;
}

.sport-category-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 80px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.sport-category-hero .hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--empire-accent);
    color: var(--empire-white);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.sport-category-hero h1 {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    color: var(--empire-white);
    line-height: 1.1;
    margin: 0 0 20px;
}

.sport-category-hero .hero-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.sport-category-hero .hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.sport-category-hero .stat-item {
    text-align: center;
}

.sport-category-hero .stat-number {
    display: block;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--empire-white);
    line-height: 1;
    margin-bottom: 8px;
}

.sport-category-hero .stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========== Category Navigation Tabs ========== */
.category-tabs {
    background: var(--empire-white);
    border-bottom: 1px solid var(--empire-gray-light);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.category-tabs .empire-container {
    display: flex;
    justify-content: center;
    gap: 0;
}

.category-tabs .tab-link {
    padding: 20px 36px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--empire-text);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.category-tabs .tab-link:hover {
    color: var(--empire-primary);
    border-bottom-color: var(--empire-primary);
}

.category-tabs .tab-link.active {
    color: var(--empire-accent);
    border-bottom-color: var(--empire-accent);
}

/* ========== Products Section ========== */
.products-section {
    padding: 100px 0;
    background: var(--empire-gray-light);
}

.products-section .empire-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Category Sections */
.category-section {
    margin-bottom: 80px;
}

.category-section:last-child {
    margin-bottom: 0;
}

/* Beautiful Category Header - No Icons */
.category-section .category-header {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

/* Hide icons completely */
.category-section .category-icon {
    display: none;
}

.category-section .category-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--empire-primary);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
}

/* Elegant underline accent */
.category-section .category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--empire-accent), var(--empire-primary));
    border-radius: 2px;
}

/* Category Description - Beautiful centered paragraph */
.category-section .category-description {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--empire-text-light);
    margin: 0 auto 40px;
    max-width: 900px;
    text-align: center;
    padding: 0 20px;
}

.category-section .category-description strong {
    color: var(--empire-accent);
    font-weight: 700;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Product Card - Enhanced Design */
.product-card {
    display: block;
    text-decoration: none;
    background: var(--empire-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--empire-accent);
}

.product-card .product-image {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: linear-gradient(135deg, var(--empire-primary) 0%, var(--empire-secondary) 100%);
}

/* Jersey icon in image area - only show when no image is present */
.product-card .product-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.3)' stroke-width='1.5'%3E%3Cpath d='M6.5 2L2 6v14a2 2 0 002 2h16a2 2 0 002-2V6l-4.5-4H6.5zM2 6h20M12 2v4'/%3E%3Cpath d='M8 10h8v8H8z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.5;
    transition: all 0.4s ease;
    z-index: 1;
}

/* Hide icon when image is present */
.product-card .product-image:has(img)::before {
    display: none;
}

.product-card:hover .product-image::before {
    opacity: 0;
}

/* Subtle pattern overlay */
.product-card .product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 50%);
    pointer-events: none;
}

.product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.product-card .product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 40, 104, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-card .view-btn {
    color: var(--empire-white);
    font-weight: 600;
    padding: 12px 24px;
    border: 2px solid var(--empire-white);
    border-radius: var(--radius-full);
    transform: translateY(20px);
    transition: all 0.4s ease;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-card:hover .view-btn {
    transform: translateY(0);
}

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

.product-card .product-content {
    padding: 20px;
    border-top: 3px solid var(--empire-accent);
    position: relative;
}

/* Product USP/Benefits Bar */
.product-card .product-content::before {
    content: '✓ Full Customization  •  ✓ Free Shipping  •  ✓ One Price';
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--empire-accent);
    background: linear-gradient(90deg, rgba(191, 10, 48, 0.08) 0%, rgba(191, 10, 48, 0.03) 100%);
    padding: 8px 12px;
    margin: -20px -20px 15px -20px;
    text-align: center;
    letter-spacing: 0.3px;
    border-bottom: 1px solid rgba(191, 10, 48, 0.1);
}

.product-card .product-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--empire-primary);
    margin: 0 0 6px;
    line-height: 1.3;
}

.product-card .product-variants {
    font-size: 0.85rem;
    color: var(--empire-text-light);
    margin: 0 0 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.product-card .product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 0;
    background: transparent;
}

.product-card .feature-tag {
    display: inline-block;
    padding: 5px 12px;
    background: var(--empire-accent-light);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--empire-accent);
    border: 1px solid rgba(191, 10, 48, 0.1);
}

/* Responsive USP bar */
@media (max-width: 1200px) {
    .product-card .product-content::before {
        content: '✓ Customization  •  ✓ Free Ship';
        font-size: 0.65rem;
        padding: 6px 10px;
    }
}

@media (max-width: 768px) {
    .product-card .product-content::before {
        content: '✓ Custom  •  ✓ Free Ship  •  ✓ One Price';
        font-size: 0.65rem;
    }
}

/* ========== Why Choose Section - Matches home.css pillars-section ========== */
.why-choose-section {
    padding: 100px 0;
    background: var(--empire-white);
}

.why-choose-section .empire-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.why-choose-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-choose-section .section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--empire-primary);
    margin: 0 0 16px;
    position: relative;
    display: inline-block;
}

.why-choose-section .section-subtitle {
    font-size: 1.1rem;
    color: var(--empire-text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Features Grid - Matches pillars-grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Feature Card - Matches pillar-card exactly */
.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--empire-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--empire-primary), var(--empire-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.feature-card:hover::before {
    transform: scaleX(1);
}

/* Feature Icon - Matches pillar-icon */
.feature-card .feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--empire-accent-light);
    border-radius: var(--radius-full);
    color: var(--empire-accent);
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    background: var(--empire-accent);
    color: var(--empire-white);
    transform: scale(1.1);
}

.feature-card .feature-icon svg {
    width: 32px;
    height: 32px;
}

.feature-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--empire-primary);
    margin: 0 0 12px;
}

.feature-card p {
    color: var(--empire-text-light);
    line-height: 1.6;
    margin: 0;
}

/* ========== CTA Section - Matches home.css cta-section exactly ========== */
.category-cta {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.category-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--empire-accent) 0%, #8B0020 100%);
    z-index: 0;
}

.category-cta .empire-container {
    position: relative;
    z-index: 1;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.category-cta .cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.category-cta h2 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--empire-white);
    margin: 0 0 16px;
}

.category-cta p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.category-cta .cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

/* CTA Buttons - Match style.css btn styles */
.category-cta .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 40px;
    background: var(--empire-white);
    color: var(--empire-accent);
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid var(--empire-white);
    border-radius: var(--radius-sm);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.category-cta .btn-primary:hover {
    background: transparent;
    color: var(--empire-white);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.category-cta .btn-primary svg {
    width: 20px;
    height: 20px;
}

.category-cta .btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 40px;
    background: transparent;
    color: var(--empire-white);
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-sm);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.category-cta .btn-outline:hover {
    background: var(--empire-white);
    color: var(--empire-accent);
    border-color: var(--empire-white);
    transform: translateY(-4px) scale(1.02);
}

.category-cta .btn-outline svg {
    width: 20px;
    height: 20px;
}

/* ========== FAQ Section ========== */
.faq-section {
    padding: 100px 0;
    background: var(--empire-gray-light);
}

.faq-section .empire-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

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

.faq-section .section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--empire-primary);
    margin: 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--empire-white);
    border-radius: var(--radius-lg);
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.faq-question {
    padding: 24px 28px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--empire-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--empire-gray-light);
}

.faq-question .icon {
    color: var(--empire-accent);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-question .icon svg {
    width: 20px;
    height: 20px;
}

.faq-item.active .faq-question {
    background: var(--empire-accent-light);
}

.faq-item.active .faq-question .icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 28px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-answer {
    padding: 0 28px 24px;
    max-height: 500px;
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--empire-text-light);
    line-height: 1.8;
    margin: 0;
}

/* ========== Breadcrumbs ========== */
.breadcrumbs {
    padding: 16px 0;
    background: var(--empire-gray-light);
    font-size: 0.9rem;
}

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

.breadcrumbs a {
    color: var(--empire-text-light);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.breadcrumbs a:hover {
    color: var(--empire-accent);
}

.breadcrumbs span {
    color: var(--empire-text-light);
    margin: 0 10px;
}

.breadcrumbs .current {
    color: var(--empire-primary);
    font-weight: 600;
}

/* ==========================================================================
   RESPONSIVE DESIGN - Matches home.css breakpoints
   ========================================================================== */

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

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

    .sport-category-hero .hero-stats {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .sport-category-hero {
        min-height: auto;
    }

    .sport-category-hero .hero-content {
        padding: 60px 20px;
    }

    .sport-category-hero h1 {
        font-size: 1.75rem;
    }

    .sport-category-hero .hero-description {
        font-size: 0.95rem;
    }

    .sport-category-hero .hero-stats {
        gap: 25px;
    }

    .sport-category-hero .stat-number {
        font-size: 1.75rem;
    }

    .category-tabs .tab-link {
        padding: 16px 20px;
        font-size: 0.85rem;
    }

    .products-section,
    .why-choose-section,
    .category-cta,
    .faq-section {
        padding: 60px 0;
    }

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

    .category-section .category-title {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }

    .category-section .category-description {
        font-size: 1rem;
        padding: 0 15px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 30px 24px;
    }

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

    .category-cta h2 {
        font-size: 1.5rem;
    }

    .category-cta p {
        font-size: 1rem;
    }

    .category-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .category-cta .btn-primary,
    .category-cta .btn-outline {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        padding: 16px 32px;
    }

    .faq-question {
        padding: 20px 24px;
        font-size: 0.95rem;
    }

    .faq-answer {
        padding: 0 24px;
    }

    .faq-item.active .faq-answer {
        padding: 0 24px 20px;
    }
}

@media (max-width: 480px) {
    .sport-category-hero .hero-content {
        padding: 50px 15px;
    }

    .sport-category-hero .hero-badge {
        font-size: 0.75rem;
        padding: 6px 14px;
    }

    .sport-category-hero .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .category-tabs .empire-container {
        flex-wrap: wrap;
        justify-content: center;
    }

    .category-tabs .tab-link {
        padding: 12px 16px;
        font-size: 0.75rem;
    }

    .products-section {
        padding: 40px 0;
    }

    .category-section .category-title {
        font-size: 1.25rem;
        letter-spacing: 1px;
        padding-bottom: 16px;
    }

    .category-section .category-title::after {
        width: 60px;
        height: 3px;
    }

    .category-section .category-description {
        font-size: 0.95rem;
        line-height: 1.8;
        padding: 0 10px;
        margin-bottom: 30px;
    }

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

    .product-card .product-content {
        padding: 20px;
    }

    .product-card .product-name {
        font-size: 1rem;
    }

    .feature-card .feature-icon {
        width: 60px;
        height: 60px;
    }

    .feature-card .feature-icon svg {
        width: 24px;
        height: 24px;
    }

    .faq-question {
        padding: 18px 20px;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 18px;
    }
}

/* ==========================================================================
   PRINT STYLES
   ========================================================================== */

@media print {
    .category-tabs,
    .category-cta .cta-buttons {
        display: none;
    }

    .sport-category-hero {
        min-height: auto;
        padding: 40px 0;
        background: #f5f5f5 !important;
    }

    .sport-category-hero h1,
    .sport-category-hero .hero-description {
        color: #000 !important;
    }

    .product-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }

    .feature-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* ==========================================================================
   TOUCH DEVICE OPTIMIZATIONS - Matches style.css
   ========================================================================== */

@media (hover: none) and (pointer: coarse) {
    .product-card:hover {
        transform: none;
    }

    .product-card:active {
        transform: scale(0.98);
    }

    .feature-card:hover {
        transform: none;
    }

    .feature-card:active {
        transform: scale(0.98);
    }

    .category-cta .btn-primary:hover,
    .category-cta .btn-outline:hover {
        transform: none;
    }

    .category-cta .btn-primary:active,
    .category-cta .btn-outline:active {
        transform: scale(0.98);
    }

    /* Larger tap targets */
    .category-tabs .tab-link {
        min-height: 48px;
    }

    .faq-question {
        min-height: 56px;
    }
}

/* ==========================================================================
   REDUCED MOTION - Matches style.css
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
