/* OPC Optic Catalog - Official 1:1 Graphic Presentation Stylesheet */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-main: #F5F5F5;
    --bg-card: #FFFFFF;
    --primary: #FF7C3A;
    --primary-hover: #e06e32;
    --border-color: #E5E5E5;
    --text-main: #1d1d1f;
    --text-muted: #888888;
    --font-header: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', 'Poppins', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-premium: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-card-hover: 0 8px 24px rgba(0, 0, 0, 0.10);
}

/* Reset and Global Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #FFFFFF;
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

#katalog-vertical {
    background-color: #FFFFFF;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ══ CONTAINER — wycentrowany, z marginesami jak w oryginale ══════════════ */
.container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
    width: 100%;
}

@media (max-width: 1300px) {
    .container {
        max-width: 1140px;
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (max-width: 1024px) {
    .container {
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (max-width: 768px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* Top Utility Bar */
.top-bar {
    background-color: #000000;
    color: #CCCCCC;
    font-size: 11px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left a {
    margin-right: 20px;
    transition: var(--transition-smooth);
}

.top-bar-left a:hover {
    color: #FFFFFF;
}

.top-bar-right .phone-info strong {
    color: #FFFFFF;
    margin-left: 4px;
}

/* ── Language Switcher ── */
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 0;
}

.top-bar-divider {
    width: 1px;
    height: 14px;
    background: rgba(255,255,255,0.2);
    margin: 0 12px;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 4px;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 4px;
    color: #AAAAAA;
    font-size: 10.5px;
    font-weight: 700;
    font-family: var(--font-body);
    cursor: pointer;
    padding: 3px 7px;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
}

.lang-btn:hover {
    color: #FFFFFF;
    border-color: rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.08);
}

.lang-btn.active {
    color: #FFFFFF;
    border-color: var(--primary);
    background: rgba(255,124,58,0.15);
}

.lang-flag-img {
    width: 20px;
    height: 13px;
    border-radius: 2px;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
}

.lang-code {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.lang-sep {
    color: rgba(255,255,255,0.2);
    font-size: 10px;
    user-select: none;
}

/* Main Header */
.main-header {
    background-color: #FFFFFF;
    padding: 18px 0;
    border-bottom: 1px solid var(--border-color);
}

.main-header .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.opc-logo-img {
    height: 48px;
    object-fit: contain;
}

/* Search Bar */
.header-search-bar {
    display: flex;
    align-items: center;
    flex-grow: 1;
    max-width: 580px;
    height: 44px;
    background-color: #F2F2F7;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
}

.category-select-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
    border-right: 1px solid var(--border-color);
    font-size: 12px;
    font-weight: 600;
    color: #111111;
    white-space: nowrap;
    cursor: pointer;
}

.category-select-wrapper .arrow-down {
    font-size: 8px;
    color: var(--text-muted);
}

.header-search-bar input {
    flex-grow: 1;
    border: none;
    background: transparent;
    padding: 0 16px;
    font-family: var(--font-body);
    font-size: 13px;
    color: #111111;
}

.header-search-bar input:focus {
    outline: none;
}

.search-btn {
    width: 46px;
    height: 100%;
    background-color: #000000;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.search-btn:hover {
    background-color: var(--primary);
}

.search-btn-icon {
    width: 18px;
    height: 18px;
    fill: #FFFFFF;
}

/* Catalog Badges */
.header-brand-badge {
    display: flex;
    align-items: center;
}

.catalog-year-badge {
    background-color: #000000;
    color: #FFFFFF;
    font-family: var(--font-header);
    font-size: 14px;
    font-weight: 700;
    padding: 6px 16px;
    letter-spacing: 1px;
    border-radius: 4px;
    border: 1px solid var(--primary);
    box-shadow: 0 2px 8px rgba(255, 124, 58, 0.15);
}

/* Navigation Bar */
.navigation-bar {
    background-color: #FFFFFF;
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-premium);
}

.nav-container {
    display: flex;
    align-items: center;
    height: 48px;
}

.categories-dropdown-wrapper {
    position: relative;
    height: 100%;
}

.categories-dropdown {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #000000;
    color: #FFFFFF;
    padding: 0 20px;
    height: 100%;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
}

.categories-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 260px;
    background: #ffffff;
    border: 1px solid #ebebeb;
    border-top: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    display: flex;
    flex-direction: column;
}

.categories-dropdown-wrapper:hover .categories-dropdown-menu,
.categories-dropdown-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cat-menu-link {
    padding: 14px 20px;
    font-size: 13.5px;
    color: #444;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: color 0.2s, padding-left 0.2s;
}

.cat-menu-link:last-child {
    border-bottom: none;
}

.cat-menu-link:hover {
    color: var(--primary);
    padding-left: 24px;
}

.categories-dropdown .hamburger {
    font-size: 16px;
}

.categories-dropdown .arrow {
    font-size: 8px;
    color: rgba(255,255,255,0.7);
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    height: 100%;
    margin-left: 20px;
}

.nav-links li {
    height: 100%;
}

.nav-link {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 18px;
    font-size: 11.5px;
    font-weight: 700;
    color: #111111;
    transition: var(--transition-smooth);
    letter-spacing: 0.5px;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link.active {
    color: var(--primary);
}

/* Hero Panoramic Collage (1:1 Homepage Slider Grid) */
.hero-collage {
    display: flex;
    height: 450px;
    width: 100%;
    overflow: hidden;
    background-color: #000000;
}

.collage-column {
    flex: 1;
    position: relative;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.collage-column:hover {
    flex: 1.5;
}

.collage-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.1) 60%, rgba(0,0,0,0.6) 100%);
    transition: var(--transition-smooth);
    z-index: 1;
}

.collage-column:hover .collage-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 100%);
}

