/**
 * STEKI.EU - Premium Steaks
 * Main Stylesheet
 * Mobile-first, responsive design
 */

/* Google Fonts - loaded via HTML preload for better performance */

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    --primary-color: #f7911d;
    --primary-dark: #d67a15;
    --secondary-color: #1a1a1a;
    --accent-color: #d4af37;
    --text-light: #ffffff;
    --text-dark: #333333;
    --text-muted: #666666;
    --bg-light: #f5f5f5;
    --bg-dark: #0a0a0a;
    --border-color: #eee;
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.1);
    --shadow-lg: 0 15px 40px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

/* ============================================
   SVG ICONS (Flat Design)
   ============================================ */
.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1em;
    height: 1em;
    vertical-align: middle;
}

.icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.icon-steak svg { fill: var(--primary-color); }
.icon-star svg { fill: var(--accent-color); }
.icon-phone svg { fill: var(--primary-color); }
.icon-truck svg { fill: var(--primary-color); }
.icon-clock svg { fill: var(--primary-color); }
.icon-check svg { fill: var(--primary-color); }
.icon-scale svg { fill: currentColor; }
.icon-news svg { fill: var(--primary-color); }
.icon-trophy svg { fill: var(--accent-color); }
.icon-email svg { fill: var(--primary-color); }
.icon-location svg { fill: var(--primary-color); }
.icon-time svg { fill: var(--primary-color); }
.icon-hourglass svg { fill: var(--primary-color); }
.icon-package svg { fill: var(--primary-color); }
.icon-certificate svg { fill: var(--primary-color); }
.icon-building svg { fill: var(--primary-color); }
.icon-chat svg { fill: var(--primary-color); }
.icon-handshake svg { fill: var(--primary-color); }

/* Section icons - larger size */
.section-icon .icon,
.service-icon .icon,
.feature-icon .icon,
.cta-icon .icon {
    width: 48px;
    height: 48px;
}

/* ============================================
   RESET & BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--secondary-color);
    max-width: 100vw;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

ul {
    list-style: none;
}

/* ============================================
   UTILITIES
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.section-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn-primary {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    display: inline-block;
    font-family: var(--font-body);
    font-size: 14px;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(196, 30, 58, 0.4);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    display: inline-block;
}

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

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    padding: 12px 30px;
    border: 2px solid var(--primary-color);
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    display: inline-block;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-light);
}

.learn-more {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.learn-more:hover {
    gap: 10px;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
header,
.header {
    background: var(--secondary-color);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 99999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.logo-icon img {
    width: 30px;
    height: 30px;
}

.logo-text {
    color: var(--text-light);
    font-size: 28px;
    font-weight: 700;
    font-family: var(--font-heading);
}

.logo-text span,
.logo-text .logo-accent {
    color: var(--primary-color);
}

.logo-image {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

/* Main Navigation */
nav {
    display: flex;
    align-items: center;
}

/* Mobile nav - hidden by default, shown only on mobile */
.mobile-nav {
    display: none;
}

/* Desktop nav visible on desktop */
.desktop-nav {
    display: flex;
}

nav ul {
    display: flex;
    gap: 35px;
    align-items: center;
}

nav a {
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    padding: 5px 0;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

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

.nav-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-light) !important;
    padding: 12px 28px !important;
    margin-left: 15px;
    border-radius: 50px;
    font-weight: 700 !important;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--primary-color);
}

.nav-cta:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #8d1520 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(196, 30, 58, 0.5);
    border-color: var(--accent-color);
}

.nav-cta::after {
    display: none;
}

/* Main Navigation - class based */
.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav a {
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    padding: 8px 0;
    position: relative;
    transition: var(--transition);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.main-nav a:hover::after {
    width: 100%;
}

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

/* Navigation Dropdown */
.nav-item {
    position: relative;
}

.nav-item > a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-item > a .dropdown-arrow {
    font-size: 12px;
    font-weight: 300;
    transition: transform 0.3s ease;
    display: inline-block;
}

.nav-item:hover > a .dropdown-arrow,
.nav-item.active > a .dropdown-arrow {
    transform: rotate(45deg);
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: white;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 10px 0;
}

.nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown a {
    display: block;
    padding: 12px 20px;
    color: var(--secondary-color) !important;
    font-size: 13px;
    text-transform: none;
    letter-spacing: 0;
    border-bottom: 1px solid #f0f0f0;
}

.nav-dropdown a:last-child {
    border-bottom: none;
}

.nav-dropdown a::after {
    display: none;
}

.nav-dropdown a:hover {
    background: var(--bg-light);
    color: var(--primary-color) !important;
    padding-left: 25px;
}

/* Mobile dropdown */
@media (max-width: 768px) {
    .nav-item {
        width: 100%;
        text-align: center;
    }

    .nav-item > a {
        justify-content: center;
    }

    .nav-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(255,255,255,0.05);
        max-height: 0;
        overflow: hidden;
        padding: 0;
        transition: max-height 0.3s ease;
    }

    .nav-item.active .nav-dropdown {
        max-height: 2000px;
        padding: 10px 0;
    }

    .nav-dropdown a {
        color: rgba(255,255,255,0.8) !important;
        padding: 10px 30px;
        font-size: 14px;
        border-bottom: none;
        text-align: center;
    }

    .nav-dropdown a:hover {
        background: rgba(255,255,255,0.1);
        color: var(--primary-color) !important;
    }

    /* Separator między linkami dropdown */
    .nav-dropdown a + a {
        border-top: 1px solid rgba(255,255,255,0.1);
    }
}

/* Highlighted CTA button in nav - KUPUJ ONLINE */
.btn-nav {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%) !important;
    color: var(--text-light) !important;
    padding: 12px 28px !important;
    border-radius: 4px;
    font-weight: 700 !important;
    text-transform: uppercase;
    font-size: 13px !important;
    letter-spacing: 1.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(247, 145, 29, 0.3);
    position: relative;
    overflow: hidden;
    border: 2px solid var(--primary-color);
}

.btn-nav::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-nav:hover::before {
    width: 300px;
    height: 300px;
}

.btn-nav:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #c66a00 100%) !important;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(247, 145, 29, 0.5);
    border-color: var(--accent-color);
}

.btn-nav::after {
    display: none !important;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px 0;
}

