
/*
Theme Name: Porównanie Suplementów Odchudzających
Theme URI: https://example.com
Author: Twoja Nazwa
Author URI: https://example.com
Description: Profesjonalny motyw WordPress do prezentacji porównania suplementów odchudzających z responsywnym designem i gotową treścią.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: porownanie-suplementow
Tags: blog, one-column, custom-colors, responsive-layout
*/

/* ==========================================
   ZMIENNE KOLORYSTYCZNE - Bright Green & Orange
   ========================================== */
:root {
    /* Primary Colors - Vibrant Green & Orange */
    --primary-green: #10b981;
    --primary-green-light: #34d399;
    --primary-orange: #fb923c;
    --primary-orange-bright: #f97316;
    
    /* Background Colors */
    --dark-bg: #0f172a;
    --light-gray: #f8fafc;
    --medium-gray: #64748b;
    --gradient-start: #f5f7fa;
    --gradient-end: #c3cfe2;
    
    /* Text Colors */
    --text-dark: #1e293b;
    --text-light: #ffffff;
    --text-muted: #64748b;
    
    /* UI Colors */
    --border-color: #e2e8f0;
    --success-color: #22c55e;
    --warning-color: #fbbf24;
    
    /* Glass Effect */
    --glass-bg: rgba(255, 255, 255, 0.25);
    --glass-border: rgba(255, 255, 255, 0.18);
}

/* ==========================================
   RESETOWANIE I BAZOWE STYLE
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    /* Piękne gradientowe tło jak w Next.js */
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    color: var(--primary-green);
    transition: all 0.3s ease;
}

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

/* ==========================================
   CUSTOM SCROLLBAR - Zielony jak w Next.js
   ========================================== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-green-light);
}

/* ==========================================
   KLASY POMOCNICZE - Gradienty & Efekty
   ========================================== */
/* Gradientowy tekst - zielono-pomarańczowy */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* Efekt Glassmorphism */
.glass-effect {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
}

/* Animacja pojawiania się od dołu */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animacja licznika */
@keyframes countUp {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Animacja unoszenia */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.animate-count-up {
    animation: countUp 0.3s ease-out;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* ==========================================
   NAGŁÓWEK I NAWIGACJA
   ========================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}

.site-title a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.site-title a:hover {
    transform: scale(1.05);
}

.site-title i {
    font-size: 1.5rem;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 0.25rem;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.main-navigation a i {
    font-size: 1rem;
}

.main-navigation a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-green);
}

/* Mobile Navigation - ukryte domyślnie */
.mobile-navigation {
    display: none;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    margin-top: 1rem;
    padding: 0.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.mobile-navigation.active {
    display: block;
}

.mobile-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-navigation a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-light);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.mobile-navigation a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-green);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ==========================================
   SEKCJA HERO - z obrazkiem w tle
   ========================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem 2rem;
    overflow: hidden;
}

/* Obrazek w tle */
.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 0 3rem 3rem;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.4), transparent);
    border-radius: 0 0 3rem 3rem;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    animation: fadeInUp 1s ease;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 2rem;
    padding: 3rem 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content .highlight {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-orange-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.hero-content p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Hero Features - ikony z tekstem */
.hero-features {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(251, 146, 60, 0.1));
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.hero-feature i {
    font-size: 1.25rem;
}

.hero-feature:nth-child(1) i {
    color: var(--primary-green);
}

.hero-feature:nth-child(2) i {
    color: var(--primary-orange);
}

.hero-feature:nth-child(3) i {
    color: #3b82f6;
}

/* Wskaźnik przewijania */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid var(--text-light);
    border-radius: 1.5rem;
    display: flex;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
}

.scroll-indicator-inner {
    width: 0.25rem;
    height: 0.5rem;
    background: var(--text-light);
    border-radius: 1rem;
    margin-top: 0.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(0.5rem);
    }
    60% {
        transform: translateY(0.25rem);
    }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-green), #059669);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-bright));
    color: var(--text-light);
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(251, 146, 60, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 146, 60, 0.4);
    background: linear-gradient(135deg, var(--primary-orange-bright), var(--primary-orange));
}

/* ==========================================
   SEKCJE TREŚCI
   ========================================== */
.content-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-header .gradient-text {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--medium-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* ==========================================
   KARTY PRODUKTÓW
   ========================================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.2), 0 8px 20px rgba(251, 146, 60, 0.1);
    border-color: var(--primary-green);
}

.product-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 50%, #fef3c7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

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

.product-image-placeholder {
    font-size: 4rem;
    color: var(--primary-green);
    opacity: 0.3;
}

.product-content {
    padding: 2rem;
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1rem;
}

.product-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.stars {
    color: #fbbf24;
    font-size: 1rem;
}