.collage-hover-label {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-header);
    font-size: 32px;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 2;
    text-shadow: 0 2px 8px rgba(0,0,0,0.8);
    opacity: 0;
    transition: var(--transition-smooth);
}

.collage-column:hover .collage-hover-label {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

/* Center Column (Tactical Highlight) */
.collage-column.center-column {
    flex: 2;
    cursor: pointer;
}

.collage-overlay.center-overlay {
    background: rgba(0, 0, 0, 0.45);
}

.collage-column.center-column:hover {
    flex: 2.2;
}

.center-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    text-align: center;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.center-title {
    font-family: var(--font-header);
    font-size: 52px;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 2px;
    line-height: 1;
    text-shadow: 0 3px 12px rgba(0,0,0,0.8);
}

.center-logo {
    height: 38px;
    object-fit: contain;
    filter: drop-shadow(0 2px 10px rgba(0,0,0,0.5));
}

/* Highlights Bar (Screenshot matching) */
.highlights-bar {
    background-color: #FFFFFF;
    border-bottom: 1px solid var(--border-color);
    padding: 24px 0;
    margin-bottom: 40px;
    box-shadow: var(--shadow-premium);
}

.highlights-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    text-align: center;
}

.highlight-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-right: 1px solid var(--border-color);
}

.highlight-item:last-child {
    border-right: none;
}

.highlight-infographic-img {
    height: 38px;
    width: auto;
    object-fit: contain;
}

.highlight-text h3 {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: #111111;
}

/* Bestsellers Section Link Bar */
.bestsellers-bar {
    background-color: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 14px 20px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-premium);
}

.bestsellers-links {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.bestsellers-links .label {
    font-size: 11px;
    font-weight: 800;
    color: #000000;
    letter-spacing: 1px;
}

.bestseller-link {
    font-size: 11px;
    font-weight: 600;
    color: #555558;
    transition: var(--transition-smooth);
    text-transform: uppercase;
}

.bestseller-link:hover {
    color: var(--primary);
}

.bestseller-link.active {
    color: var(--primary);
    border-bottom: 1.5px solid var(--primary);
}

.bestseller-link.right-link {
    margin-left: auto;
    color: #8E8E93;
    text-decoration: underline;
}

.bestseller-link.right-link:hover {
    color: #000000;
}

/* Search and Filters Bar */
.filter-bar {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 16px 20px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-premium);
}

.filter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.filter-select {
    width: 100%;
    padding: 11px 16px;
    background: #F5F5F7;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition-smooth);
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2386868B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 15px;
    padding-right: 40px;
}

.filter-select:focus {
    outline: none;
    border-color: #86868B;
    background: #FFFFFF;
}

/* Catalog Sections */
.catalog-section {
    background-color: #FFFFFF;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 0;
    padding-bottom: 50px;
}

.section-products-container {
    margin-top: 30px;
    padding-bottom: 10px;
}

/* Section Nav Bar (tabs above product grid — like Slide4/10) */
.section-nav-bar {
    background-color: #f7f7f7;
    border-bottom: 1px solid var(--border-color);
    border-top: 1px solid var(--border-color);
    padding: 0;
}

.section-nav-container {
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
    height: 48px;
}

.section-nav-links {
    display: flex;
    align-items: center;
    gap: 0;
    height: 100%;
}

.snl-label {
    font-size: 10.5px;
    font-weight: 800;
    color: #111111;
    letter-spacing: 1px;
    padding-right: 16px;
    text-transform: uppercase;
}

.nav-item {
    font-size: 12px;
    font-weight: 500;
    color: #515154;
    cursor: pointer;
    transition: color 0.2s ease;
    padding: 0 16px;
    height: 100%;
    display: flex;
    align-items: center;
    border-bottom: 2px solid transparent;
}

.nav-item.active {
    color: #111111;
    font-weight: 700;
    border-bottom-color: #111111;
}

.nav-item.view-more {
    color: #8e8e93;
    text-decoration: underline;
    margin-left: 8px;
}

