/* ===== LIFEAID ADVENTURE READY - COMPLETE CSS ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

/* ==========================================================================
   Outdoor Bar (Układ 2x2 na Mobile)
   ========================================================================== */
.lifeaid-outdoor-bar { background: linear-gradient(90deg, #2f855a 0%, #38a169 100%); padding: 12px 0; color: white; }
.lifeaid-outdoor-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; }
.lifeaid-outdoor-features { display: flex; gap: 35px; flex-wrap: wrap; }
.lifeaid-outdoor-feature { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; font-weight: 500; }
.lifeaid-feature-icon { font-size: 16px; color: #9ae6b4; }

/* ==========================================================================
   Hero & General
   ========================================================================== */
.lifeaid-hero { min-height: 50vh; }
.lifeaid-section-header { text-align: center; margin-bottom: 20px; }

.lifeaid-section-title { margin-bottom: 10px; color: inherit; }
.lifeaid-dark-section .lifeaid-section-title { color: white !important; }

/* Gridy - Standard Desktop */
.lifeaid-categories-grid, 
.adventure-categories-grid, 
.lifeaid-blog-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); 
    gap: 30px; 
}

/* Karty Kategorii */
.lifeaid-category-card { background: white; border-radius: 20px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: 0.3s; }
.lifeaid-category-image { height: 220px; position: relative; }
.lifeaid-category-bg { height: 100%; background-position: center; background-size: cover; }
.lifeaid-category-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.4), transparent); }
.lifeaid-category-content { padding: 25px; }
.lifeaid-category-btn { display: inline-block; background: linear-gradient(135deg, #48bb78 0%, #38a169 100%); color: white !important; padding: 10px 20px; border-radius: 8px; text-decoration: none; font-weight: bold; }

/* Adventure Tabs */
.adventure-filters { display: flex; justify-content: center; gap: 15px; margin-bottom: 20px; flex-wrap: wrap; }
.adventure-filter { padding: 10px 25px; background: #edf2f7; border-radius: 30px; cursor: pointer; font-weight: bold; transition: 0.3s; border: 1px solid transparent; }
.lifeaid-dark-section .adventure-filter { background: rgba(255, 255, 255, 0.1); color: white; border: 1px solid rgba(255, 255, 255, 0.2); backdrop-filter: blur(5px); }
.adventure-filter.active, .adventure-filter:hover { background: #38a169 !important; color: white !important; border-color: #38a169; }

/* Karty Produktów */
.gear-card { background: white; border-radius: 12px; padding: 0 !important; overflow: hidden; display: flex; flex-direction: column; box-shadow: 0 4px 15px rgba(0,0,0,0.05); transition: 0.3s; height: 100%; }
.gear-image { padding: 20px; flex-grow: 1; text-align: center; background: white; display: flex; align-items: center; justify-content: center; }
.gear-image img { max-height: 200px; object-fit: contain; }
.gear-content { background: linear-gradient(135deg, #48bb78 0%, #38a169 100%); padding: 20px; text-align: center; }
.gear-title { color: white !important; margin-bottom: 8px; font-weight: 600; font-size: 1.1rem; min-height: 2.4em; display: flex; align-items: center; justify-content: center; }
.gear-price { color: white !important; font-size: 1.2rem; font-weight: 800; margin-bottom: 12px; }
.gear-add-to-cart { display: block; background: white !important; color: #38a169 !important; padding: 10px; border-radius: 6px; text-decoration: none; font-weight: bold; }

/* ==========================================================================
   UKŁAD SPLIT (75/25) PRZENIESIONY Z LIFEGUN (Wersja Zielona)
   ========================================================================== */
.lifegun-split-container {
    display: flex;
    gap: 30px;
    width: 100%;
    align-items: center;
    margin-bottom: 30px;
}

.lifegun-banner-section { flex: 0 0 350px; }
.lifegun-banner-box {
    width: 350px; height: 350px;
    background: #f0fdf4;
    border: 1px solid #38a169;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    border-radius: 20px;
}

.lifegun-carousel-section { flex: 1; min-width: 0; position: relative; display: flex; align-items: center; }

/* To jest klucz do rzędu produktów! */
.lifegun-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 20px;
    padding: 15px 0;
    width: 100%;
    scrollbar-width: none;
}
.lifegun-track::-webkit-scrollbar { display: none; }

.lifegun-slide {
    flex: 0 0 250px; /* Szerokość kafelka */
    scroll-snap-align: start;
}

.lifegun-nav-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: #38a169 !important; color: #fff !important;
    width: 44px; height: 44px; border-radius: 50%; border: none;
    cursor: pointer; z-index: 10; display: flex; align-items: center; justify-content: center;
}
.lifegun-nav-btn:hover { background: #2f855a !important; transform: translateY(-50%) scale(1.1); }
.lifegun-nav-btn.prev { left: -22px; }
.lifegun-nav-btn.next { right: -22px; }

/* Social & Blog */
.social-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.social-col { background: white; padding: 20px; border-radius: 15px; }

/* iOS Fix */
@supports (-webkit-touch-callout: none) {
    .lifeaid-hero, .lifeaid-dark-section, .adventure-categories { background-attachment: scroll !important; }
}

/* ==========================================================================
   RESPONSYWNOŚĆ - WIDOK MOBILNY
   ========================================================================== */
@media (max-width: 768px) {
    /* Outdoor Bar 2x2 */
    .lifeaid-outdoor-features { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; width: 100%; }
    .lifeaid-outdoor-feature { justify-content: center; font-size: 0.75rem; text-align: center; flex-direction: column; }
    .lifeaid-weather-widget { width: 100%; text-align: center; margin-top: 10px; grid-column: span 2; border-top: 1px solid rgba(255,255,255,0.2); padding-top: 5px; }

    .social-grid { grid-template-columns: 1fr; }
    .adventure-categories-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    
    .gear-image img { max-height: 120px; }
    .gear-content { padding: 12px 8px; }
    .gear-title { font-size: 0.85rem; min-height: 3em; }
    
    /* Układ 75/25 na mobile */
    .lifegun-split-container { flex-direction: column; }
    .lifegun-banner-section { order: 2; width: 100%; max-width: 350px; margin: 0 auto; }
    .lifegun-carousel-section { order: 1; width: 100%; }
    .lifegun-nav-btn { display: none; }
    .lifegun-track { scrollbar-width: thin; }
    .lifegun-track::-webkit-scrollbar { display: block; height: 4px; }
}