.rating-value {
    font-weight: 700;
    color: var(--text-dark);
}

.product-description {
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.product-benefits {
    list-style: none;
    margin-bottom: 1.5rem;
}

.product-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text-dark);
}

.product-benefits li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--primary-green), #059669);
    color: white;
    border-radius: 50%;
    font-weight: bold;
    flex-shrink: 0;
}

.affiliate-link {
    display: block;
    width: 100%;
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary-green), #059669);
    color: var(--text-light);
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.affiliate-link:hover::before {
    left: 100%;
}

.affiliate-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4), 0 4px 10px rgba(251, 146, 60, 0.2);
    color: var(--text-light);
}

/* Wariant pomarańczowy dla wyróżnionych produktów */
.affiliate-link.featured {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-bright));
}

.affiliate-link.featured:hover {
    box-shadow: 0 6px 20px rgba(251, 146, 60, 0.4), 0 4px 10px rgba(16, 185, 129, 0.2);
}

/* ==========================================
   TABELA PORÓWNAWCZA
   ========================================== */
.comparison-table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.comparison-table thead {
    background: linear-gradient(135deg, var(--dark-bg), #1e293b);
    color: var(--text-light);
    position: relative;
}

.comparison-table thead::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-orange));
}

.comparison-table th {
    padding: 1.5rem 1rem;
    text-align: left;
    font-weight: 600;
    white-space: nowrap;
}

.comparison-table td {
    padding: 1.5rem 1rem;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table tr:hover {
    background: var(--light-gray);
}

.comparison-table .rating-cell {
    color: #fbbf24;
    font-weight: 700;
}

/* ==========================================
   SEKCJA REKOMENDACJI
   ========================================== */
.recommendations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.recommendation-card {
    padding: 2rem;
    border-radius: 16px;
    background: #fff;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.recommendation-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.15);
}

.recommendation-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.recommendation-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.recommendation-card p {
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
}

.recommended-products {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.recommended-product {
    padding: 0.75rem;
    background: var(--light-gray);
    border-radius: 8px;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
}

.recommended-product:hover {
    background: var(--primary-green);
    color: var(--text-light);
}

/* ==========================================
   SEKCJA PRAWNA
   ========================================== */
.legal-section {
    background: var(--light-gray);
    padding: 3rem 2rem;
    margin-top: 3rem;
}

.legal-content {
    max-width: 1000px;
    margin: 0 auto;
}

.legal-box {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary-orange);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.legal-box h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legal-box p {
    color: var(--medium-gray);
    line-height: 1.8;
}

/* ==========================================
   STOPKA
   ========================================== */
.site-footer {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 3rem 2rem 1rem;
    text-align: center;
}

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

.footer-content p {
    color: var(--medium-gray);
    margin: 0.5rem 0;
}

/* ==========================================
   SEKCJA NATURALNYCH SKŁADNIKÓW
   ========================================== */
.natural-ingredients-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.ingredients-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.ingredients-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.ingredient-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(251, 146, 60, 0.05));
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.ingredient-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.ingredient-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 0.75rem;
    color: var(--primary-green);
    font-size: 1.5rem;
}

.ingredient-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.ingredient-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.safety-notice {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(251, 146, 60, 0.1));
    border-radius: 1rem;
}

.safety-notice i {
    font-size: 1.5rem;
    color: var(--primary-green);
    flex-shrink: 0;
}

.safety-notice h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.safety-notice p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.ingredients-image {
    position: relative;
}

.ingredients-image img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.ingredients-stats {
    position: relative;
}

.stat-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ==========================================
   SEKCJA AKTYWNOŚCI FIZYCZNEJ
   ========================================== */
.activity-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.activity-image {
    position: relative;
}

.activity-image img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.activity-stats {
    position: relative;
}

.activity-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateX(0.5rem);
}

.benefit-item i {
    font-size: 1.5rem;
    color: var(--primary-green);
    flex-shrink: 0;
}

.benefit-item h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.benefit-item p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
}

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

.fade-in-up {
    animation: fadeInUp 0.8s ease;
}

/* ==========================================
   RESPONSYWNOŚĆ
   ========================================== */
@media (max-width: 768px) {
    .main-navigation {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .comparison-table-wrapper {
        font-size: 0.875rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 1rem 0.5rem;
    }
    
    /* Responsive dla nowych sekcji */
    .natural-ingredients-container,
    .activity-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .activity-image {
        order: -1;
    }
    
    .hero-features {
        gap: 0.75rem;
    }
    
    .hero-feature {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
    
    .stat-card {
        padding: 1rem;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .recommendations-grid {
        grid-template-columns: 1fr;
    }
}