.nav-item:hover {
    color: #111111;
}

/* ══ PRODUCT GRID & CARDS (1:1 oryginał Slide10) ══════════════════════════════ */
.product-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.product-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.product-grid-5 {
    grid-template-columns: repeat(5, 1fr);
}

@media (max-width: 1200px) {
    .product-grid,
    .product-grid-5 { grid-template-columns: repeat(4, 1fr); }
    .product-grid-4 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
    .product-grid,
    .product-grid-5,
    .product-grid-4 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
    .product-grid,
    .product-grid-5,
    .product-grid-4 { grid-template-columns: repeat(2, 1fr); }
}

/* ══ PRODUCT CARD — 1:1 kopia oryginału opcoptic.pl ══════════════════════ */
.product-wrapper {
    background: #FFFFFF;
    border: 1px solid #000000;
    border-radius: 5px;
    padding: 0;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.25s ease, transform 0.22s ease;
    overflow: hidden;
    position: relative;
}

.product-wrapper:hover {
    box-shadow: 0 4px 18px rgba(0,0,0,0.13);
    transform: translateY(-2px);
}

/* Thumbnail wrapper to maintain aspect ratio and hold images */
.thumbnail-wrapper {
    position: relative;
    padding-top: 80%; /* Maintain aspect ratio */
    cursor: pointer;
    overflow: hidden;
}

.has-back-image img,
.no-back-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.product-image-back {
    opacity: 0;
}

.product-wrapper:hover .product-image-back {
    opacity: 1;
}

.product-wrapper:hover .has-back-image .wp-post-image {
    opacity: 0;
}

.product-wrapper:hover .has-back-image img,
.product-wrapper:hover .no-back-image img {
    transform: scale(1.05);
}

/* info panel */
.meta-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
    padding: 12px 14px 14px;
    text-align: center;
}

.heading-title.product-name {
    margin: 0 0 10px 0;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    text-transform: uppercase;
    min-height: 55px; /* height for 3 lines */
    display: flex;
    align-items: center;
    justify-content: center;
}

.heading-title.product-name a {
    color: #111;
    text-decoration: none;
    transition: color 0.2s ease;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.heading-title.product-name a:hover {
    color: #FCC905;
}

.product-title-text:hover {
    color: var(--primary);
}

/* cena — wyraźna, bold */
.product-price-tag {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #1d1d1f;
    letter-spacing: -0.3px;
    margin-bottom: 4px;
    margin-top: auto; /* Push prices to the bottom of the card content */
}

/* Global Price Hide rules for B2B mode */
body.prices-hidden .product-price-tag,
body.prices-hidden #modal-price,
body.prices-hidden .detail-price-row,
body.prices-hidden .prod-price-block,
body.prices-hidden .mega-menu-prod-price-vertical {
    display: none !important;
}

/* Generic Buttons */
.btn {
    padding: 9px 12px;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 10.5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: #000000;
    color: #FFFFFF;
}

.btn-primary:hover {
    background-color: var(--primary);
    color: #FFFFFF;
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: #515154;
}

.btn-outline:hover {
    border-color: #000000;
    color: #000000;
}

.btn-outline.active {
    background-color: #F5F5F7;
    border-color: #000000;
    color: #000000;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 9.5px;
}

/* Modals */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.modal.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    width: 90%;
    max-width: 860px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    transform: translateY(12px);
    transition: transform 0.25s ease;
}

.modal.open .modal-content {
    transform: translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #F5F5F7;
    border: none;
    color: #515154;
    font-size: 20px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.modal-close-btn:hover {
    color: #000000;
    background: #E5E5E7;
}

.product-detail-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    padding: 40px;
}

.detail-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #FAFBFD;
    border-radius: 4px;
    padding: 30px;
    border: 1px solid var(--border-color);
    height: 100%;
}

.detail-img {
    max-width: 100%;
    max-height: 280px;
    object-fit: contain;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.04));
}

.detail-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.detail-category {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: 1px;
}

.detail-title {
    font-family: var(--font-header);
    font-size: 34px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 1px;
    color: #111111;
}

.detail-desc {
    color: #515154;
    font-size: 13px;
    line-height: 1.5;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}

.detail-specs-section {
    margin-top: 10px;
}

.specs-title {
    font-family: var(--font-header);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.8px;
    margin-bottom: 12px;
    text-transform: uppercase;
    color: #111111;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
}

.specs-table tr {
    border-bottom: 1px solid #E2E2E7;
}

.specs-table td {
    padding: 8px 0;
}

.spec-label {
    color: #86868B;
    font-weight: 500;
    width: 40%;
}

.spec-value {
    color: #1D1D1F;
    font-weight: 600;
}

/* Badges */
.safety-badges-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
    justify-content: center;
}

.safety-badge-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    background-color: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    transition: var(--transition-smooth);
}