.mobile-menu-btn .hamburger-lines {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 24px;
    height: 20px;
}

.mobile-menu-btn .hamburger-lines span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-light);
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-menu-btn .menu-label {
    color: var(--text-light);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-menu-btn.active .hamburger-lines span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .hamburger-lines span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-lines span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Contact Info in Header */
.header-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
}

.header-phone {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 16px;
}

/* Header Social Media */
.header-social {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 20px;
}

.header-social a {
    color: var(--text-light);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transition: var(--transition);
}

.header-social a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.header-social a .icon {
    width: 18px;
    height: 18px;
}

/* Mobile Social Media (in mobile menu) */
.mobile-social {
    display: none;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    gap: 15px;
    justify-content: center;
}

.mobile-social a {
    color: var(--text-light);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transition: var(--transition);
}

.mobile-social a:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

.mobile-social a .icon {
    width: 20px;
    height: 20px;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-light);
    transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    margin-top: 0;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
    background: #1a1a1a;
    z-index: 1;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.6));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.hero h1 {
    font-size: 64px;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
}

.hero h1 span {
    color: var(--primary-color);
    display: block;
    font-size: 0.5em;
    font-weight: 400;
    letter-spacing: 3px;
    margin-top: 15px;
    text-transform: lowercase;
    font-style: italic;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    font-weight: 300;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    padding: 60px 0 100px;
    background: var(--text-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-image {
    width: 100%;
    height: 250px;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-image:first-child {
    grid-column: 1 / -1;
    height: 300px;
}

/* About Video */
.about-video {
    width: 100%;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background: #000;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Video Player (local MP4) */
.video-player {
    margin: 0 auto 30px;
    max-width: 480px;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.video-player video {
    display: block;
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    background: #000;
}

.about-text h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.about-text h2 span {
    color: var(--primary-color);
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-muted);
    line-height: 1.8;
}

.highlight-text {
    font-style: italic;
    padding: 20px;
    border-left: 4px solid var(--primary-color);
    background: var(--bg-light);
    margin: 30px 0;
}

/* ============================================
   SERVICES / OFFER CATEGORIES
   ============================================ */
.services {
    padding: 100px 0;
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--text-light);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.service-icon {
    font-size: 70px;
    margin-bottom: 25px;
    display: block;
}

.service-icon img {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: var(--transition);
}

.service-card:hover .service-icon img {
    filter: grayscale(0);
    opacity: 1;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.service-card p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Categories Grid with Images */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.category-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: var(--transition);
    text-decoration: none;
}

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

.category-image {
    flex: 1;
    overflow: hidden;
}

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

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

.category-content {
    height: 160px;
    padding: 15px 18px;
    background: var(--primary-color);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.category-content h3 {
    font-size: 18px;
    margin-bottom: 6px;
    color: var(--secondary-color);
    line-height: 1.2;
    word-wrap: break-word;
    max-width: 100%;
}

.category-content p {
    font-size: 13px;
    color: rgba(26, 26, 26, 0.8);
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.category-content .learn-more {
    color: white;
    font-weight: 600;
    font-size: 14px;
}

/* Categories Carousel */
.categories-carousel {
    position: relative;
    margin-top: 50px;
}

.categories-carousel .categories-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 0 20px;
}

.categories-carousel .categories-track::-webkit-scrollbar {
    display: none;
}

.categories-carousel .category-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    aspect-ratio: 3/4;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border: 2px solid var(--secondary-color);
    background: white;
    color: var(--secondary-color);
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Desktop: 4 visible, still scrollable */
@media (min-width: 1200px) {
    .categories-carousel .category-card {
        flex: 0 0 calc(25% - 15px);
    }
}

/* Large tablet/small desktop: 3 visible */
@media (min-width: 900px) and (max-width: 1199px) {
    .categories-carousel .category-card {
        flex: 0 0 calc(33.333% - 14px);
    }
}

/* Tablet: 2.5 visible */
@media (min-width: 600px) and (max-width: 899px) {
    .categories-carousel .category-card {
        flex: 0 0 calc(40% - 12px);
    }
}

/* Mobile: 1.2 visible (peek next) */
@media (max-width: 599px) {
    .categories-carousel .category-card {
        flex: 0 0 calc(85% - 10px);
    }

    .categories-carousel .categories-track {
        padding-left: 5%;
        padding-right: 15%;
    }

    .carousel-btn {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
    padding: 80px 0;
    background: var(--secondary-color);
}

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

.feature-card {
    text-align: center;
}

.feature-icon {
    font-size: 90px;
    margin-bottom: 25px;
    display: block;
    color: var(--primary-color);
}

.feature-icon .icon {
    width: 90px;
    height: 90px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: white;
}

.feature-card p {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products {
    padding: 100px 0;
    background: var(--text-light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

/* Products Carousel */
.products-carousel {
    position: relative;
    margin-top: 50px;
}

.products-carousel .products-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 0 20px;
}

.products-carousel .products-track::-webkit-scrollbar {
    display: none;
}

.products-carousel .product-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
}

@media (min-width: 1200px) {
    .products-carousel .product-card {
        flex: 0 0 calc(25% - 15px);
    }
}

@media (min-width: 900px) and (max-width: 1199px) {
    .products-carousel .product-card {
        flex: 0 0 calc(33.333% - 14px);
    }
}

@media (min-width: 600px) and (max-width: 899px) {
    .products-carousel .product-card {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 599px) {
    .products-carousel .product-card {
        flex: 0 0 calc(85% - 10px);
    }

    .products-carousel .products-track {
        padding-left: 5%;
        padding-right: 15%;
    }
}

.product-card {
    background: var(--text-light);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

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

.product-image {
    width: 100%;
    height: 250px;
    aspect-ratio: 1/1;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 14px;
    overflow: hidden;
    position: relative;
}

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

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

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.product-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-rating {
    color: #ffd700;
    margin-bottom: 10px;
    font-size: 14px;
}

.product-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.product-card .product-desc {
    color: #999;
    font-size: 13px;
    margin-bottom: 15px;
    line-height: 1.5;
    flex: 1;
}

.product-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 12px;
    color: var(--text-muted);
}

.product-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.price {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary-color);
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
    margin-left: 10px;
}

.btn-details {
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 12px 20px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    font-size: 12px;
    width: 100%;
    text-align: center;
    display: block;
}

.btn-details:hover {
    background: var(--primary-color);
}

/* ============================================
   PRODUCT SINGLE PAGE
   ============================================ */
.product-single {
    padding: 120px 0 80px;
    background: white;
}

.product-single-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-gallery {
    position: sticky;
    top: 100px;
}

.product-main-image {
    width: 100%;
    background: white;
    margin-bottom: 20px;
    overflow: hidden;
}

.product-main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.product-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.product-thumb {
    height: 80px;
    background: var(--bg-light);
    cursor: pointer;
    opacity: 0.6;
    transition: var(--transition);
}

.product-thumb.active,
.product-thumb:hover {
    opacity: 1;
}

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

.product-details h1 {
    font-size: 42px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.product-category {
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.product-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.product-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.spec-item {
    padding: 20px;
    background: var(--bg-light);
}

.spec-label {
    font-size: 12px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.spec-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
}

.product-actions {
    display: flex;
    gap: 15px;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.product-single-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
}

.product-single-price span {
    font-size: 18px;
    color: #999;
    font-weight: 400;
}

.btn-order {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 18px 40px;
    border: none;
    cursor: pointer;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    font-size: 16px;
    display: inline-block;
}

.btn-order:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(196, 30, 58, 0.4);
}

/* ============================================
   TESTIMONIALS / REVIEWS
   ============================================ */
.testimonials {
    padding: 100px 0;
    background: var(--bg-light);
}

.testimonial-single {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 40px;
    position: relative;
}

.quote-icon {
    font-size: 80px;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: 0;
    left: 0;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 24px;
    font-style: italic;
    color: var(--secondary-color);
    margin-bottom: 30px;
    line-height: 1.6;
}

.testimonial-author {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    font-family: var(--font-heading);
}

.testimonial-role {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 5px;
}

.testimonial-rating {
    color: #ffd700;
    font-size: 20px;
    margin-top: 15px;
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.review-card {
    background: var(--text-light);
    padding: 40px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.review-card:hover {
    box-shadow: var(--shadow-md);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--bg-light);
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-author h4 {
    font-size: 16px;
    margin-bottom: 3px;
}

.review-author p {
    font-size: 13px;
    color: var(--text-muted);
}

.review-rating {
    color: #ffd700;
    margin-bottom: 15px;
}

.review-content {
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================================
   DELIVERY SECTION
   ============================================ */
.delivery-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.delivery-image {
    width: 100%;
}

.delivery-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-width: 500px;
    margin: 0 auto;
    display: block;
}

.delivery-text {
    padding: 20px;
}

.delivery-text .section-icon {
    margin-bottom: 20px;
}

.delivery-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.delivery-text p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.8;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
    padding: 150px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: var(--text-light);
    position: relative;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10,10,10,0.85);
}

.cta .container {
    position: relative;
    z-index: 1;
}

.cta-icon {
    font-size: 80px;
    margin-bottom: 30px;
    display: block;
}

.cta h2 {
    font-size: 56px;
    margin-bottom: 30px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* ============================================
   BLOG SECTION
   ============================================ */
.blog {
    padding: 100px 0;
    background: var(--bg-light);
}

.blog-carousel {
    position: relative;
    margin-top: 50px;
}

.blog-carousel .blog-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 0 20px;
}

.blog-carousel .blog-track::-webkit-scrollbar {
    display: none;
}

.blog-carousel .blog-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
}

@media (min-width: 1200px) {
    .blog-carousel .blog-card {
        flex: 0 0 calc(33.333% - 14px);
    }
}

@media (min-width: 900px) and (max-width: 1199px) {
    .blog-carousel .blog-card {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (min-width: 600px) and (max-width: 899px) {
    .blog-carousel .blog-card {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 599px) {
    .blog-carousel .blog-card {
        flex: 0 0 calc(85% - 10px);
    }

    .blog-carousel .blog-track {
        padding-left: 5%;
        padding-right: 15%;
    }
}

.blog-card {
    background: var(--text-light);
    overflow: hidden;
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.blog-image {
    width: 100%;
    height: 250px;
    aspect-ratio: 16/10;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.blog-content {
    padding: 30px;
}

.blog-date {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #999;
    font-size: 12px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.blog-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--secondary-color);
    line-height: 1.4;
}

.blog-card p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Blog Single */
.blog-single {
    padding: 120px 0 80px;
    background: white;
}

.blog-single-header {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.blog-single-header h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.blog-single-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    color: var(--text-muted);
    font-size: 14px;
}

.blog-single-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-single-meta .icon {
    width: 16px;
    height: 16px;
}

.blog-single-image {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
    margin-bottom: 40px;
}

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

.blog-single-content {
    max-width: 800px;
    margin: 0 auto;
}

.blog-single-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 16px;
}

.blog-single-content h2 {
    margin: 40px 0 20px;
    font-size: 28px;
}

.blog-single-content h3 {
    margin: 30px 0 15px;
    font-size: 22px;
}

/* Blog content - classic layout */
.blog-content-grid {
    line-height: 1.8;
    color: #444;
}

.blog-content-grid p {
    margin-bottom: 20px;
}

.blog-content-grid h2,
.blog-content-grid h3,
.blog-content-grid h4 {
    margin: 30px 0 15px;
    color: var(--secondary-color);
}

.blog-content-grid ul,
.blog-content-grid ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.blog-content-grid iframe,
.blog-content-grid video {
    display: block;
    max-width: 100%;
    margin: 30px auto;
    border: none;
    border-radius: 8px;
}

.blog-content-grid img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    border-radius: 8px;
}

.blog-content-grid hr {
    margin: 40px 0;
    border: none;
    border-top: 1px solid #eee;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    background: white;
}

.gallery-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.1));
    opacity: 0.3;
    pointer-events: none;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.gallery-caption p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
}

/* ============================================
   PARTNERS SECTION - CAROUSEL
   ============================================ */
.partners {
    padding: 80px 0;
    background: var(--secondary-color);
    overflow: hidden;
}

.partners h2 {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 50px;
    font-size: 36px;
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    align-items: center;
}

/* PFR Section */
.pfr-section {
    padding: 60px 0;
    background: white;
    text-align: center;
}

.pfr-section img {
    width: 100%;
    height: auto;
}

.partners-carousel {
    overflow: hidden;
    position: relative;
}

.partners-carousel::before,
.partners-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.partners-carousel::before {
    left: 0;
    background: linear-gradient(to right, var(--secondary-color), transparent);
}

.partners-carousel::after {
    right: 0;
    background: linear-gradient(to left, var(--secondary-color), transparent);
}

.partners-track {
    display: flex;
    gap: 60px;
    animation: scroll-partners 30s linear infinite;
    width: max-content;
}

.partners-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-partners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partner-logo {
    flex-shrink: 0;
    width: 180px;
    height: 100px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 12px;
    transition: var(--transition);
    padding: 20px;
    border-radius: 8px;
}

.partner-logo:hover {
    background: rgba(255,255,255,0.2);
}

.partner-logo a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(1.1);
    opacity: 0.9;
    transition: var(--transition);
}

.partner-logo:hover img {
    filter: brightness(1.2);
    opacity: 1;
}

.partner-logo span {
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}

/* ============================================
   CATEGORY PAGE
   ============================================ */
.category-hero {
    padding: 150px 0 80px;
    background: var(--secondary-color);
    color: var(--text-light);
    text-align: center;
}

.category-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.category-hero p {
    font-size: 18px;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.category-products {
    padding: 80px 0;
    background: white;
}

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

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.footer-about h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.footer-about h3 span {
    color: var(--primary-color);
}

.footer-about p {
    color: #999;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-section h4,
.footer-section h3 {
    font-size: 18px;
    margin-bottom: 25px;
    color: var(--text-light);
}

.footer-section p {
    color: #999;
    line-height: 1.8;
}

.footer-section p a {
    color: #999;
    transition: var(--transition);
}

.footer-section p a:hover {
    color: var(--primary-color);
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #999;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-contact p {
    color: #999;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.6;
}

.footer-contact .phone {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 15px 0;
}

.footer-contact a {
    color: #999;
}

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

.payment-methods {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.payment-icon {
    width: 60px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.footer-bottom p {
    color: #666;
    font-size: 14px;
}

.footer-bottom a {
    color: var(--primary-color);
}

/* Footer Social Media */
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.footer-social a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #999;
    font-size: 14px;
    transition: var(--transition);
}

.footer-social a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-social a .icon {
    width: 20px;
    height: 20px;
}

.footer-social a span {
    font-weight: 500;
}

/* Newsletter */
.newsletter-form {
    display: flex;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    background: rgba(255,255,255,0.1);
    color: var(--text-light);
    font-family: var(--font-body);
}

.newsletter-form input::placeholder {
    color: #666;
}

.newsletter-form button {
    padding: 12px 30px;
    background: var(--primary-color);
    border: none;
    color: var(--text-light);
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    transition: var(--transition);
    font-family: var(--font-body);
}

.newsletter-form button:hover {
    background: var(--primary-dark);
}

/* ============================================
   PAGE HEADERS
   ============================================ */
.page-header {
    padding: 150px 0 60px;
    background: var(--secondary-color);
    color: var(--text-light);
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.8;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 14px;
}

.breadcrumb a {
    color: rgba(255,255,255,0.7);
}

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

.breadcrumb span {
    color: rgba(255,255,255,0.5);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section {
    padding: 60px 0 80px;
    background: #f8f8f8;
}

/* Quick Contact Cards - Clickable phone/email */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px;
    background: white;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    position: relative;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.contact-card-phone {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.contact-card-phone .contact-card-icon,
.contact-card-phone .contact-card-label,
.contact-card-phone .contact-card-value,
.contact-card-phone .contact-card-action {
    color: white;
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 12px;
    color: var(--primary-color);
    font-size: 22px;
    flex-shrink: 0;
}

.contact-card-phone .contact-card-icon {
    background: rgba(255,255,255,0.2);
}

.contact-card-content {
    flex: 1;
    min-width: 0;
}

.contact-card-label {
    display: block;
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.contact-card-value {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.contact-card-action {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    white-space: nowrap;
}

/* Info Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.contact-info-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}

.contact-info-card-highlight {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: white;
}

.contact-info-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.contact-info-card-highlight .contact-info-header {
    border-bottom-color: rgba(255,255,255,0.1);
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 10px;
    color: var(--primary-color);
    font-size: 18px;
}

.contact-info-card-highlight .contact-info-icon {
    background: var(--primary-color);
    color: white;
}

.contact-info-header h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: var(--secondary-color);
}

.contact-info-card-highlight .contact-info-header h3 {
    color: white;
}

.contact-info-body p {
    color: #666;
    line-height: 1.8;
    margin: 0 0 8px;
}

.contact-info-card-highlight .contact-info-body p {
    color: rgba(255,255,255,0.8);
}

.contact-info-body .company-name {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.contact-info-card-highlight .contact-info-body .company-name {
    color: white;
}

.contact-hours {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.cooperation-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
}

.cooperation-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: rgba(255,255,255,0.9);
}

.cooperation-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Map */
.contact-map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}

.contact-map {
    height: 350px;
    background: var(--bg-light);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Contact Page - Tablet */
@media (max-width: 992px) {
    .contact-cards {
        grid-template-columns: 1fr;
    }

    .contact-info-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-info-card:last-child {
        grid-column: 1 / -1;
    }
}

/* Contact Page - Mobile */
@media (max-width: 600px) {
    .contact-section {
        padding: 40px 0 60px;
    }

    .contact-cards {
        gap: 12px;
        margin-bottom: 30px;
    }

    .contact-card {
        padding: 18px;
        gap: 12px;
    }

    .contact-card-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .contact-card-value {
        font-size: 16px;
    }

    .contact-card-action {
        display: none;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 30px;
    }

    .contact-info-card {
        padding: 25px 20px;
    }

    .contact-info-card:last-child {
        grid-column: auto;
    }

    .contact-map {
        height: 280px;
    }
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Base scroll animation - subtle and elegant */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0) translateX(0);
    will-change: auto;
}

/* Direction variants */
.animate-on-scroll.from-left {
    transform: translateX(-30px);
}

.animate-on-scroll.from-right {
    transform: translateX(30px);
}

.animate-on-scroll.fade-only {
    transform: none;
}

.animate-on-scroll.from-bottom {
    transform: translateY(40px);
}

/* Staggered animations for grids with data-stagger */
[data-stagger] > .animate-on-scroll:nth-child(1) { transition-delay: 0s; }
[data-stagger] > .animate-on-scroll:nth-child(2) { transition-delay: 0.08s; }
[data-stagger] > .animate-on-scroll:nth-child(3) { transition-delay: 0.16s; }
[data-stagger] > .animate-on-scroll:nth-child(4) { transition-delay: 0.24s; }
[data-stagger] > .animate-on-scroll:nth-child(5) { transition-delay: 0.32s; }
[data-stagger] > .animate-on-scroll:nth-child(6) { transition-delay: 0.4s; }
[data-stagger] > .animate-on-scroll:nth-child(7) { transition-delay: 0.48s; }
[data-stagger] > .animate-on-scroll:nth-child(8) { transition-delay: 0.56s; }

/* Legacy stagger - direct children */
.animate-on-scroll:nth-child(1) { transition-delay: 0.05s; }
.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.15s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.2s; }

/* Accessibility - respect user preferences */
@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll {
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .animate-on-scroll.animated {
        will-change: auto;
    }
}

/* Mobile: disable directional transforms that cause overflow */
@media (max-width: 768px) {
    .animate-on-scroll.from-left,
    .animate-on-scroll.from-right,
    .animate-on-scroll.from-bottom {
        transform: translateY(15px);
    }
}

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 48px;
    }

    .section-title {
        font-size: 36px;
    }

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

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

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


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

    .partner-logo {
        width: 150px;
        height: 80px;
    }

    nav ul {
        gap: 20px;
    }

    .product-single-grid {
        grid-template-columns: 1fr;
    }

    .product-gallery {
        position: static;
    }

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

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

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */
@media (max-width: 768px) {
    .header {
        padding: 12px 0;
    }

    .mobile-menu-btn,
    .menu-toggle {
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    /* Bigger header elements on mobile */
    .logo-image {
        height: 65px;
        max-width: 220px;
    }

    .search-toggle {
        width: 52px;
        height: 52px;
    }

    .search-toggle .icon {
        width: 30px;
        height: 30px;
    }

    .mobile-menu-btn .hamburger-lines {
        width: 28px;
        height: 24px;
        gap: 6px;
    }

    .mobile-menu-btn .hamburger-lines span {
        width: 28px;
        height: 3px;
    }

    .mobile-menu-btn .menu-label {
        font-size: 13px;
    }

    .header-right {
        gap: 12px;
    }

    /* Hide desktop nav on mobile */
    .desktop-nav {
        display: none !important;
    }

    /* Mobile nav - outside header, proper z-index */
    .mobile-nav {
        display: flex;
        position: fixed !important;
        top: 82px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--secondary-color);
        padding: 30px 20px;
        transform: translateX(-100%);
        transition: var(--transition);
        flex-direction: column;
        gap: 0;
        overflow-y: auto;
        z-index: 99999 !important;
    }

    .mobile-nav.active {
        transform: translateX(0);
    }

    .mobile-nav {
        flex-direction: column;
        gap: 0;
    }

    .mobile-nav a {
        display: block;
        padding: 15px 0;
        font-size: 16px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        text-align: center;
    }

    /* Oferta link identyczny jak inne elementy menu */
    .mobile-nav .nav-item {
        border-bottom: none;
    }
    .mobile-nav .nav-item > a {
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .mobile-nav .btn-nav {
        margin-top: 20px;
        text-align: center;
        padding: 15px 20px !important;
        border-bottom: none;
    }

    /* Reset stylów dla social icons na mobile */
    .mobile-social a {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0 !important;
        border-bottom: none !important;
    }
    .mobile-social a::after {
        display: none !important;
    }
    .mobile-social a .icon {
        margin: 0;
    }

    .header-contact,
    .header-social {
        display: none;
    }

    .mobile-social {
        display: flex;
    }

    .hero {
        margin-top: 82px;
        min-height: 80vh;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero p {
        font-size: 18px;
    }

    .section-title {
        font-size: 32px;
    }

    .about-content,
    .delivery-content {
        grid-template-columns: 1fr;
    }

    .delivery-content {
        gap: 40px;
    }

    .delivery-text h2 {
        font-size: 28px;
    }

    .services-grid,
    .products-grid,
    .reviews-grid,
    .category-grid,
    .categories-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        gap: 15px;
    }

    .category-card {
        aspect-ratio: 3/4;
    }

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

    /* Offer page mobile */
    .offer-category-item {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
        margin-bottom: 50px !important;
        padding-bottom: 50px !important;
    }

    .offer-category-image,
    .offer-category-content {
        order: unset !important;
        text-align: left !important;
    }

    .offer-category-content h3 {
        font-size: 24px !important;
    }

    /* Why Us section mobile */
    section [style*="grid-template-columns: repeat(4"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 25px !important;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .partners-track {
        gap: 40px;
    }

    .cta h2 {
        font-size: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .product-specs {
        grid-template-columns: 1fr;
    }

    .product-actions {
        flex-direction: column;
    }

    .btn-order {
        width: 100%;
        text-align: center;
    }

    .page-header h1,
    .category-hero h1 {
        font-size: 32px;
    }

    .blog-single-header h1 {
        font-size: 28px;
    }
}

/* ============================================
   EXTRA SMALL DEVICES (max 480px)
   ============================================ */
@media (max-width: 480px) {
    /* Header */
    .header-content {
        padding: 0 15px;
    }

    .logo-text {
        font-size: 22px;
    }

    /* Hero */
    .hero {
        min-height: 70vh;
        padding: 100px 15px 60px;
    }

    .hero h1 {
        font-size: 42px;
        line-height: 1.2;
    }

    .hero h1 span {
        font-size: 20px;
        display: block;
        margin-top: 12px;
    }

    .hero p {
        font-size: 18px;
        padding: 0 10px;
    }

    .hero .btn-primary {
        padding: 15px 35px;
        font-size: 15px;
    }

    /* Sections */
    section {
        padding: 50px 0;
    }

    .container {
        padding: 0 15px;
        max-width: 100%;
    }

    /* Prevent text and elements overflow on mobile */
    body {
        overflow-x: hidden;
    }

    h1, h2, h3, h4, h5, h6 {
        max-width: 100% !important;
        line-height: 1.3 !important;
    }

    img:not(.logo-image), video {
        max-width: 100% !important;
    }

    .category-image img {
        height: 100% !important;
    }

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

    .section-icon {
        font-size: 36px;
    }

    .section-title {
        font-size: 24px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    /* About section */
    .about {
        padding: 60px 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-video {
        width: 100%;
        max-width: 100%;
    }

    .video-wrapper {
        width: 100%;
    }

    .video-player {
        max-width: 100%;
        border-radius: 8px;
    }

    .video-player video {
        max-height: 80vh;
    }

    .about-images {
        grid-template-columns: 1fr;
        gap: 15px;
        width: 100%;
    }

    .about-image {
        height: 200px;
        width: 100%;
    }

    .about-image:first-child {
        height: 250px;
    }

    .about-text {
        width: 100%;
        text-align: center;
    }

    .about-text h2 {
        font-size: 22px !important;
        line-height: 1.3;
    }

    .about-text h3 {
        font-size: 17px !important;
        line-height: 1.4;
        margin-top: 25px !important;
    }

    .about-text p {
        font-size: 14px !important;
    }

    .about-text ul {
        font-size: 14px !important;
        padding-left: 20px !important;
        margin-left: 0 !important;
        text-align: left;
    }

    .about-text li {
        margin-bottom: 8px;
    }

    .highlight-text {
        padding: 20px;
        font-size: 14px;
    }

    /* Service cards */
    .service-card {
        padding: 30px 20px;
    }

    .service-card h3 {
        font-size: 18px;
    }

    .service-icon {
        font-size: 40px;
    }

    /* Product cards */
    .product-card {
        margin-bottom: 20px;
    }

    .product-info {
        padding: 20px 15px;
    }

    .product-info h3 {
        font-size: 16px;
    }

    .product-desc {
        font-size: 13px;
    }

    .product-meta {
        font-size: 12px;
        flex-wrap: wrap;
        gap: 10px;
    }

    .product-price .price {
        font-size: 20px;
    }

    .btn-details {
        padding: 10px 20px;
        font-size: 12px;
    }

    /* Feature cards */
    .feature-card {
        padding: 30px 20px;
    }

    .feature-icon {
        font-size: 60px;
    }

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

    .feature-card h3 {
        font-size: 16px;
    }

    .feature-card p {
        font-size: 13px;
    }

    /* Reviews */
    .review-card {
        padding: 25px 20px;
    }

    .review-content {
        font-size: 14px;
    }

    .review-author {
        font-size: 14px;
    }

    .testimonial-single {
        padding: 40px 20px;
    }

    .testimonial-text {
        font-size: 16px;
    }

    .quote-icon {
        font-size: 60px;
    }

    /* Blog cards */
    .blog-card {
        margin-bottom: 20px;
    }

    .blog-content {
        padding: 20px 15px;
    }

    .blog-content h3 {
        font-size: 16px;
    }

    .blog-date span {
        font-size: 12px;
    }

    /* Blog single */
    .blog-single {
        padding-top: 100px;
    }

    .blog-single-header {
        padding: 0 10px;
    }

    .blog-single-header h1 {
        font-size: 22px;
    }

    .blog-single-meta {
        font-size: 12px;
        flex-wrap: wrap;
        gap: 10px;
    }

    .blog-single-content {
        padding: 20px 10px;
        font-size: 15px;
    }

    .breadcrumb {
        font-size: 12px;
        flex-wrap: wrap;
        padding: 0 10px;
    }

    /* CTA section */
    .cta {
        padding: 60px 15px;
    }

    .cta h2 {
        font-size: 24px;
        line-height: 1.3;
    }

    .cta-icon {
        font-size: 40px;
    }

    .cta p {
        font-size: 14px;
    }

    /* About page inline boxes */
    section[style*="padding"] {
        padding: 50px 0 !important;
    }

    /* Partners */
    .partners-track {
        gap: 30px;
    }

    .partner-logo {
        width: 120px;
        height: 70px;
        padding: 15px;
    }

    .partners-carousel::before,
    .partners-carousel::after {
        width: 50px;
    }

    /* Footer */
    .footer {
        padding: 50px 0 20px;
    }

    .footer-content {
        gap: 30px;
    }

    .footer-section h3 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .footer-section p {
        font-size: 13px;
        line-height: 1.8;
    }

    .footer-bottom {
        padding-top: 20px;
    }

    .footer-bottom p {
        font-size: 12px;
    }

    /* Page headers */
    .page-header {
        padding: 120px 15px 60px;
    }

    .page-header h1 {
        font-size: 28px;
    }

    .page-header p {
        font-size: 14px;
    }

    /* Category hero */
    .category-hero {
        padding: 120px 15px 60px;
    }

    .category-hero h1 {
        font-size: 28px;
    }

    /* Product single page */
    .product-single {
        padding: 100px 15px 50px;
    }

    .product-single-grid {
        gap: 30px;
    }

    .product-single-info h1 {
        font-size: 24px;
    }

    .product-single-price {
        font-size: 28px;
    }

    .product-spec-item {
        padding: 15px;
    }

    .spec-label {
        font-size: 11px;
    }

    .spec-value {
        font-size: 14px;
    }

    /* Buttons */
    .btn-primary,
    .btn-secondary,
    .btn-outline {
        padding: 12px 20px;
        font-size: 13px;
    }

    .btn-order {
        padding: 15px 25px;
        font-size: 14px;
    }

    /* Offer page */
    .offer-section {
        padding: 50px 0;
    }

    .category-header h2 {
        font-size: 22px;
    }
}

/* ============================================
   TOUCH DEVICE IMPROVEMENTS
   ============================================ */
@media (hover: none) and (pointer: coarse) {
    /* Larger touch targets */
    .main-nav a {
        padding: 18px 0;
        min-height: 48px;
    }

    .btn-primary,
    .btn-secondary,
    .btn-outline,
    .btn-nav,
    .btn-details,
    .btn-order {
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .learn-more {
        padding: 10px 0;
        min-height: 44px;
    }

    /* Remove hover effects that don't work well on touch */
    .product-card:hover {
        transform: none;
    }

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

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

    /* Add active states instead */
    .btn-primary:active,
    .btn-secondary:active {
        transform: scale(0.98);
        opacity: 0.9;
    }

    .product-card:active,
    .service-card:active,
    .blog-card:active {
        transform: scale(0.99);
    }
}

/* ============================================
   LANDSCAPE MOBILE
   ============================================ */
@media (max-width: 896px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding-top: 80px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        margin-bottom: 20px;
    }

    .main-nav {
        top: 70px;
        max-height: calc(100vh - 70px);
    }
}

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

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }

.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }

.hidden { display: none; }
.visible { display: block; }

/* ============================================
   FLOATING CTA BUTTON - ORDER ONLINE
   ============================================ */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    animation: fadeInUp 0.6s ease-out 1s both;
}

.floating-cta.hidden {
    display: none;
}

.floating-cta-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-light);
    padding: 18px 28px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.4);
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-family: var(--font-heading);
}

.floating-cta-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 40px rgba(196, 30, 58, 0.5);
}

.floating-cta-btn:active {
    transform: translateY(-2px) scale(1.02);
}

.floating-cta-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s ease-in-out infinite;
}

.floating-cta-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

/* Icon-only version - circular cart button */
.floating-cta-btn.floating-cta-icon-only {
    width: 60px;
    height: 60px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
}

.floating-cta-btn.floating-cta-icon-only svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Mobile optimizations for CTA */
@media (max-width: 768px) {
    .floating-cta {
        bottom: 20px;
        right: 20px;
    }

    .floating-cta-btn.floating-cta-icon-only {
        width: 56px;
        height: 56px;
    }

    .floating-cta-btn.floating-cta-icon-only svg {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 480px) {
    .floating-cta {
        bottom: 15px;
        right: 15px;
    }

    .floating-cta-btn.floating-cta-icon-only {
        width: 52px;
        height: 52px;
    }

    .floating-cta-btn.floating-cta-icon-only svg {
        width: 24px;
        height: 24px;
    }
}

/* Additional mobile improvements */
@media (max-width: 768px) {
    /* Improve touch targets */
    .btn-primary,
    .btn-secondary,
    .btn-outline {
        min-height: 44px;
        min-width: 44px;
    }

    /* Better spacing for mobile */
    .container {
        padding: 0 16px;
    }

    /* Larger font for readability */
    body {
        font-size: 16px;
    }

    /* Better line height for mobile */
    p {
        line-height: 1.7;
    }


    /* Better image loading on mobile */
    img {
        max-width: 100%;
        height: auto;
    }
}

/* Footer Links (Privacy Policy, Terms, RODO) */
.footer-links {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #999;
    font-size: 13px;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 400;
}

.footer-links a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.footer-links .separator {
    color: #666;
    font-size: 12px;
}

@media (max-width: 480px) {
    .footer-links {
        flex-direction: column;
        gap: 8px;
    }
    
    .footer-links .separator {
        display: none;
    }
}

/* Legal Pages Styling (Privacy Policy, Terms, RODO) */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.legal-content h2 {
    color: var(--primary-color);
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.8;
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 30px;
    list-style: disc;
}

.legal-content ul li {
    margin-bottom: 12px;
    color: var(--text-dark);
    line-height: 1.7;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-content .last-updated {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--text-muted);
    font-style: italic;
}

.content-wrapper {
    padding: 40px 0;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 30px 20px;
    }

    .legal-content h2 {
        font-size: 20px;
        margin-top: 30px;
    }

    .legal-content ul {
        padding-left: 20px;
    }
}

/* Product Gallery Lightbox Styles */
.product-main-image {
    position: relative;
    cursor: pointer;
}

.product-main-image .zoom-hint {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-main-image:hover .zoom-hint {
    opacity: 1;
}

.product-main-image a {
    display: block;
}

.product-thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.product-thumb {
    width: 80px;
    height: 80px;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.3s ease, transform 0.2s ease;
}

.product-thumb:hover {
    transform: scale(1.05);
}

.product-thumb.active {
    border-color: var(--primary-color);
}

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

/* ============================================
   SEARCH - HEADER OVERLAY
   ============================================ */
.header-right {
    display: flex;
    align-items: center;
    gap: 5px;
}

.search-toggle {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    transition: var(--transition);
}

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

.search-toggle .icon {
    width: 20px;
    height: 20px;
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999999;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 100px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-overlay__container {
    width: 100%;
    max-width: 700px;
    padding: 0 20px;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.search-overlay.active .search-overlay__container {
    transform: translateY(0);
}

.search-overlay__header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-overlay__input-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    padding: 0 20px;
    transition: border-color 0.3s ease;
}

.search-overlay__input-wrap:focus-within {
    border-color: var(--primary-color);
}

.search-overlay__input-wrap .icon {
    width: 22px;
    height: 22px;
    color: rgba(255,255,255,0.5);
    flex-shrink: 0;
}

.search-overlay__input {
    flex: 1;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 18px;
    font-family: var(--font-body);
    padding: 16px 15px;
    outline: none;
    width: 100%;
}

.search-overlay__input::placeholder {
    color: rgba(255,255,255,0.4);
}

.search-overlay__clear {
    background: none;
    border: none;
    color: rgba(255,255,255,0.4);
    cursor: pointer;
    padding: 5px;
    display: none;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.search-overlay__clear.visible {
    display: flex;
}

.search-overlay__clear:hover {
    color: var(--text-light);
}

.search-overlay__clear .icon {
    width: 18px;
    height: 18px;
}

.search-overlay__close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.6);
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    flex-shrink: 0;
}

.search-overlay__close:hover {
    background: rgba(255,255,255,0.1);
    color: var(--text-light);
}

.search-overlay__close .icon {
    width: 24px;
    height: 24px;
}

/* Search Results */
.search-overlay__results {
    margin-top: 20px;
    max-height: 55vh;
    overflow-y: auto;
}

.search-overlay__results::-webkit-scrollbar {
    width: 4px;
}

.search-overlay__results::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
}

.search-result-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 14px 16px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-light);
    transition: background 0.2s ease;
}

.search-result-item:hover {
    background: rgba(255,255,255,0.08);
}

.search-result-item__img {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    background: rgba(255,255,255,0.05);
}

.search-result-item__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-result-item__info {
    flex: 1;
    min-width: 0;
}

.search-result-item__name {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-result-item__category {
    font-size: 13px;
    color: var(--primary-color);
}

.search-result-item__lead {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    line-height: 1.4;
    margin-top: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.search-result-item__price {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color);
    flex-shrink: 0;
}

.search-overlay__empty {
    text-align: center;
    padding: 40px 20px;
    color: rgba(255,255,255,0.5);
    font-size: 16px;
}

.search-overlay__hint {
    text-align: center;
    padding: 30px 20px;
    color: rgba(255,255,255,0.4);
    font-size: 15px;
}

.search-overlay__hint p {
    margin-bottom: 18px;
}

.search-hint-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.search-hint-tag {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.7);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.2s ease;
}

.search-hint-tag:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-1px);
}

/* Footer link */
.search-overlay__footer {
    margin-top: 15px;
    text-align: center;
    padding: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.search-overlay__footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

.search-overlay__footer a:hover {
    opacity: 0.8;
}

/* ============================================
   SEARCH - OFFER PAGE
   ============================================ */
.offer-search {
    padding: 40px 0 20px;
    background: white;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 82px;
    z-index: 100;
    transition: box-shadow 0.3s ease;
}

.offer-search.stuck {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.offer-search__bar {
    max-width: 600px;
    margin: 0 auto 20px;
}

.offer-search__input-wrap {
    display: flex;
    align-items: center;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 50px;
    padding: 0 20px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.offer-search__input-wrap:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(247,145,29,0.1);
}

.offer-search__input-wrap .icon {
    width: 20px;
    height: 20px;
    color: #aaa;
    flex-shrink: 0;
}

.offer-search__input {
    flex: 1;
    background: none;
    border: none;
    font-size: 16px;
    font-family: var(--font-body);
    padding: 14px 12px;
    outline: none;
    color: var(--text-dark);
    width: 100%;
}

.offer-search__input::placeholder {
    color: #aaa;
}

.offer-search__clear {
    background: none;
    border: none;
    color: #aaa;
    cursor: pointer;
    padding: 5px;
    display: none;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.offer-search__clear.visible {
    display: flex;
}

.offer-search__clear:hover {
    color: var(--text-dark);
}

.offer-search__clear .icon {
    width: 16px;
    height: 16px;
}

/* Category Filter Pills */
.offer-search__filters {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 5px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: center;
    flex-wrap: wrap;
}

.offer-search__filters::-webkit-scrollbar {
    display: none;
}

.offer-search__pill {
    background: transparent;
    border: 1.5px solid var(--border-color);
    color: var(--text-muted);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-family: var(--font-body);
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
    font-weight: 500;
}

.offer-search__pill:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.offer-search__pill.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-light);
}

/* Search Results Section */
.offer-search__results-section {
    padding: 60px 0;
    background: white;
    min-height: 300px;
}

.offer-search__results-header {
    text-align: center;
    margin-bottom: 40px;
    font-size: 14px;
    color: var(--text-muted);
}

.offer-search__results-header strong {
    color: var(--text-dark);
}

.offer-search__results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.offer-search__empty {
    text-align: center;
    padding: 60px 20px;
    grid-column: 1 / -1;
}

.offer-search__empty .icon {
    width: 48px;
    height: 48px;
    color: #ddd;
    margin-bottom: 15px;
}

.offer-search__empty p {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 5px;
}

.offer-search__empty small {
    color: #bbb;
    font-size: 13px;
}

/* ============================================
   MOBILE SEARCH BAR (below header)
   ============================================ */
/* ============================================
   SEARCH - RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .offer-search__results {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .search-overlay {
        padding-top: 30px;
        align-items: flex-start;
    }

    .search-overlay__container {
        padding: 0 15px;
    }

    .search-overlay__input {
        font-size: 18px;
        padding: 16px 12px;
    }

    .search-overlay__input::placeholder {
        font-size: 18px;
    }

    .search-result-item {
        padding: 12px;
    }

    .search-result-item__img {
        width: 55px;
        height: 55px;
    }

    .search-result-item__name {
        font-size: 14px;
    }

    .offer-search {
        top: 82px;
        padding: 20px 0 15px;
    }

    .offer-search__filters {
        justify-content: flex-start;
        flex-wrap: nowrap;
        padding: 0 0 8px;
    }

    .offer-search__pill {
        padding: 8px 16px;
        font-size: 13px;
    }

    .offer-search__results {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .search-overlay {
        padding-top: 20px;
    }

    .search-overlay__input-wrap {
        padding: 0 15px;
    }

    .search-overlay__results {
        max-height: 65vh;
    }

    .offer-search {
        top: 77px;
    }

    .offer-search__input {
        font-size: 15px;
        padding: 12px 10px;
    }

    .offer-search__results {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* ============================================
   SEARCH - ANIMATIONS & SKELETON
   ============================================ */

/* Staggered card entrance */
@keyframes searchCardIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.search-card-anim {
    animation: searchCardIn 0.4s ease forwards;
    opacity: 0;
}

/* Header overlay results fade-in */
@keyframes resultSlideIn {
    from {
        opacity: 0;
        transform: translateX(-8px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.search-result-item {
    animation: resultSlideIn 0.3s ease forwards;
    opacity: 0;
}

/* Skeleton loading shimmer */
@keyframes shimmer {
    0% { background-position: -400px 0; }
    100% { background-position: 400px 0; }
}

.skeleton-card {
    pointer-events: none;
    animation: searchCardIn 0.3s ease forwards;
    opacity: 0;
}

.skeleton-img {
    width: 100%;
    aspect-ratio: 1/1;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 800px 100%;
    animation: shimmer 1.5s infinite linear;
}

.skeleton-line {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 800px 100%;
    animation: shimmer 1.5s infinite linear;
    border-radius: 4px;
}

/* Results count header animation */
.offer-search__results-header {
    animation: resultSlideIn 0.3s ease forwards;
}

/* Smooth static content hide/show */
.offer-static-content {
    transition: opacity 0.3s ease;
}

.offer-search__results-section {
    transition: opacity 0.3s ease;
}

/* Empty state pulse */
@keyframes emptyPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.offer-search__empty .icon,
.search-overlay__empty {
    animation: emptyPulse 2s ease infinite;
}

/* Pill active transition glow */
.offer-search__pill.active {
    box-shadow: 0 2px 12px rgba(247,145,29,0.3);
}

@media (prefers-reduced-motion: reduce) {
    .search-card-anim,
    .search-result-item,
    .skeleton-card,
    .offer-search__results-header {
        animation: none;
        opacity: 1;
    }
    .skeleton-img,
    .skeleton-line {
        animation: none;
    }
}