.safety-badge-img:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.safety-badge {
    padding: 4px 10px;
    border-radius: 2px;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    border: 1px solid;
    letter-spacing: 0.5px;
}

.safety-badge.ansi {
    background: rgba(255, 124, 58, 0.05);
    color: var(--primary);
    border-color: rgba(255, 124, 58, 0.2);
}

.safety-badge.en {
    background: rgba(58, 124, 255, 0.05);
    color: #3A7CFF;
    border-color: rgba(58, 124, 255, 0.2);
}

.safety-badge.iso {
    background: rgba(0, 204, 136, 0.05);
    color: #00CC88;
    border-color: rgba(0, 204, 136, 0.2);
}

.safety-badge.ce {
    background: #F5F5F7;
    color: #1D1D1F;
    border-color: var(--border-color);
}

/* Compare System */
.compare-drawer {
    position: fixed;
    bottom: -150px;
    left: 0;
    width: 100%;
    background: #FFFFFF;
    border-top: 2px solid #000000;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.06);
    transition: bottom 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 900;
    padding: 16px 0;
}

.compare-drawer.open {
    bottom: 0;
}

.compare-drawer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.compare-title-section {
    display: flex;
    flex-direction: column;
}

.compare-title-section h4 {
    font-family: var(--font-header);
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #111111;
}

.compare-title-section span {
    font-size: 12px;
    color: var(--text-muted);
}

.compare-items-list {
    display: flex;
    gap: 16px;
}

.compare-item-card {
    background: #F5F5F7;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    width: 210px;
}

.compare-item-img {
    width: 48px;
    height: 36px;
    object-fit: contain;
}

.compare-item-details {
    display: flex;
    flex-direction: column;
    width: 120px;
}

.compare-item-title {
    font-size: 11px;
    font-weight: 600;
    color: #111111;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.compare-item-remove {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 18px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
}

.compare-item-remove:hover {
    color: #FF4A4A;
}

/* Compare Table Modal */
.compare-modal-content {
    max-width: 960px;
    padding: 40px;
    background-color: #FFFFFF;
}

.compare-table-wrapper {
    overflow-x: auto;
    margin-top: 30px;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12.5px;
    text-align: left;
}

.compare-table th, .compare-table td {
    padding: 16px;
    border: 1px solid var(--border-color);
    vertical-align: top;
    min-width: 220px;
    color: #333333;
}

.compare-table th:first-child, .compare-table td:first-child {
    min-width: 160px;
    background: #FAFBFD;
    font-weight: 700;
    color: #111111;
}

.compare-table-product-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.compare-table-img {
    height: 80px;
    object-fit: contain;
}

.compare-table-title {
    font-family: var(--font-header);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #111111;
}

.compare-desc-cell {
    color: #515154;
    font-size: 12px;
    line-height: 1.5;
}

/* Vertical Catalog Sections & Sectional Banners */
.catalog-section {
    margin-bottom: 50px;
    background-color: #FFFFFF;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 40px;
}

.section-products-container {
    margin-top: 30px;
}

.section-banner {
    position: relative;
    height: 800px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.45) 50%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 20px;
    gap: 12px;
}

.banner-subtitle {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
}

.banner-subtitle::after {
    content: "";
    display: inline-block;
    width: 40px;
    height: 1.5px;
    background-color: var(--primary);
    vertical-align: middle;
    margin-left: 10px;
}

.banner-title {
    font-family: var(--font-header);
    font-size: 48px;
    font-weight: 800;
    letter-spacing: 1.5px;
    line-height: 1.1;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    max-width: 600px;
}

.banner-card {
    display: flex;
    align-items: center;
    background: rgba(15, 15, 15, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1.5px solid #c5a059;
    border-radius: 12px;
    padding: 20px;
    max-width: 600px;
    gap: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.banner-card-thumb {
    width: 140px;
    height: 140px;
    object-fit: cover;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.banner-card-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
}

.banner-card-text {
    font-size: 14px;
    font-weight: 400;
    color: #E2E2E7;
    line-height: 1.4;
}

.banner-card-text strong {
    font-size: 18px;
    color: #ffffff;
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
}

.banner-card-btn {
    align-self: flex-start;
    font-size: 11px;
    font-weight: 700;
    color: #FFFFFF;
    background-color: #000000;
    border: 1.5px solid #c5a059;
    padding: 10px 24px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.banner-card-btn:hover {
    background-color: #c5a059;
    border-color: #c5a059;
    color: #000000;
}

/* Gray Divider Sub-Navigation Bar */
.section-nav-bar {
    background-color: #F4F4F6;
    border-bottom: 1px solid var(--border-color);
    padding: 12px 0;
}

.section-nav-container {
    display: flex;
    justify-content: flex-end;
}

.section-nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-item {
    font-size: 12px;
    font-weight: 600;
    color: #515154;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.nav-item.active {
    color: #000000;
    border-bottom: 1.5px solid #000000;
    padding-bottom: 2px;
}

.nav-item.view-more {
    text-decoration: underline;
    color: #8E8E93;
}

.nav-item:hover {
    color: #000000;
}

/* ══ FOOTER (1:1 oryginał Slide11) ══════════════════════════════════════════ */
.footer-area {
    background: #0a0a0a;
    color: #aaaaaa;
    padding: 60px 0 0 0;
    margin-top: 80px;
    font-size: 13px;
    font-family: var(--font-body);
}

.footer-grid-container {
    display: grid;
    grid-template-columns: 220px 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 60px;
    align-items: start;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* Brand column */
.brand-info {
    gap: 28px;
}

.footer-logo {
    height: 52px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* Contact list in footer */
.footer-contact-info {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 4px;
}

.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact-icon-svg {
    width: 16px;
    height: 16px;
    min-width: 16px;
    color: #888;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact-text {
    font-size: 12.5px;
    color: #888888;
    line-height: 1.6;
}

.footer-contact-text a {
    color: #888888;
    transition: color 0.2s ease;
}

.footer-contact-text a:hover {
    color: #ffffff;
}

/* Column headers with orange/red line — exactly like original */
.footer-title {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0;
    white-space: nowrap;
    padding-bottom: 4px;
}

.footer-title::after {
    content: "";
    display: block;
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, #c0392b 0%, rgba(192,57,43,0.15) 100%);
    margin-left: 14px;
}

/* Footer link lists */
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.footer-links a {
    color: #888888;
    font-size: 13px;
    font-weight: 400;
    transition: color 0.2s ease;
    display: inline;
}

.footer-links a:hover {
    color: #ffffff;
}

.count-tag {
    color: #666666;
    font-size: 12px;
}

/* ══ FOOTER BOTTOM BAR ═══════════════════════════════════════════════════════ */
.footer-bottom {
    background: #0a0a0a;
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 24px 0;
    margin-top: 0;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-copyright-left {
    display: flex;
    flex-direction: column;
}

.copyright-text {
    font-size: 11.5px;
    color: #666666;
    line-height: 1.6;
}

/* Polish flag + text (center) */
.footer-polish-capital {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mini-polish-flag {
    width: 36px;
    height: 24px;
    border-radius: 3px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.15);
    position: relative;
}

.mini-polish-flag::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: #ffffff;
}

.mini-polish-flag::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: #dc143c;
}

.polish-capital-text {
    font-size: 12px;
    font-weight: 500;
    color: #cccccc;
    letter-spacing: 0.3px;
}

/* OPC GROUP logo — right side of footer bottom */
.footer-group-logo {
    display: flex;
    align-items: center;
}

.opc-group-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: brightness(10);
    opacity: 0.85;
}

.group-logo-fallback {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.group-logo-symbol {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 3px;
    line-height: 1;
    /* Matches the strikethrough OPC style in original */
    position: relative;
}

.group-logo-symbol::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -4px;
    right: -4px;
    height: 2px;
    background: #ffffff;
    transform: translateY(-50%);
}

.group-logo-text {
    font-family: var(--font-body);
    font-size: 8px;
    font-weight: 700;
    color: #888888;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: 2px;
}

/* Blog section wrapper (gray bg, exactly like slide11) */
.blog-section-wrapper {
    background: #f5f5f7;
    padding: 60px 0 50px;
}

.blog-section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    justify-content: center;
}

.blog-hr-line {
    display: block;
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, #c0392b 40%, #c0392b 60%, transparent);
    max-width: 300px;
    opacity: 0.4;
}

.blog-section-title {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 500;
    color: #1d1d1f;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.blog-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 340px));
    gap: 24px;
    justify-content: flex-start;
}

.blog-card-item {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    padding: 24px 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.blog-card-title {
    font-size: 16px;
    font-weight: 600;
    color: #1d1d1f;
    line-height: 1.4;
}

.blog-card-link {
    font-size: 11px;
    font-weight: 700;
    color: #c0392b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

.blog-card-link:hover {
    color: #922b21;
}

.blog-card-meta {
    font-size: 11.5px;
    color: #888888;
    border-top: 1px solid #e5e5e5;
    padding-top: 12px;
    margin-top: 4px;
}

/* Facebook Feed Carousel Styling */
.blog-section-wrapper {
    position: relative;
}

.blog-cards-grid.carousel-active {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 24px;
    padding-bottom: 12px;
    -webkit-overflow-scrolling: touch;
}

.blog-cards-grid.carousel-active::-webkit-scrollbar {
    height: 6px;
}

.blog-cards-grid.carousel-active::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.blog-cards-grid.carousel-active::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.blog-cards-grid.carousel-active .blog-card-item {
    flex: 0 0 340px;
    max-width: 340px;
    scroll-snap-align: start;
}

.fb-carousel-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.fb-carousel-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #dddfe2;
    background: #ffffff;
    color: #1d1d1f;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.fb-carousel-btn:hover {
    background: #f5f6f7;
    color: #1877F2;
    border-color: #1877F2;
}

.fb-carousel-btn:active {
    transform: scale(0.95);
}

/* Facebook Post Card styling */
.fb-post-card {
    padding: 16px;
    gap: 10px;
    border: 1px solid #dddfe2;
}

.fb-post-header {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    padding-bottom: 6px;
}

.fb-post-avatar-wrapper {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    overflow: hidden;
}

.fb-post-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #dddfe2;
}

.fb-post-author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.fb-post-author-name {
    font-size: 14px;
    font-weight: 700;
    color: #1c1e21;
    display: flex;
    align-items: center;
    gap: 4px;
}

.fb-post-author-name a {
    color: #1c1e21;
    text-decoration: none;
    transition: color 0.15s;
}

.fb-post-author-name a:hover {
    color: #1877F2;
    text-decoration: underline;
}

.fb-verified-badge {
    display: inline-flex;
    align-items: center;
}

.fb-post-time {
    font-size: 12px;
    color: #65676b;
    display: flex;
    align-items: center;
    gap: 4px;
}

.fb-logo-watermark {
    position: absolute;
    right: 0;
    top: 4px;
    opacity: 0.8;
}

.fb-post-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fb-post-text {
    font-size: 13px;
    line-height: 1.45;
    color: #1c1e21;
    margin: 0;
}

.fb-post-image-wrapper {
    width: 100%;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #f0f2f5;
    background: #f0f2f5;
}

.fb-post-image {
    width: 100%;
    max-height: 160px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.fb-post-card:hover .fb-post-image {
    transform: scale(1.02);
}

.fb-post-footer {
    border-top: 1px solid #dddfe2;
    padding-top: 12px;
    margin-top: auto;
}

.fb-view-link {
    font-size: 12px;
    font-weight: 700;
    color: #1877F2;
    text-decoration: none;
    transition: color 0.15s;
}

.fb-view-link:hover {
    color: #145dbf;
    text-decoration: underline;
}

/* Highlights bar bottom icons */
.highlight-icon-svg {
    width: 32px;
    height: 32px;
    color: #333333;
    flex-shrink: 0;
}

.highlights-bar-bottom .highlight-text h3 {
    font-size: 13px;
    font-weight: 600;
    color: #1d1d1f;
}

.highlights-bar-bottom .highlight-text p {
    font-size: 11px;
    color: var(--text-muted);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.header-action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    font-size: 11px;
    font-weight: 600;
    color: #333333;
    transition: var(--transition-smooth);
    position: relative;
}

.header-action-item:hover {
    color: var(--primary);
}

.hdr-icon {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    margin-bottom: 2px;
}

.action-label {
    font-size: 10.5px;
    font-weight: 500;
    color: #333333;
    line-height: 1;
}

.icon-badge-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hdr-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: #e07b39;
    color: #FFFFFF;
    font-size: 9px;
    font-weight: 700;
    min-width: 17px;
    height: 17px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0 2px;
}

/* Social icons top bar */
.social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-icon {
    color: #888888;
    display: flex;
    align-items: center;
    transition: color 0.2s;
}

.social-icon:hover {
    color: #ffffff;
}

.top-bar-divider {
    width: 1px;
    height: 14px;
    background: rgba(255,255,255,0.15);
    margin: 0 6px;
}

/* Highlights Bar bottom variant */
.highlights-bar-bottom {
    background-color: #FFFFFF;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 30px 0;
}

.highlights-bar-bottom .highlight-item {
    gap: 16px;
}

/* Responsive Rules */
@media (max-width: 992px) {
    .main-header .header-container { flex-wrap: wrap; gap: 12px; }
    .header-search-bar { order: 3; max-width: 100%; flex: 1 1 100%; }
    .btn-inquiry-header { display: none; }
    .navigation-bar { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .navigation-bar .container { width: max-content; min-width: 100%; }
    .nav-container { width: max-content; min-width: 100%; }
    .nav-links { margin-left: 0; padding: 0 10px; }
    .categories-dropdown { display: none; }
    .hero-collage { height: 380px; }
    .center-title { font-size: 28px; }
    .highlights-container { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .highlight-item { border-right: none; justify-content: flex-start; padding-left: 16px; }
    .section-banner { height: 580px; }
    .banner-title { font-size: 32px; }
}
@media (max-width: 768px) {
    /* Top Bar Mobile Adjustments */
    .top-bar-container {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    .top-bar-left {
        display: flex;
        justify-content: center;
        width: 100%;
    }
    .top-bar-right {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        width: 100%;
    }

    .product-detail-layout { grid-template-columns: 1fr; }
    .hero-collage {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    .hero-collage::-webkit-scrollbar {
        display: none;
    }
    .collage-column {
        flex: 0 0 100%;
        width: 100%;
        scroll-snap-align: start;
    }
    .collage-column.center-column {
        flex: 0 0 100%;
        width: 100%;
    }
    .collage-hover-label {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
        font-size: 24px;
    }
    .highlights-container { grid-template-columns: 1fr; }
    .highlight-item { padding-left: 0; justify-content: center; }
    .section-nav-bar { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .section-nav-bar .container { width: max-content; min-width: 100%; }
    .section-nav-container { width: max-content; min-width: 100%; justify-content: flex-start; padding: 0 16px; }
    .section-nav-links { width: max-content; }
    .footer-grid-container { grid-template-columns: 1fr 1fr; gap: 28px; }
    .fb-carousel-controls { display: none; }
    .inquiry-row { grid-template-columns: 1fr; }
    .section-banner { height: 450px; }
    .banner-title { font-size: 26px; }
    .banner-card { display: none; }
}
@media (max-width: 576px) {
    .hero-collage { height: 340px; }
    .center-title { font-size: 20px; }
    .category-select-wrapper { display: none; }
    .bestsellers-links { justify-content: center; gap: 10px; }
    .bestseller-link.right-link { margin-left: 0; width: 100%; text-align: center; margin-top: 5px; }
    .footer-grid-container { grid-template-columns: 1fr; gap: 22px; }
    .footer-bottom-container { flex-direction: column; align-items: flex-start; gap: 14px; }
    .inquiry-modal-content { padding: 20px 16px; border-radius: 0; }
}
@media (max-width: 480px) {
    .hero-collage { height: 300px; }
    .opc-logo-img { height: 36px; }
    .header-actions { gap: 12px; }
    .product-grid, .product-grid-4, .product-grid-5 { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .meta-wrapper { padding: 8px 10px 10px; }
    .heading-title.product-name { font-size: 12px; min-height: 48px; }
    .product-price-tag { font-size: 14px; }
    .nav-link { padding: 0 10px; font-size: 10px; }
    .nav-item { height: 36px; padding: 0 10px; }
    .blog-cards-grid.carousel-active .blog-card-item {
        flex: 0 0 280px;
        max-width: 280px;
    }
}

/* HEADER INQUIRY BUTTON */
.btn-inquiry-header {
    background: #111111; color: #ffffff; border: none;
    padding: 10px 18px; border-radius: 4px; font-family: var(--font-body);
    font-size: 11px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase;
    cursor: pointer; transition: background 0.25s ease; white-space: nowrap;
}
.btn-inquiry-header:hover { background: var(--primary); }

/* INQUIRY MODAL */
.inquiry-modal-content {
    max-width: 580px; width: 100%; padding: 40px; background: #ffffff;
    border-radius: 8px; position: relative;
}
.inquiry-header {
    display: flex; align-items: center; gap: 16px;
    margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid var(--border-color);
}
.inquiry-icon {
    width: 52px; height: 52px; background: #f5f5f7; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; color: #111111; flex-shrink: 0;
}
.inquiry-title { font-family: var(--font-body); font-size: 20px; font-weight: 700; color: #111111; margin: 0 0 2px; }
.inquiry-subtitle { font-size: 12px; color: var(--text-muted); margin: 0; }
.inquiry-form { display: flex; flex-direction: column; gap: 16px; }
.inquiry-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.inquiry-field { display: flex; flex-direction: column; gap: 5px; }
.inquiry-label { font-size: 12px; font-weight: 600; color: #333333; }
.inquiry-optional { font-weight: 400; color: var(--text-muted); }
.req { color: var(--primary); }
.inquiry-input,
.inquiry-textarea {
    width: 100%; padding: 10px 14px; border: 1px solid #ddd; border-radius: 4px;
    font-family: var(--font-body); font-size: 13px; color: #111111; background: #ffffff;
    transition: border-color 0.2s ease; outline: none;
}
.inquiry-input:focus,
.inquiry-textarea:focus { border-color: #111111; box-shadow: 0 0 0 3px rgba(17,17,17,0.06); }
.inquiry-input-locked { background: #f5f5f7; color: #555; cursor: not-allowed; border-style: dashed; }
.inquiry-textarea { resize: vertical; min-height: 100px; }
.inquiry-rodo { background: #f9f9f9; border: 1px solid var(--border-color); border-radius: 4px; padding: 12px; }
.inquiry-checkbox-label { display: flex; align-items: flex-start; gap: 10px; font-size: 11.5px; color: #555; cursor: pointer; line-height: 1.5; }
.inquiry-checkbox-label input[type="checkbox"] { margin-top: 2px; width: 14px; height: 14px; flex-shrink: 0; accent-color: #111111; }
.inquiry-checkbox-label a { color: var(--primary); text-decoration: underline; }
.inquiry-submit-btn {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    width: 100%; padding: 14px; background: #111111; color: #ffffff; border: none;
    border-radius: 4px; font-family: var(--font-body); font-size: 12px; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase; cursor: pointer; transition: background 0.25s ease; margin-top: 4px;
}
.inquiry-submit-btn:hover { background: var(--primary); }
.inquiry-submit-btn:disabled { background: #aaaaaa; cursor: not-allowed; }
.inquiry-form-error { background: #fff3f3; border: 1px solid #ffcccc; color: #cc0000; padding: 10px 14px; border-radius: 4px; font-size: 12.5px; }
.inquiry-form-success {
    background: #f0fff4; border: 1px solid #bbf7d0; color: #166534;
    padding: 14px; border-radius: 4px; font-size: 13px; font-weight: 600;
    display: flex; align-items: center; gap: 10px;
}
.inquiry-note { font-size: 11px; color: var(--text-muted); text-align: center; }
.btn-inquiry-modal {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    width: 100%; padding: 13px; background: #111111; color: #ffffff; border: none;
    border-radius: 4px; font-family: var(--font-body); font-size: 12px; font-weight: 700;
    letter-spacing: 0.8px; text-transform: uppercase; cursor: pointer; transition: background 0.25s ease;
}
.btn-inquiry-modal:hover { background: var(--primary); }
.btn-official-link {
    display: flex; align-items: center; justify-content: center;
    margin-top: 10px; font-size: 12px; color: var(--text-muted); text-decoration: underline;
}
.btn-official-link:hover { color: #111111; }

/* ══ CATEGORIES DROPDOWN MENU ═══════════════════════════════ */
.categories-dropdown-menu {
    width: 260px !important;
    min-height: auto;
    padding: 0;
    overflow: hidden;
}

.mega-menu-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.mega-menu-sidebar {
    width: 100%;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    padding: 0;
    box-sizing: border-box;
}

.mega-menu-item {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    color: #111111;
    text-decoration: none;
    transition: all 0.2s ease;
    border-bottom: 1px solid #ebebeb;
    box-sizing: border-box;
    position: relative;
    background: #ffffff;
}

.mega-menu-item:last-child {
    border-bottom: none;
}

.mega-menu-item:hover, .mega-menu-item.active {
    color: #DE1010;
    background: #fcfcfc;
}

.mega-menu-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
    margin-right: 12px;
    flex-shrink: 0;
    display: block;
}

.mega-menu-label {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
}

.mega-menu-arrow {
    font-size: 11px;
    color: #bbbbbb;
    margin-left: 10px;
    flex-shrink: 0;
    transition: color 0.2s ease;
}

.mega-menu-item:hover .mega-menu-arrow,
.mega-menu-item.active .mega-menu-arrow {
    color: #DE1010;
}

/* Breadcrumb Bar styling (global) */
.breadcrumb-bar {
    background-color: #ffffff;
    padding: 15px 0;
    font-size: 13px;
    color: #818388;
    border-bottom: 1px solid #ebebeb;
    margin-bottom: 30px;
}
.breadcrumb-bar a {
    color: #818388;
    text-decoration: none;
    transition: color 0.2s ease;
}
.breadcrumb-bar a:hover {
    color: #ff7c3a;
}
.breadcrumb-bar span {
    margin: 0 8px;
    color: #d1d1d1;
}
.breadcrumb-bar span:last-child {
    color: #000000;
    font-weight: 500;
}

/* ==========================================
   COOKIE CONSENT BANNER STYLING
   ========================================== */
.cookie-banner-wrapper {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 380px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    padding: 24px;
    z-index: 100000;
    font-family: var(--font-body);
    color: var(--text-main);
    transform: translateY(150px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.5s ease;
}
.cookie-banner-wrapper.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}
.cookie-banner-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-main);
}
.cookie-banner-text {
    font-size: 13px;
    line-height: 1.5;
    color: #555555;
    margin-bottom: 20px;
}
.cookie-banner-text a {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 500;
}
.cookie-banner-text a:hover {
    color: var(--primary-hover);
}
.cookie-banner-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.cookie-btn {
    flex: 1;
    min-width: 100px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    border: none;
    transition: var(--transition-smooth);
}
.cookie-btn-accept {
    background-color: var(--primary);
    color: #FFFFFF;
}
.cookie-btn-accept:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
}
.cookie-btn-decline {
    background-color: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-color);
}
.cookie-btn-decline:hover {
    background-color: rgba(0, 0, 0, 0.04);
}
.cookie-btn-settings {
    background-color: transparent;
    color: var(--text-muted);
    font-size: 12px;
    text-decoration: underline;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-top: 10px;
    text-align: center;
    width: 100%;
}
.cookie-btn-settings:hover {
    color: var(--text-main);
}

@media (max-width: 480px) {
    .cookie-banner-wrapper {
        bottom: 16px;
        right: 16px;
        left: 16px;
        width: auto;
        padding: 18px;
    }
}


