/* ============================================================
   SiyaLife İlaç - Corporate Website Styles
   Primary: #B01F24 | Light BG: #F4F4F5 | Dark: #000 | White: #FFF
   Font: Poppins
   ============================================================ */

:root {
    --primary: #B01F24;
    --primary-dark: #8B1A1E;
    --primary-light: rgba(176, 31, 36, 0.1);
    --dark: #000000;
    --white: #FFFFFF;
    --light-bg: #F4F4F5;
    --gray: #6c757d;
    --gray-light: #e9ecef;
    --text: #333333;
    --text-light: #666666;
    --radius: 0.5rem;
    --radius-lg: 1rem;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
}

* { box-sizing: border-box; }

body {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9375rem;
    color: var(--text);
    background: var(--white);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; }

/* ============================================================
   Top Bar
   ============================================================ */
.top-bar {
    background: var(--dark);
    color: rgba(255,255,255,0.8);
    font-size: 0.8rem;
    padding: 0.5rem 0;
}

.top-bar a {
    color: rgba(255,255,255,0.8);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

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

.social-links a {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 0.8rem;
}

.social-links a:hover {
    background: var(--primary);
    color: #fff;
}

.lang-switch {
    display: flex;
    gap: 0.25rem;
}

.lang-btn {
    display: inline-block;
    padding: 0.15rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.1);
    cursor: pointer;
}

.lang-btn.active, .lang-btn:hover {
    background: var(--primary);
    color: #fff;
}

/* ============================================================
   Header / Navbar
   ============================================================ */
.site-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-img {
    height: 56px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    transition: var(--transition);
}

.site-header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.site-header.scrolled .logo-img {
    height: 42px;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    border-radius: var(--radius);
    transition: var(--transition);
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--primary);
    background: var(--primary-light);
}

/* Nav Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-dropdown-arrow {
    font-size: 0.65rem;
    transition: var(--transition);
}

.nav-dropdown:hover .nav-dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--transition);
    z-index: 1000;
}

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

.nav-dropdown-menu li a {
    display: block;
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text);
    transition: var(--transition);
    border-radius: 0;
}

.nav-dropdown-menu li a:hover {
    color: var(--primary);
    background: var(--primary-light);
}

/* Nav Search Button */
.nav-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: var(--light-bg);
    color: var(--text);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    margin-left: 0.5rem;
}

.nav-search-btn:hover {
    background: var(--primary-light);
    color: var(--primary);
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    inset: 0;
    z-index: 1100;
    background: var(--white);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.search-overlay-header {
    background: var(--white);
    border-bottom: 1px solid var(--gray-light);
    padding: 1.25rem 0;
}

.search-overlay-input-wrap {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    padding: 0.75rem 1.25rem;
    border: 2px solid transparent;
    transition: var(--transition);
}

.search-overlay-input-wrap:focus-within {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(176, 31, 36, 0.08);
}

.search-overlay-icon {
    font-size: 1.2rem;
    color: var(--gray);
    flex-shrink: 0;
}

.search-overlay-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text);
}

.search-overlay-input::placeholder {
    color: var(--gray);
    font-weight: 400;
}

.search-overlay-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: none;
    color: var(--text-light);
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}

.search-overlay-close:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.search-overlay-body {
    flex: 1;
    overflow-y: auto;
    padding: 2rem 0;
}

.search-overlay-hint {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    padding: 3rem 0;
}

.search-overlay-results {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.search-result-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-light);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
}

.search-result-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
    color: inherit;
}

.search-result-img {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-bg);
    overflow: hidden;
}

.search-result-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    padding: 1rem;
    transition: transform 0.4s ease;
}

.search-result-card:hover .search-result-img img {
    transform: scale(1.05);
}

.search-result-placeholder {
    font-size: 2.5rem;
    color: var(--gray-light);
}

.search-result-body {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.search-result-category {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.35rem;
}

.search-result-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.35rem;
    line-height: 1.3;
}

.search-result-card:hover .search-result-name {
    color: var(--primary);
}

.search-result-desc {
    font-size: 0.78rem;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 0;
    flex: 1;
}

@media (max-width: 991.98px) {
    .search-overlay-results {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767.98px) {
    .search-overlay-results {
        grid-template-columns: repeat(2, 1fr);
    }
    .search-overlay-input {
        font-size: 1rem;
    }
}

@media (max-width: 575.98px) {
    .search-overlay-results {
        grid-template-columns: 1fr;
    }
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    cursor: pointer;
    padding: 0;
    transition: var(--transition);
}
.hamburger:hover {
    border-color: var(--primary);
    background: var(--primary-light);
}

.hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.2s ease;
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Desktop: mobile-menu wrapper is transparent (children act as siblings) */
.mobile-menu { display: contents; }
.mobile-menu-header,
.mobile-menu-footer,
.mobile-menu-backdrop { display: none; }

@media (max-width: 991.98px) {
    .hamburger { display: flex; }

    /* Drawer container */
    .mobile-menu {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -360px;
        width: 320px;
        max-width: 86vw;
        height: 100vh;
        height: 100dvh;
        background: #fff;
        z-index: 1001;
        box-shadow: -12px 0 40px rgba(0, 0, 0, 0.18);
        transition: right 0.38s cubic-bezier(0.4, 0, 0.2, 1);
        overflow: hidden;
    }
    .mobile-menu.open { right: 0; }

    /* Drawer header */
    .mobile-menu-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1rem 1.25rem;
        border-bottom: 1px solid #f0f0f0;
        flex-shrink: 0;
    }
    .mobile-menu-brand img {
        height: 32px;
        width: auto;
        display: block;
    }
    .mobile-menu-close {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: none;
        background: #f5f5f5;
        color: var(--dark);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        font-size: 0.95rem;
        transition: var(--transition);
    }
    .mobile-menu-close:hover {
        background: var(--primary);
        color: #fff;
        transform: rotate(90deg);
    }

    /* Nav menu inside drawer */
    .nav-menu {
        display: flex;
        flex-direction: column;
        gap: 0.15rem;
        list-style: none;
        margin: 0;
        padding: 1rem 0.85rem;
        flex: 1;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .nav-menu > li {
        width: 100%;
    }
    .nav-menu li a {
        display: flex;
        align-items: center;
        padding: 0.85rem 1rem;
        font-size: 0.92rem;
        font-weight: 500;
        color: var(--dark);
        border-radius: 8px;
        transition: var(--transition);
    }
    .nav-menu li a:hover,
    .nav-menu li a.active {
        background: var(--primary-light);
        color: var(--primary);
    }

    /* Dropdown inside drawer */
    .nav-dropdown-toggle {
        justify-content: space-between !important;
        width: 100%;
    }
    .nav-dropdown-arrow {
        transition: transform 0.3s ease;
        font-size: 0.75rem;
    }
    .nav-dropdown.open > .nav-dropdown-toggle .nav-dropdown-arrow {
        transform: rotate(180deg);
    }
    .nav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        border: none;
        min-width: auto;
        padding: 0.15rem 0 0.3rem 0.75rem;
        margin: 0;
        display: none;
        list-style: none;
    }
    .nav-dropdown.open > .nav-dropdown-menu {
        display: block;
    }
    .nav-dropdown-menu li a {
        padding: 0.6rem 0.85rem;
        font-size: 0.85rem;
        font-weight: 400;
        color: var(--text-light);
        border-left: 2px solid #f0f0f0;
        border-radius: 0 6px 6px 0;
    }
    .nav-dropdown-menu li a:hover {
        border-left-color: var(--primary);
        color: var(--primary);
    }

    /* Drawer footer */
    .mobile-menu-footer {
        display: flex;
        flex-direction: column;
        gap: 0.85rem;
        padding: 1rem 1.25rem 1.1rem;
        border-top: 1px solid #f0f0f0;
        background: #fafafa;
        flex-shrink: 0;
    }
    .mobile-menu-actions {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    .mobile-menu-action {
        display: flex;
        align-items: center;
        gap: 0.7rem;
        padding: 0.7rem 0.9rem;
        background: #fff;
        border: 1px solid #eee;
        border-radius: 8px;
        color: var(--dark);
        font-size: 0.82rem;
        font-weight: 600;
        text-decoration: none;
        transition: var(--transition);
    }
    .mobile-menu-action i {
        color: var(--primary);
        font-size: 1rem;
    }
    .mobile-menu-action:hover {
        background: var(--primary-light);
        border-color: var(--primary);
        color: var(--primary);
    }
    .mobile-menu-action--wa {
        background: rgba(37, 211, 102, 0.08);
        border-color: rgba(37, 211, 102, 0.25);
        color: #1faa52;
    }
    .mobile-menu-action--wa i { color: #25d366; }
    .mobile-menu-action--wa:hover {
        background: #25d366;
        border-color: #25d366;
        color: #fff;
    }
    .mobile-menu-action--wa:hover i { color: #fff; }

    .mobile-menu-social {
        display: flex;
        gap: 0.4rem;
        justify-content: center;
    }
    .mobile-menu-social a {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
        border: 1px solid #eee;
        color: var(--text-light);
        font-size: 0.85rem;
        transition: var(--transition);
    }
    .mobile-menu-social a:hover {
        background: var(--primary);
        border-color: var(--primary);
        color: #fff;
        transform: translateY(-2px);
    }
    .mobile-menu-copyright {
        font-size: 0.68rem;
        color: var(--text-light);
        text-align: center;
        letter-spacing: 0.3px;
    }

    /* Backdrop */
    .mobile-menu-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    .mobile-menu-backdrop.open {
        opacity: 1;
        visibility: visible;
    }

    /* Scroll lock */
    body.menu-open { overflow: hidden; }
}

/* ============================================================
   Hero Slider
   ============================================================ */
.hero-section {
    position: relative;
    padding: 1rem 0;
    background: #f5f5f5;
}

/* Card wrappers */
.hero-card {
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
}

.hero-card--slider {
    background: var(--dark);
}

.hero-card--about {
    background: #fff;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.06);
}

.hero-card--about:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    color: inherit;
}

.hero-slider {
    position: relative;
    overflow: hidden;
    height: 340px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1.6s ease-in-out, transform 2s ease-in-out;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.15) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 480px;
    padding: 2rem;
}

.hero-content h1,
.hero-content p,
.hero-content .btn {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.hero-slide.active .hero-content h1 { opacity: 1; transform: translateY(0); transition-delay: 0.25s; }
.hero-slide.active .hero-content p  { opacity: 1; transform: translateY(0); transition-delay: 0.4s; }
.hero-slide.active .hero-content .btn { opacity: 1; transform: translateY(0); transition-delay: 0.55s; }

.hero-content h1 {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.6rem;
}

.hero-content p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 1.2rem;
    line-height: 1.5;
}

.hero-slide.active .hero-content p { opacity: 0.9; }

.hero-content .btn { font-size: 0.85rem; padding: 0.5rem 1.5rem; }

/* Vertical slide counter with progress bar */
.hero-counter {
    position: absolute;
    right: 1.4rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    z-index: 10;
    color: #fff;
    font-weight: 700;
    font-size: 0.82rem;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.5px;
    pointer-events: none;
}

.hero-counter-current { color: rgba(255,255,255,0.95); }
.hero-counter-total   { color: rgba(255,255,255,0.45); }

.hero-counter-bar {
    position: relative;
    width: 1px;
    height: 52px;
    background: rgba(255,255,255,0.25);
    overflow: hidden;
}

.hero-counter-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--primary);
}

.hero-counter-fill.running {
    animation: heroCounterProgress 6s linear forwards;
}

@keyframes heroCounterProgress {
    from { height: 0; }
    to   { height: 100%; }
}

/* Hero About Card */
.hero-about-inner {
    padding: 1.5rem 1.8rem;
    width: 100%;
}

.hero-about-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    margin-bottom: 0.6rem;
}

.hero-about-title {
    color: var(--dark);
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.6rem;
}

.hero-about-desc {
    color: #666;
    font-size: 0.78rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.hero-about-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.2rem;
    padding: 0.8rem 0;
    border-top: 1px solid rgba(0,0,0,0.06);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.hero-about-stat {
    flex: 1;
    text-align: center;
}

.hero-about-stat-val {
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 2px;
}

.hero-about-stat-label {
    color: #999;
    font-size: 0.65rem;
    font-weight: 500;
}

.hero-about-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    transition: gap 0.3s ease;
}

.hero-card--about:hover .hero-about-link {
    gap: 10px;
}

/* Hero About - Certificates Marquee */
.hero-about-certs {
    position: relative;
    overflow: hidden;
    margin-bottom: 1.2rem;
    padding: 0.75rem 0;
    border-top: 1px solid rgba(0,0,0,0.06);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 12%, #000 88%, transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0, #000 12%, #000 88%, transparent 100%);
}

.hero-about-certs-track {
    display: inline-flex;
    flex-wrap: nowrap;
    gap: 1.1rem;
    white-space: nowrap;
    animation: heroAboutCertsScroll 24s linear infinite;
    will-change: transform;
}

.hero-card--about:hover .hero-about-certs-track {
    animation-play-state: paused;
}

.hero-about-cert {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 600;
    color: #555;
    flex-shrink: 0;
}

.hero-about-cert i {
    color: var(--primary);
    font-size: 0.85rem;
}

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

@media (prefers-reduced-motion: reduce) {
    .hero-about-certs-track {
        animation: none;
    }
}

@media (max-width: 991.98px) {
    .hero-slider, .hero-slide { height: 280px; }
    .hero-content h1 { font-size: 1.5rem; }
}

@media (max-width: 767.98px) {
    .hero-section { padding: 0.5rem 0; }
    .hero-slider, .hero-slide { height: 200px; }
    .hero-content { padding: 1.2rem; }
    .hero-content h1 { font-size: 1.3rem; }
    .hero-content p { font-size: 0.85rem; margin-bottom: 0.8rem; }
}

/* ============================================================
   Buttons
   ============================================================ */
.btn-primary {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: var(--white);
    font-weight: 600;
    padding: 0.65rem 1.75rem;
    border-radius: var(--radius);
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(176, 31, 36, 0.3);
}

.btn-outline-primary {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
    font-weight: 600;
    padding: 0.65rem 1.75rem;
    border-radius: var(--radius);
}

.btn-outline-primary:hover {
    background: var(--primary) !important;
    color: var(--white) !important;
}

.btn-outline-light {
    font-weight: 600;
    padding: 0.65rem 1.75rem;
    border-radius: var(--radius);
}

/* ============================================================
   Section Styles
   ============================================================ */
.section { padding: 5rem 0; }
.section-light { background: var(--light-bg); }
.section-dark { background: var(--dark); color: var(--white); }

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

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

.section-dark .section-header h2 { color: var(--white); }

.section-header p {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-dark .section-header p { color: rgba(255,255,255,0.7); }

.section-line {
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 1rem auto;
    border-radius: 2px;
}

/* ============================================================
   About Section (Mission/Vision/Values)
   ============================================================ */
.about-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    height: 100%;
    transition: var(--transition);
    border-top: 3px solid transparent;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--primary);
}

.about-card-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1.25rem;
}

.about-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.about-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ============================================================
   Statistics / Counters
   ============================================================ */
.stats-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 4rem 0;
    color: var(--white);
}

.stat-item { text-align: center; padding: 1.5rem; }

.stat-item .stat-number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-item .stat-label {
    font-size: 0.9rem;
    opacity: 0.85;
    font-weight: 500;
}

.stat-item .stat-icon {
    font-size: 2rem;
    opacity: 0.5;
    margin-bottom: 0.75rem;
}

/* (Category card styles moved to catcard section below) */

/* ============================================================
   Product Cards
   ============================================================ */
.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

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

.product-card-img {
    position: relative;
    padding-top: 75%;
    overflow: hidden;
    background: var(--light-bg);
}

.product-card-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-card-body {
    padding: 1.25rem;
}

.product-card-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.product-card-body h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.product-card-body p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================================
   Product Showcase (Tabbed Carousel)
   ============================================================ */
.section-showcase {
    position: relative;
    padding: 5rem 0 4rem;
    overflow: hidden;
    background: url('../img/showcase-bg.svg') center center / cover no-repeat #f7f7f7;
}

.section-showcase .section-tag {
    color: rgba(0,0,0,0.55);
    border-color: rgba(0,0,0,0.15);
}

.section-showcase .section-title {
    color: var(--dark);
}

.showcase-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(176,31,36,0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* Category Trigger Button */
.showcase-cat-trigger-wrap {
    text-align: center;
    margin-bottom: 1.5rem;
}

.showcase-cat-trigger {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.1);
    color: var(--dark);
    padding: 0.5rem 1.4rem;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.showcase-cat-trigger:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.showcase-cat-trigger i {
    font-size: 0.9rem;
    opacity: 0.6;
}

/* Category Popup Overlay */
.showcase-cat-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(4px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.showcase-cat-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* Category Popup */
.showcase-cat-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 16px;
    width: 90%;
    max-width: 480px;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(.25,.1,.25,1);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.showcase-cat-popup.open {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.showcase-cat-popup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    color: #999;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.showcase-cat-popup-close {
    background: none;
    border: none;
    color: #bbb;
    font-size: 1rem;
    cursor: pointer;
    padding: 4px;
    transition: color 0.2s;
}

.showcase-cat-popup-close:hover {
    color: #333;
}

.showcase-cat-popup-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 1rem 1.5rem 1.5rem;
}

.showcase-cat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    background: #f8f9fa;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 1rem 0.5rem;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: 'Poppins', sans-serif;
}

.showcase-cat-item:hover {
    background: #f0f1f3;
    border-color: #ddd;
}

.showcase-cat-item.active {
    background: rgba(176,31,36,0.08);
    border-color: var(--primary);
}

.showcase-cat-item-count {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #eee;
    color: #888;
    font-size: 0.75rem;
    font-weight: 600;
}

.showcase-cat-item.active .showcase-cat-item-count {
    background: var(--primary);
    color: #fff;
}

.showcase-cat-item-name {
    color: #555;
    font-size: 0.72rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.3;
}

.showcase-cat-item.active .showcase-cat-item-name {
    color: var(--primary);
    font-weight: 600;
}

/* Wrap / Viewport / Track */
.showcase-wrap {
    position: relative;
    padding: 0 60px;
}

.showcase-viewport {
    overflow: hidden;
    height: 620px;
}

.showcase-track {
    display: flex;
    width: 166.666%;
    transform: translateX(-20%);
}

.showcase-track.sliding {
    transition: transform 0.6s cubic-bezier(.25,.1,.25,1);
}

/* Slides */
.showcase-slide {
    flex: 0 0 20%;
    padding: 0 12px;
    box-sizing: border-box;
    transition: transform 0.6s cubic-bezier(.25,.1,.25,1), opacity 0.6s cubic-bezier(.25,.1,.25,1);
    transform: scale(0.82);
    opacity: 0.3;
}

.showcase-slide.is-center {
    transform: scale(1);
    opacity: 1;
}

.showcase-slide.is-near {
    transform: scale(0.88);
    opacity: 0.5;
}

/* Card inside slide */
.showcase-card {
    text-align: center;
}

.showcase-card-img {
    position: relative;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.showcase-card-img img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 12px 30px rgba(0,0,0,0.18));
    transition: filter 0.6s ease;
}

.showcase-slide.is-center .showcase-card-img {
    height: 380px;
}

.showcase-slide.is-center .showcase-card-img img {
    filter: drop-shadow(0 20px 50px rgba(176,31,36,0.22));
}

.showcase-card-name {
    color: var(--dark);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.showcase-placeholder {
    width: 180px;
    height: 180px;
    background: rgba(0,0,0,0.04);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(0,0,0,0.15);
}

/* Center detail panel */
.showcase-card-detail {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(0,0,0,0.08);
    animation: detailFadeIn 0.5s ease 0.3s both;
}

@keyframes detailFadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.showcase-card-cat {
    display: inline-block;
    font-size: 0.7rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.35rem;
}

.showcase-card-title {
    color: var(--dark);
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
}

.showcase-card-desc {
    color: #666;
    font-size: 0.82rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn-showcase {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    background: var(--primary);
    padding: 0.55rem 1.75rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-showcase:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(176,31,36,0.4);
    color: #fff;
}

/* View All button */
.btn-showcase-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--dark);
    border: 1px solid rgba(0,0,0,0.15);
    background: #fff;
    padding: 0.6rem 2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.btn-showcase-all:hover {
    color: #fff;
    border-color: var(--primary);
    background: var(--primary);
    box-shadow: 0 6px 18px rgba(176,31,36,0.25);
}

/* Arrows */
.showcase-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-80%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.1);
    color: var(--dark);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.showcase-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 6px 22px rgba(176,31,36,0.35);
}

.showcase-arrow--prev { left: 0; }
.showcase-arrow--next { right: 0; }

/* Responsive */
@media (max-width: 991px) {
    .showcase-card-img { height: 240px; }
    .showcase-slide.is-center .showcase-card-img { height: 280px; }
    .showcase-viewport { height: 600px; }
}

@media (max-width: 767px) {
    .section-showcase { padding: 3.5rem 0 3rem; }
    .showcase-wrap { padding: 0 46px; }
    .showcase-track {
        width: 500%;
        transform: translateX(-40%);
    }
    .showcase-slide {
        flex: 0 0 20%;
    }
    .showcase-card-img { height: 210px; }
    .showcase-slide.is-center .showcase-card-img { height: 240px; }
    .showcase-arrow { width: 38px; height: 38px; font-size: 1rem; }
    .showcase-cat-popup-grid { grid-template-columns: 1fr; }
    .showcase-cat-item { flex-direction: row; padding: 0.75rem 1rem; }
    .showcase-cat-trigger { font-size: 0.75rem; padding: 0.45rem 1.2rem; }
    .showcase-viewport { height: 560px; }
    .showcase-card-title { font-size: 1.05rem; }
    .showcase-card-desc { font-size: 0.78rem; -webkit-line-clamp: 2; }
}

@media (max-width: 575.98px) {
    .showcase-wrap { padding: 0 40px; }
    .showcase-card-img { height: 180px; }
    .showcase-slide.is-center .showcase-card-img { height: 210px; }
    .showcase-viewport { height: 540px; }
    .btn-showcase { padding: 0.5rem 1.3rem; font-size: 0.78rem; }
}

/* ============================================================
   CTA Banner
   ============================================================ */
.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 4rem 0;
    text-align: center;
    color: var(--white);
}

.cta-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.05rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================================
   Certificate Cards
   ============================================================ */
.certificate-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    text-align: center;
    padding: 1.5rem;
    transition: var(--transition);
}

.certificate-card:hover { transform: translateY(-3px); }

.certificate-card img {
    max-height: 120px;
    margin-bottom: 1rem;
}

.certificate-card h6 {
    font-size: 0.9rem;
    font-weight: 600;
}

/* ============================================================
   FAQ Accordion
   ============================================================ */
.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 0.75rem;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark);
    transition: var(--transition);
}

.faq-question:hover { color: var(--primary); }

.faq-question .faq-icon {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
    color: var(--primary);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-inner {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

.faq-item.active .faq-answer { max-height: 500px; }

/* ============================================================
   Blog Cards
   ============================================================ */
.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

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

.blog-card-img {
    position: relative;
    padding-top: 60%;
    overflow: hidden;
    background: var(--light-bg);
}

.blog-card-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-body {
    padding: 1.5rem;
}

.blog-card-date {
    font-size: 0.8rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.blog-card-body h5 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.blog-card-body p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    margin-top: 0.75rem;
}

.blog-card-link:hover { gap: 0.65rem; }

/* ============================================================
   Page Header (Breadcrumb area for inner pages)
   ============================================================ */
.page-header {
    background: linear-gradient(135deg, var(--dark) 0%, #1a1a1a 100%);
    padding: 4rem 0 3rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
}

.page-header h1 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.breadcrumb-nav {
    font-size: 0.85rem;
}

.breadcrumb-nav a { color: rgba(255,255,255,0.7); }
.breadcrumb-nav a:hover { color: var(--primary); }
.breadcrumb-nav span { color: var(--primary); }

/* ============================================================
   Contact Page — Professional
   ============================================================ */

/* Quick info strip */
.contact-strip {
    padding: 1.25rem 0;
    background: #fff;
    border-bottom: 1px solid #eee;
    position: relative;
    z-index: 2;
}
.contact-strip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}
.contact-strip-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    background: #fafafa;
    border: 1px solid #eee;
    text-decoration: none;
    color: inherit;
    transition: all 0.25s ease;
}
.contact-strip-item:hover {
    background: #fff;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    color: inherit;
}
.contact-strip-item--static { cursor: default; }
.contact-strip-item--static:hover {
    transform: none;
    border-color: #eee;
    box-shadow: none;
    background: #fafafa;
}
.contact-strip-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 10px;
    background: rgba(176,31,36,0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}
.contact-strip-icon--wa {
    background: rgba(37,211,102,0.12);
    color: #25d366;
}
.contact-strip-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: #999;
    font-weight: 500;
    margin-bottom: 2px;
}
.contact-strip-value {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #222;
    line-height: 1.3;
}

/* Main section */
.section-contact {
    padding: 4rem 0 3rem;
    background: #f8f9fa;
}

/* Info panel */
.contact-info-panel {
    background: #fff;
    border-radius: 14px;
    padding: 2.25rem 2rem;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    border: 1px solid #eee;
}
.contact-tag {
    display: inline-block;
    background: rgba(176,31,36,0.08);
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
}
.contact-heading {
    font-size: 1.75rem;
    font-weight: 700;
    color: #222;
    margin: 0.75rem 0 0.5rem;
    line-height: 1.25;
}
.contact-subheading {
    color: #666;
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 1.75rem;
}
.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    margin-bottom: 2rem;
}
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.contact-info-icon {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    border-radius: 10px;
    background: rgba(176,31,36,0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    transition: all 0.25s ease;
}
.contact-info-item:hover .contact-info-icon {
    background: var(--primary);
    color: #fff;
}
.contact-info-body h6 {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #999;
    font-weight: 600;
    margin: 0 0 0.25rem;
}
.contact-info-body p {
    margin: 0;
    font-size: 0.95rem;
    color: #333;
    line-height: 1.45;
}
.contact-info-body p a {
    color: #333;
    text-decoration: none;
}
.contact-info-body p a:hover { color: var(--primary); }

/* Social */
.contact-social {
    border-top: 1px solid #eee;
    padding-top: 1.25rem;
}
.contact-social-label {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #888;
    font-weight: 600;
    margin-bottom: 0.75rem;
}
.contact-social-links {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.contact-social-links a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    color: #555;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.25s ease;
}
.contact-social-links a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

/* Form panel */
.contact-form-panel {
    background: #fff;
    border-radius: 14px;
    padding: 2.25rem 2rem;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    border: 1px solid #eee;
}
.contact-form-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 0.35rem;
}
.contact-form-sub {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 1.75rem;
}
.contact-form .form-floating > .form-control,
.contact-form .form-floating > textarea {
    border: 1px solid #e3e3e3;
    border-radius: 10px;
    background: #fafafa;
    transition: all 0.2s;
}
.contact-form .form-floating > .form-control:focus {
    background: #fff;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(176,31,36,0.1);
}
.contact-form .form-floating > label {
    color: #888;
}
.contact-form .contact-textarea {
    min-height: 140px;
    resize: vertical;
}
.contact-submit {
    padding: 0.85rem 2.25rem;
    font-weight: 600;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(176,31,36,0.25);
    transition: all 0.25s ease;
}
.contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(176,31,36,0.35);
}

/* Branches grid */
.contact-branches {
    margin-top: 4rem;
}
.contact-branch-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #eee;
    transition: all 0.25s ease;
    height: 100%;
}
.contact-branch-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-color: var(--primary);
}
.contact-branch-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: rgba(176,31,36,0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}
.contact-branch-card h5 {
    font-weight: 700;
    color: #222;
    margin-bottom: 0.75rem;
}
.contact-branch-addr {
    font-size: 0.88rem;
    color: #555;
    margin-bottom: 0.5rem;
    line-height: 1.45;
}
.contact-branch-line {
    font-size: 0.88rem;
    color: #555;
    margin-bottom: 0.3rem;
}
.contact-branch-line a {
    color: #555;
    text-decoration: none;
}
.contact-branch-line a:hover { color: var(--primary); }

/* Map */
.section-map {
    padding: 0;
    line-height: 0;
}
.map-wrapper {
    width: 100%;
    height: 450px;
    overflow: hidden;
    filter: grayscale(20%);
    transition: filter 0.3s;
}
.map-wrapper:hover { filter: grayscale(0%); }
.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Legacy contact-card (kept for compatibility) */
.contact-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    height: 100%;
}
.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Mobile */
@media (max-width: 768px) {
    .section-contact { padding: 2.5rem 0; }
    .contact-info-panel,
    .contact-form-panel { padding: 1.5rem 1.25rem; }
    .contact-heading { font-size: 1.4rem; }
    .contact-form-title { font-size: 1.3rem; }
    .map-wrapper { height: 320px; }
}


/* ============================================================
   Product Detail
   ============================================================ */

/* Title Bar */
.pd-title-bar {
    background: #fff;
    padding: 2rem 0 1.5rem;
}
.pd-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 0.4rem;
    line-height: 1.2;
}
.pd-title-bar .breadcrumb {
    font-size: 0.78rem;
}
.pd-title-bar .breadcrumb-item a {
    color: #999;
    text-decoration: none;
}
.pd-title-bar .breadcrumb-item a:hover {
    color: var(--primary);
}
.pd-title-bar .breadcrumb-item.active {
    color: #666;
}
.pd-title-bar .breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: #ccc;
}

/* Product list breadcrumb bar */
.pd-breadcrumb-bar {
    background: #f5f5f5;
    border-bottom: 1px solid #eee;
    padding: 0.85rem 0;
}
.pd-breadcrumb-bar .breadcrumb {
    font-size: 0.82rem;
    margin: 0;
}
.pd-breadcrumb-bar .breadcrumb-item a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
}
.pd-breadcrumb-bar .breadcrumb-item a:hover {
    color: var(--primary);
}
.pd-breadcrumb-bar .breadcrumb-item.active {
    color: var(--primary);
    font-weight: 500;
}
.pd-breadcrumb-bar .breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: #bbb;
    padding: 0 0.4rem;
}

/* Hero Section */
.pd-hero {
    background: #fff;
    padding: 3rem 0;
    overflow: hidden;
    border-bottom: 1px solid #eee;
}

/* Detail Flex Layout */
.pd-detail {
    display: flex;
    align-items: stretch;
    gap: 3rem;
}

/* Left Column - Info/Specs */
.pd-left {
    flex: 0 0 38%;
    max-width: 38%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0;
}

/* Right Column - Image Slider */
.pd-right {
    flex: 1;
    min-width: 0;
}

/* Description Text */
.pd-desc-text {
    font-size: 0.88rem;
    color: #777;
    line-height: 1.75;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #e8e8e8;
}

/* Spec Rows */
.pd-spec {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e8e8e8;
}

.pd-spec-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(176, 31, 36, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.pd-spec-icon i {
    color: var(--primary);
    font-size: 0.95rem;
}

.pd-spec-text {
    color: #2d2d2d;
    font-size: 0.88rem;
    font-weight: 500;
    line-height: 1.4;
}
.pd-spec-text > span {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #999;
    font-weight: 500;
    margin-bottom: 0.15rem;
}

/* CTA Actions */
.pd-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.5rem;
}

.pd-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 600;
    font-size: 0.8rem;
    padding: 0.55rem 1.15rem;
    border-radius: 6px;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.pd-action-primary {
    background: var(--primary);
    color: #fff;
}
.pd-action-primary:hover {
    background: #c9282d;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(176, 31, 36, 0.4);
}

.pd-action-whatsapp {
    background: #25d366;
    color: #fff;
}
.pd-action-whatsapp:hover {
    background: #1ebe57;
    color: #fff;
    transform: translateY(-1px);
}

.pd-action-compare {
    background: transparent;
    color: #555;
    border: 1px solid #ccc;
}
.pd-action-compare:hover {
    color: var(--primary);
    border-color: var(--primary);
    background: var(--primary-light);
}

/* Image Slider */
.pd-slider {
    position: relative;
    padding: 1.5rem;
}

.pd-image-main {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    position: relative;
    z-index: 1;
}

.pd-image-main img {
    max-width: 100%;
    max-height: 440px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.08));
    position: relative;
    z-index: 2;
    animation: pdImagePulse 4s ease-in-out infinite;
}

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

.pd-image-placeholder {
    font-size: 5rem;
    color: #ddd;
}

/* Watermark */
.pd-watermark {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(0,0,0,0.03);
    text-transform: uppercase;
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
    letter-spacing: 6px;
}

/* Decorative Ellipse Rings */
.pd-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.pd-ring-1 {
    width: 300px;
    height: 300px;
    border: 2.5px solid rgba(176, 31, 36, 0.1);
    animation: pdRingSpin1 25s linear infinite;
}
.pd-ring-2 {
    width: 420px;
    height: 420px;
    border: 2px dashed rgba(176, 31, 36, 0.07);
    animation: pdRingSpin2 35s linear infinite;
}
.pd-ring-3 {
    width: 540px;
    height: 540px;
    border: 2.5px solid rgba(176, 31, 36, 0.05);
    animation: pdRingSpin3 45s linear infinite;
}

@keyframes pdRingSpin1 {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to   { transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes pdRingSpin2 {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to   { transform: translate(-50%, -50%) rotate(-360deg); }
}
@keyframes pdRingSpin3 {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to   { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Thumbnails */
.pd-thumbs {
    display: flex;
    gap: 0.6rem;
    margin-top: 1rem;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.pd-thumb {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #e0e0e0;
    cursor: pointer;
    transition: var(--transition);
    background: #fff;
    flex-shrink: 0;
}
.pd-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
}
.pd-thumb:hover,
.pd-thumb.active {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(176, 31, 36, 0.15);
}

/* Scroll Down Indicator */
.pd-scroll-down {
    text-align: center;
    margin-top: 2rem;
}
.pd-scroll-down a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(176, 31, 36, 0.2);
    color: var(--primary);
    font-size: 1rem;
    animation: pdScrollBounce 2s ease-in-out infinite;
    transition: var(--transition);
}
.pd-scroll-down a:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

@keyframes pdScrollBounce {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(8px); }
}

/* Tabs section */
.pd-tabs-section {
    padding: 3.5rem 0;
    background: var(--light-bg);
}

.pd-tabs {
    border: none;
    gap: 0;
    margin-bottom: 0;
}

.pd-tabs .nav-item {
    margin-right: 0.25rem;
}

.pd-tabs .nav-link {
    border: none;
    border-bottom: 3px solid transparent;
    background: none;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.85rem 1.75rem;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition);
}
.pd-tabs .nav-link i {
    font-size: 1rem;
}
.pd-tabs .nav-link:hover {
    color: var(--primary);
    border-bottom-color: rgba(176, 31, 36, 0.3);
}
.pd-tabs .nav-link.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    background: none;
}

.pd-tab-content {
    background: var(--white);
    border-radius: 0 16px 16px 16px;
    padding: 2.5rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid #eee;
}

/* Section header (for smart rec) */
.pd-section-header {
    margin-bottom: 2rem;
    text-align: center;
}

.pd-section-header h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}
.pd-section-header h2 i {
    color: var(--primary);
    font-size: 1.2rem;
}

.pd-section-line {
    width: 60px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    margin: 0 auto;
}

/* Product content - override inline styles from CMS */
.pd-content {
    line-height: 1.8;
    color: var(--text);
    font-size: 0.9rem;
}

.pd-content * {
    font-family: 'Poppins', sans-serif !important;
    font-size: inherit !important;
    color: inherit !important;
    outline: none !important;
    letter-spacing: normal !important;
    line-height: inherit !important;
    background: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.pd-content p,
.pd-content div:not(.pd-content) {
    font-size: 0.9rem !important;
    font-weight: 400 !important;
    margin-bottom: 0.5rem !important;
    line-height: 1.8 !important;
}

.pd-content strong,
.pd-content b {
    color: inherit !important;
    font-size: inherit !important;
    font-weight: 400 !important;
    display: inline !important;
}

.pd-content h1, .pd-content h2, .pd-content h3,
.pd-content h4, .pd-content h5, .pd-content h6 {
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    color: var(--dark) !important;
    margin-top: 1.25rem !important;
    margin-bottom: 0.5rem !important;
}

.pd-content .pd-heading {
    font-size: 0.92rem !important;
    font-weight: 700 !important;
    color: var(--dark) !important;
    margin-top: 1.5rem !important;
    margin-bottom: 0.5rem !important;
    padding-bottom: 0.35rem !important;
    border-bottom: 1px solid #eee !important;
}

.pd-content .pd-list {
    padding-left: 0 !important;
    margin: 0.75rem 0 !important;
    list-style: none !important;
}

.pd-content .pd-list li {
    font-size: 0.9rem !important;
    font-weight: 400 !important;
    color: var(--text) !important;
    padding: 0.3rem 0 0.3rem 1.25rem !important;
    position: relative;
    line-height: 1.7 !important;
    border-bottom: 1px solid #f5f5f5 !important;
}

.pd-content .pd-list li:last-child {
    border-bottom: none !important;
}

.pd-content .pd-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
}

.pd-content ul, .pd-content ol {
    padding-left: 1.25rem !important;
    margin-bottom: 0.5rem !important;
}

.pd-content li {
    font-size: 0.9rem !important;
    font-weight: 400 !important;
    margin-bottom: 0.25rem !important;
    line-height: 1.8 !important;
}

.pd-content br {
    line-height: 0.5 !important;
}

.pd-content span {
    font-size: 0.9rem !important;
    font-weight: 400 !important;
}

.pd-content table,
.pd-content table.siyaTablo {
    width: 100% !important;
    border-collapse: collapse !important;
    margin-top: 1.5rem;
    border-spacing: 0 !important;
    font-size: 0.85rem !important;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--gray-light);
}

.pd-content table th,
.pd-content table td {
    padding: 0.65rem 1rem !important;
    text-align: left !important;
    border-bottom: 1px solid var(--gray-light) !important;
    font-size: 0.85rem !important;
    color: var(--text) !important;
}

.pd-content table th {
    font-weight: 600 !important;
    color: var(--dark) !important;
    background: var(--light-bg) !important;
    white-space: nowrap;
    min-width: 180px;
}

.pd-content table tr:last-child th,
.pd-content table tr:last-child td {
    border-bottom: none !important;
}

.pd-content table tr:hover td,
.pd-content table tr:hover th {
    background: rgba(176, 31, 36, 0.03) !important;
}

/* Specs table (inside tab) */
.pd-specs-table-wrap {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eee;
}

.pd-specs-table {
    width: 100%;
    border-collapse: collapse;
}

.pd-specs-table th,
.pd-specs-table td {
    padding: 0.85rem 1.25rem;
    font-size: 0.9rem;
    border-bottom: 1px solid #eee;
}

.pd-specs-table th {
    font-weight: 600;
    color: var(--dark);
    background: #f8f9fa;
    width: 40%;
}

.pd-specs-table td {
    color: var(--text);
}

.pd-specs-table tr:last-child th,
.pd-specs-table tr:last-child td {
    border-bottom: none;
}

.pd-specs-table tr:hover td,
.pd-specs-table tr:hover th {
    background: rgba(176, 31, 36, 0.03);
}

/* Smart Recommendations */
.pd-smart-rec {
    padding: 3.5rem 0;
    background: var(--light-bg);
}

.pd-smart-rec-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    text-align: center;
}

.pd-rec-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #eee;
    height: 100%;
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
}
.pd-rec-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    border-color: var(--primary);
    color: inherit;
}

.pd-rec-visual {
    position: relative;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    overflow: hidden;
}

.pd-rec-badge {
    position: absolute;
    top: 0.6rem;
    right: 0.6rem;
    padding: 0.2rem 0.55rem;
    border-radius: 6px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    z-index: 2;
}
.pd-rec-badge-high { background: #e8f5e9; color: #2e7d32; border: 1px solid #c8e6c9; }
.pd-rec-badge-mid  { background: #fff8e1; color: #f57f17; border: 1px solid #ffecb3; }
.pd-rec-badge-low  { background: #fce4ec; color: #c62828; border: 1px solid #f8bbd0; }

.pd-rec-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    padding: 1rem;
    transition: transform 0.4s ease;
}
.pd-rec-card:hover .pd-rec-img { transform: scale(1.08); }

.pd-rec-placeholder {
    font-size: 2.5rem;
    color: #ddd;
}

.pd-rec-body {
    padding: 1rem 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    border-top: 1px solid #eee;
}

.pd-rec-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}
.pd-rec-card:hover .pd-rec-title { color: var(--primary); }

.pd-rec-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    margin-bottom: 0.65rem;
}

.pd-rec-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--primary);
    background: var(--primary-light);
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
}

.pd-rec-link {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: auto;
    transition: gap 0.3s ease;
}
.pd-rec-card:hover .pd-rec-link { gap: 0.6rem; }

.pd-smart-rec-disclaimer {
    font-size: 0.72rem;
    color: var(--gray);
    text-align: center;
    margin-top: 1.5rem;
    margin-bottom: 0;
    font-style: italic;
}

/* Responsive - Product Detail */
@media (max-width: 991.98px) {
    .pd-title-bar {
        padding: 1.75rem 0 1.25rem;
    }
    .pd-title {
        font-size: 1.5rem;
    }
    .pd-hero {
        padding: 2.5rem 0;
    }
    .pd-detail {
        flex-direction: column;
        gap: 2rem;
    }
    .pd-right {
        order: 1;
    }
    .pd-left {
        order: 2;
        flex: none;
        max-width: 100%;
    }
    .pd-image-main {
        min-height: 320px;
    }
}

@media (max-width: 767.98px) {
    .pd-title-bar {
        padding: 1.5rem 0 1rem;
    }
    .pd-title {
        font-size: 1.3rem;
    }
    .pd-hero {
        padding: 2rem 0;
    }
    .pd-image-main {
        min-height: 260px;
    }
    .pd-image-main img {
        max-height: 300px;
    }
    .pd-slider {
        padding: 1rem;
    }
    .pd-watermark {
        font-size: 3rem;
    }
    .pd-ring {
        display: none;
    }
    .pd-thumbs {
        gap: 0.5rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0.25rem;
    }
    .pd-thumb {
        width: 50px;
        height: 50px;
    }
    .pd-actions {
        flex-direction: column;
    }
    .pd-action-btn {
        justify-content: center;
        width: 100%;
    }
    .pd-tab-content {
        padding: 1.5rem;
        border-radius: 0 12px 12px 12px;
    }
    .pd-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        flex-wrap: nowrap;
    }
    .pd-tabs .nav-link {
        white-space: nowrap;
        font-size: 0.82rem;
        padding: 0.65rem 1rem;
    }
    .pd-tabs-section,
    .pd-smart-rec {
        padding: 2rem 0;
    }

    /* Mobile text fixes */
    .pd-desc-text {
        font-size: 0.92rem;
        line-height: 1.7;
        color: #555;
        margin-bottom: 1rem;
        padding-bottom: 1rem;
    }
    .pd-spec {
        gap: 0.8rem;
        padding: 0.65rem 0;
    }
    .pd-spec-icon {
        width: 34px;
        height: 34px;
    }
    .pd-spec-icon i {
        font-size: 0.85rem;
    }
    .pd-spec-text {
        font-size: 0.88rem;
        line-height: 1.35;
    }
    .pd-spec-text > span {
        font-size: 0.68rem;
        letter-spacing: 0.5px;
        margin-bottom: 0.2rem;
    }

    /* Mobile: description content */
    .pd-content {
        font-size: 0.9rem;
        line-height: 1.7;
    }
    .pd-content p,
    .pd-content div:not(.pd-content) {
        font-size: 0.9rem !important;
        line-height: 1.7 !important;
        margin-bottom: 0.45rem !important;
    }
    .pd-content h1, .pd-content h2, .pd-content h3,
    .pd-content h4, .pd-content h5, .pd-content h6,
    .pd-content .pd-heading {
        font-size: 0.95rem !important;
        margin-top: 1rem !important;
    }
    .pd-content .pd-list li,
    .pd-content li {
        font-size: 0.88rem !important;
        line-height: 1.6 !important;
        padding-right: 0.25rem !important;
    }

    /* Mobile: description tables become fluid + scrollable */
    .pd-content table,
    .pd-content table.siyaTablo {
        display: block;
        width: 100% !important;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        font-size: 0.78rem !important;
    }
    .pd-content table tbody {
        display: table;
        width: 100%;
    }
    .pd-content table th,
    .pd-content table td {
        padding: 0.55rem 0.7rem !important;
        font-size: 0.78rem !important;
        min-width: auto !important;
        white-space: normal !important;
    }
    .pd-content table th {
        min-width: auto !important;
    }

    /* Mobile: spec table (in tab) */
    .pd-specs-table th,
    .pd-specs-table td {
        padding: 0.65rem 0.85rem;
        font-size: 0.82rem;
    }
    .pd-specs-table th {
        width: 45%;
    }

    /* Mobile: breadcrumb */
    .pd-title-bar .breadcrumb {
        font-size: 0.72rem;
        flex-wrap: wrap;
    }

    /* Mobile: tab content padding tighter */
    .pd-tab-content {
        padding: 1.25rem 1rem;
    }
}

/* ============================================================
   Branch Cards
   ============================================================ */
.branch-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    height: 100%;
    border-left: 3px solid var(--primary);
    transition: var(--transition);
}

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

.branch-card h5 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.branch-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.35rem;
}

.branch-card i { color: var(--primary); width: 18px; }

/* ============================================================
   Footer Banner (Newsletter + E-Catalog)
   ============================================================ */
.footer-banner {
    background: linear-gradient(180deg, #f8f8f9 0%, #f0f0f2 100%);
    padding: 4rem 0 3rem;
    border-top: 2px solid rgba(176, 31, 36, 0.08);
}

.footer-banner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.fb-card {
    position: relative;
    border-radius: 14px;
    padding: 2.5rem 2.25rem;
    overflow: hidden;
    min-height: 230px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fb-card--dark {
    background: linear-gradient(135deg, #1a1f2e 0%, #0f141f 100%);
    color: #fff;
    box-shadow: 0 12px 36px -6px rgba(15, 20, 31, 0.4);
}

.fb-card--red {
    background: linear-gradient(135deg, var(--primary) 0%, #8a1920 100%);
    color: #fff;
    box-shadow: 0 12px 36px -6px rgba(176, 31, 36, 0.35);
}

.fb-card--red::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.07'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.fb-card > * {
    position: relative;
    z-index: 1;
}

.fb-card-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.75rem;
    line-height: 1.25;
}

.fb-card--dark .fb-accent {
    color: var(--primary);
}

.fb-card-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.975rem;
    margin: 0 0 1.5rem;
    line-height: 1.55;
}

.fb-form {
    display: flex;
    align-items: stretch;
    gap: 0;
    max-width: 480px;
    background: #fff;
    border-radius: 50px;
    padding: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.fb-input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    padding: 0.7rem 1.25rem;
    font-size: 0.95rem;
    color: #333;
    font-family: inherit;
}

.fb-input::placeholder {
    color: #9aa0a6;
}

.fb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    border: none;
    border-radius: 50px;
    padding: 0.7rem 1.75rem;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.fb-btn--red {
    background: var(--primary);
    color: #fff;
}

.fb-btn--red:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-1px);
}

.fb-btn--white {
    background: #fff;
    color: var(--primary);
}

.fb-btn--white:hover {
    background: #f4f4f5;
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.fb-btn-group {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.fb-alert {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    max-width: 480px;
}

.fb-alert--success {
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.fb-alert--warning {
    background: rgba(234, 179, 8, 0.15);
    color: #facc15;
    border: 1px solid rgba(234, 179, 8, 0.3);
}

.fb-alert--error {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Expert CTA card (fb-card--dark) */
.fb-card--dark::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 85% 15%, rgba(176, 31, 36, 0.18) 0%, transparent 45%),
        radial-gradient(circle at 10% 90%, rgba(255, 255, 255, 0.04) 0%, transparent 40%);
    pointer-events: none;
}

.fb-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 0.85rem;
    border-radius: 50px;
    background: rgba(176, 31, 36, 0.18);
    border: 1px solid rgba(176, 31, 36, 0.35);
    color: #ffb3b6;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    width: fit-content;
}
.fb-badge i { font-size: 0.9rem; }

.fb-contact-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.25rem;
}

.fb-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
    backdrop-filter: blur(6px);
}

.fb-contact-item:hover {
    background: rgba(255, 255, 255, 0.11);
    border-color: rgba(255, 255, 255, 0.22);
    transform: translateY(-2px);
    color: #fff;
}

.fb-contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary) 0%, #8a1920 100%);
    color: #fff;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 6px 14px rgba(176, 31, 36, 0.35);
}

.fb-contact-item--wa .fb-contact-icon {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    box-shadow: 0 6px 14px rgba(37, 211, 102, 0.35);
}

.fb-contact-item--addr {
    cursor: default;
    flex: 1 1 100%;
    align-items: flex-start;
}
.fb-contact-item--addr:hover {
    transform: none;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
}
.fb-contact-item--addr .fb-contact-icon {
    background: linear-gradient(135deg, #4b5563 0%, #1f2937 100%);
    box-shadow: 0 6px 14px rgba(31, 41, 55, 0.45);
}
.fb-contact-item--addr .fb-contact-text strong {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.45;
    white-space: normal;
}

.fb-contact-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.fb-contact-text small {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.4px;
    font-weight: 500;
}
.fb-contact-text strong {
    font-size: 0.98rem;
    font-weight: 600;
    color: #fff;
}

@media (max-width: 575.98px) {
    .fb-contact-row { flex-direction: column; }
    .fb-contact-item { width: 100%; }
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
    background:
        radial-gradient(ellipse 800px 400px at 10% 0%, rgba(176,31,36,0.035) 0%, transparent 60%),
        radial-gradient(ellipse 600px 300px at 90% 100%, rgba(176,31,36,0.025) 0%, transparent 60%),
        linear-gradient(180deg, #fafbfc 0%, #f4f5f7 100%);
    color: #555;
    position: relative;
    border-top: 1px solid #e9ecef;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
    border-radius: 0 0 6px 6px;
}

.site-footer::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(0,0,0,0.025) 1px, transparent 0);
    background-size: 24px 24px;
    pointer-events: none;
    opacity: 0.6;
}

/* Footer Top (Newsletter CTA strip) */
.footer-top {
    padding: 2.25rem 0;
    position: relative;
    z-index: 1;
    border-bottom: 1px solid #e9ecef;
}

.footer-cta {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    border: 1px solid #e8eaed;
    border-radius: 18px;
    padding: 1.75rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    box-shadow:
        0 4px 20px rgba(0,0,0,0.04),
        inset 0 1px 0 rgba(255,255,255,0.9);
    position: relative;
    overflow: hidden;
}

.footer-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(176,31,36,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.footer-cta-text {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex: 1;
    min-width: 280px;
    position: relative;
    z-index: 1;
}

.footer-cta-icon {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary) 0%, #8a1920 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(176,31,36,0.25);
}

.footer-cta-text h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 0.25rem;
    letter-spacing: -0.2px;
}

.footer-cta-text p {
    font-size: 0.85rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
}

.footer-cta-form {
    display: flex;
    align-items: stretch;
    gap: 0.5rem;
    min-width: 320px;
    flex: 1;
    max-width: 460px;
    position: relative;
    z-index: 1;
}

.footer-cta-form input[type="email"] {
    flex: 1;
    border: 1px solid #e3e5e8;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    background: #fff;
    color: #333;
    outline: none;
    transition: all 0.25s ease;
    min-width: 0;
}

.footer-cta-form input[type="email"]:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(176,31,36,0.1);
}

.footer-cta-form button {
    background: linear-gradient(135deg, var(--primary) 0%, #8a1920 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 0.75rem 1.4rem;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 16px rgba(176,31,36,0.25);
    white-space: nowrap;
}

.footer-cta-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(176,31,36,0.35);
}

/* Trust badges */
.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 1rem;
    background: linear-gradient(145deg, #ffffff 0%, #f4f5f7 100%);
    border: 1px solid #e8eaed;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    flex: 1;
    min-width: 140px;
}

.footer-badge:hover {
    transform: translateY(-2px);
    border-color: rgba(176,31,36,0.3);
    box-shadow: 0 8px 20px rgba(176,31,36,0.08);
}

.footer-badge i {
    color: var(--primary);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.footer-badge div {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.footer-badge span {
    font-size: 0.82rem;
    font-weight: 700;
    color: #1a1a1a;
}

.footer-badge small {
    font-size: 0.7rem;
    color: #888;
    margin-top: 2px;
}

/* Social wrap (with label) */
.footer-social-wrap {
    margin-top: 1.5rem;
}

.footer-social-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 0.75rem;
}

/* Contact body wrapper */
.footer-contact-body {
    display: flex;
    flex-direction: column;
    line-height: 1.4;
    flex: 1;
    min-width: 0;
}

.footer-contact-body small {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    color: #9aa0a6;
    font-weight: 600;
    margin-bottom: 2px;
}

.footer-contact-body span,
.footer-contact-body a {
    font-size: 0.88rem;
    color: #495057;
    font-weight: 500;
    word-break: break-word;
}

.footer-contact-icon--wa {
    background: linear-gradient(145deg, #eafaf0 0%, #d4f4e1 100%) !important;
    border-color: rgba(37,211,102,0.3) !important;
}

.footer-contact-icon--wa i {
    color: #25d366 !important;
}

.footer-contact li:hover .footer-contact-icon--wa {
    background: linear-gradient(135deg, #25d366 0%, #1ba851 100%) !important;
    box-shadow: 0 10px 25px rgba(37,211,102,0.3) !important;
}

.footer-contact li:hover .footer-contact-icon--wa::after {
    display: none;
}

.footer-contact li:hover .footer-contact-icon--wa i {
    color: #fff !important;
}

.footer-main {
    padding: 3.5rem 0 3rem;
    position: relative;
    z-index: 1;
}

/* Brand column */
.footer-brand {
    margin-bottom: 1.25rem;
}

.footer-logo-img {
    height: 54px;
    width: auto;
    object-fit: contain;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #6c757d;
    margin-bottom: 1.75rem;
    max-width: 340px;
}

/* Section titles */
.footer-title {
    color: #1a1a1a;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    margin-bottom: 1.75rem;
    position: relative;
    padding-bottom: 1rem;
    display: inline-flex;
    align-items: center;
}

.footer-title::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 0 0 4px rgba(176,31,36,0.12);
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, rgba(176,31,36,0.2) 100%);
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links li a {
    color: #6c757d;
    font-size: 0.88rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    position: relative;
    padding-left: 0;
}

.footer-links li a::before {
    content: '\F285'; /* bi-chevron-right */
    font-family: 'bootstrap-icons';
    font-size: 0.7rem;
    opacity: 0;
    width: 0;
    color: var(--primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    overflow: hidden;
}

.footer-links li a:hover {
    color: var(--primary);
    transform: translateX(2px);
}

.footer-links li a:hover::before {
    opacity: 1;
    width: 14px;
    margin-right: 4px;
}

/* Contact */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.95rem;
    margin-bottom: 1.1rem;
    font-size: 0.88rem;
    color: #6c757d;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.footer-contact-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(145deg, #ffffff 0%, #f4f5f7 100%);
    border: 1px solid #e8eaed;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 1px 2px rgba(0,0,0,0.04),
        inset 0 1px 0 rgba(255,255,255,0.9);
    position: relative;
}

.footer-contact-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary) 0%, #8a1920 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-contact li:hover .footer-contact-icon {
    transform: translateY(-3px) scale(1.05);
    border-color: transparent;
    box-shadow: 0 10px 25px rgba(176,31,36,0.25);
}

.footer-contact li:hover .footer-contact-icon::after {
    opacity: 1;
}

.footer-contact li:hover .footer-contact-icon i {
    color: #fff;
}

.footer-contact-icon i {
    color: var(--primary);
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.footer-contact li a {
    color: #6c757d;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Social */
.footer-social {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(145deg, #ffffff 0%, #f4f5f7 100%);
    border: 1px solid #e8eaed;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5a6268;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 1px 2px rgba(0,0,0,0.04),
        inset 0 1px 0 rgba(255,255,255,0.9);
    position: relative;
    overflow: hidden;
    font-size: 1rem;
}

.footer-social a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary) 0%, #8a1920 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.footer-social a i {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    border-color: transparent;
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(176, 31, 36, 0.3);
}

.footer-social a:hover::before {
    opacity: 1;
}

/* Bottom bar */
.footer-bottom {
    border-top: 1px solid #e9ecef;
    padding: 1.5rem 0;
    font-size: 0.82rem;
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    position: relative;
    z-index: 1;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.footer-bottom-inner p {
    margin: 0;
    color: #868e96;
    font-weight: 500;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-bottom-links a {
    color: #868e96;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.25s ease;
}

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

.footer-bottom-sep {
    width: 3px;
    height: 3px;
    background: #c5c9cf;
    border-radius: 50%;
    display: inline-block;
}

.footer-credit {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid #e9ecef;
    color: #6c757d;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 500;
    transition: var(--transition);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}
.footer-credit:hover {
    color: var(--primary);
    border-color: rgba(176, 31, 36, 0.25);
    background: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(176, 31, 36, 0.12);
}
.footer-credit-logo {
    height: 16px;
    width: auto;
    display: block;
}

/* ============================================================
   WhatsApp Floating Button
   ============================================================ */
.whatsapp-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 900;
    transition: var(--transition);
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    color: #fff;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* ============================================================
   Blog Detail
   ============================================================ */
.blog-detail-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 2rem;
}

.blog-detail-img img {
    width: 100%;
    height: auto;
}

.blog-detail-content {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text);
}

.blog-detail-content p { margin-bottom: 1.25rem; }

.blog-detail-content h2, .blog-detail-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

/* ============================================================
   Pagination
   ============================================================ */
.pagination .page-link {
    color: var(--primary);
    border-color: var(--gray-light);
    font-weight: 500;
}

.pagination .page-item.active .page-link {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.pagination .page-link:hover {
    background: var(--primary-light);
    color: var(--primary);
}

/* ============================================================
   Section Tag & Divider (used by home page sections)
   ============================================================ */
.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0;
}

.section-dark .section-title { color: var(--white); }

.section-divider {
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* ============================================================
   Section About
   ============================================================ */
.section-about {
    background: var(--white);
    padding: 0.75rem 0 1rem;
}

.about-card-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    border-radius: 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1.25rem;
}

/* ============================================================
   Counters Section (from home.php)
   ============================================================ */
.section-counters {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 4rem 0;
    color: var(--white);
    position: relative;
}

.counter-overlay {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="white" stroke-width="0.5" opacity="0.05"/></svg>');
    pointer-events: none;
}

.counter-item { text-align: center; padding: 1.5rem; }

.counter-icon {
    font-size: 2rem;
    opacity: 0.6;
    margin-bottom: 0.75rem;
}

.counter-value {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.counter-label {
    font-size: 0.9rem;
    opacity: 0.85;
    font-weight: 500;
}

/* ============================================================
   Video Section (cinematic background with glass counters)
   ============================================================ */
.section-video {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    color: var(--white);
    isolation: isolate;
    min-height: 460px;
    display: flex;
    align-items: center;
    background:
        radial-gradient(900px 500px at 15% 10%, rgba(176, 31, 36, 0.10) 0%, transparent 55%),
        radial-gradient(900px 500px at 85% 90%, rgba(176, 31, 36, 0.08) 0%, transparent 55%),
        linear-gradient(180deg, #141416 0%, #0d0d0f 55%, #101012 100%);
}

.section-video-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.25) 0%, transparent 18%, transparent 82%, rgba(0,0,0,0.25) 100%);
    pointer-events: none;
}

/* Ince ust/alt ayrim cizgileri — kurumsal tablo hissiyati */
.section-video::before {
    content: '';
    position: absolute;
    left: 0; right: 0; top: 0;
    height: 1px;
    z-index: 3;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.08) 50%, transparent 100%);
    pointer-events: none;
}

.section-video::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 1px;
    z-index: 3;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.08) 50%, transparent 100%);
    pointer-events: none;
}

/* ============================================================
   Animal Categories — Premium Showcase
   ============================================================ */
.animal-cat-head {
    position: relative;
    margin: 0 auto 3rem;
    padding: 0 1rem;
    color: #fff;
    max-width: 720px;
    background: none;
    border: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}
.animal-cat-head::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    margin: 0 auto 1.5rem;
    background: rgba(255, 255, 255, 0.35);
    position: static;
    transform: none;
    border-radius: 0;
}

.animal-cat-title {
    font-size: 1.75rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.92);
    margin: 0 0 1.1rem;
    line-height: 1.35;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 14px rgba(0, 0, 0, 0.4);
}
.animal-cat-title-accent {
    display: inline-block;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 400;
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    -webkit-text-fill-color: currentColor;
    filter: none;
    position: relative;
}
.animal-cat-sub {
    max-width: 540px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.75;
    letter-spacing: 0.2px;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}

.animal-cat-row { --ac-delay: 0.08s; }

/* Slider (manual prev/next buttons) */
.animal-cat-slider {
    position: relative;
    width: 100%;
    padding: 2rem 0 4.5rem;
}
.animal-cat-track {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 1.75rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0.5rem 0.25rem 1.5rem;
}
@media (min-width: 992px) {
    .animal-cat-slider .animal-cat-nav { display: none; }
    .animal-cat-slider { padding-bottom: 1rem; }
}
@media (max-width: 991px) {
    .animal-cat-track {
        justify-content: flex-start;
        -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
                mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
    }
}
.animal-cat-track::-webkit-scrollbar { display: none; }
.animal-cat-track > .animal-cat-card { scroll-snap-align: start; }

.animal-cat-nav {
    position: absolute;
    bottom: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(20, 20, 20, 0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
}
.animal-cat-nav:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--primary) 0%, #8a1920 100%);
    border-color: rgba(255, 255, 255, 0.32);
    transform: scale(1.06);
}
.animal-cat-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}
.animal-cat-nav--prev { right: 60px; }
.animal-cat-nav--next { right: 4px; }

@media (max-width: 575.98px) {
    .animal-cat-nav { width: 40px; height: 40px; font-size: 1rem; }
    .animal-cat-nav--prev { right: 52px; }
    .animal-cat-nav--next { right: 4px; }
}

.animal-cat-card {
    position: relative;
    display: block;
    flex: 0 0 auto;
    width: 280px;
    text-decoration: none;
    color: inherit;
    padding: 1.5rem 1.4rem 1.75rem;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.04) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    box-shadow:
        0 8px 22px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(255, 255, 255, 0.04);
    transition: transform 0.55s cubic-bezier(.2,.8,.2,1),
                box-shadow 0.55s ease,
                border-color 0.55s ease,
                background 0.55s ease;
    text-align: center;
    overflow: hidden;
    isolation: isolate;
    animation: acFadeUp 0.7s cubic-bezier(.2,.8,.2,1) both;
    animation-delay: calc(var(--i, 0) * var(--ac-delay));
}
@keyframes acFadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Top hairline */
.animal-cat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
}

/* Bottom red glow */
.animal-cat-card::after {
    content: '';
    position: absolute;
    inset: auto -30% -55% -30%;
    height: 70%;
    background: radial-gradient(ellipse at center, rgba(176, 31, 36, 0.3) 0%, transparent 65%);
    opacity: 0;
    transition: opacity 0.55s ease;
    pointer-events: none;
    z-index: 0;
}
.animal-cat-card:hover::after { opacity: 1; }

.animal-cat-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 180, 182, 0.4);
    box-shadow:
        0 14px 30px rgba(0, 0, 0, 0.22),
        0 0 0 1px rgba(255, 255, 255, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

/* Number watermark */
.animal-cat-number {
    position: absolute;
    top: 0.9rem;
    right: 1.1rem;
    font-size: 1.95rem;
    font-weight: 800;
    font-style: italic;
    color: rgba(255, 255, 255, 0.08);
    letter-spacing: -1px;
    line-height: 1;
    transition: color 0.5s ease, transform 0.5s ease;
    z-index: 2;
    pointer-events: none;
}
.animal-cat-card:hover .animal-cat-number {
    color: rgba(255, 180, 182, 0.35);
    transform: translateY(-2px);
}

/* Stage (animal image area) */
.animal-cat-stage {
    position: relative;
    width: 100%;
    height: 200px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 1.1rem;
    z-index: 1;
}

/* Decorative ring behind the animal */
.animal-cat-ring {
    position: absolute;
    left: 50%;
    bottom: 12px;
    transform: translateX(-50%);
    width: 168px;
    height: 168px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 50%, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.04) 45%, transparent 70%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        0 20px 40px rgba(0, 0, 0, 0.35);
    transition: transform 0.6s cubic-bezier(.2,.8,.2,1), border-color 0.5s ease, background 0.5s ease;
    z-index: 0;
}
.animal-cat-card:hover .animal-cat-ring {
    transform: translateX(-50%) scale(1.06);
    border-color: rgba(255, 180, 182, 0.55);
    background:
        radial-gradient(circle at 50% 50%, rgba(255,255,255,0.22) 0%, rgba(176,31,36,0.12) 55%, transparent 75%);
}

/* Glow behind ring */
.animal-cat-glow {
    position: absolute;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    width: 150px;
    height: 18px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.65) 0%, transparent 70%);
    filter: blur(8px);
    z-index: 0;
}

/* Animal image */
.animal-cat-img {
    position: relative;
    z-index: 2;
    max-width: 84%;
    max-height: 184px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter:
        drop-shadow(0 5px 8px rgba(0, 0, 0, 0.22))
        drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
    transition: transform 0.6s cubic-bezier(.2,.8,.2,1), filter 0.5s ease;
    animation: acFloat 6s ease-in-out infinite;
    animation-delay: calc(var(--i, 0) * 0.4s);
}
@keyframes acFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-6px); }
}
.animal-cat-card:hover .animal-cat-img {
    transform: translateY(-10px) scale(1.08);
    filter:
        drop-shadow(0 8px 12px rgba(0, 0, 0, 0.28))
        drop-shadow(0 3px 6px rgba(176, 31, 36, 0.2));
}

/* Body (name + desc + link) */
.animal-cat-body {
    position: relative;
    z-index: 2;
}
.animal-cat-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.35rem;
    letter-spacing: 0.2px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}
.animal-cat-desc {
    font-size: 0.83rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.72);
    margin: 0 0 0.95rem;
    min-height: 2.5em;
}

.animal-cat-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    backdrop-filter: blur(6px);
}
.animal-cat-link i {
    font-size: 0.95rem;
    transition: transform 0.4s ease;
}
.animal-cat-card:hover .animal-cat-link {
    background: linear-gradient(135deg, var(--primary) 0%, #8a1920 100%);
    border-color: rgba(255, 255, 255, 0.32);
    box-shadow: 0 4px 12px rgba(176, 31, 36, 0.25);
}
.animal-cat-card:hover .animal-cat-link i {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 991.98px) {
    .animal-cat-title { font-size: 1.55rem; }
    .animal-cat-card { width: 260px; }
    .animal-cat-stage { height: 175px; }
    .animal-cat-ring { width: 150px; height: 150px; }
    .animal-cat-img { max-height: 162px; }
    .animal-cat-track { animation-duration: 50s; gap: 1.5rem; }
}

@media (max-width: 768px) {
    /* Hide video background on mobile: saves bandwidth/battery, looks cleaner */
    .section-video-bg { display: none !important; }
    .section-video {
        padding: 3rem 0 2.5rem;
        min-height: 0;
        background: linear-gradient(160deg, #1a1a1a 0%, #2a0c0e 55%, #0f0f0f 100%);
    }
    .animal-cat-head { margin-bottom: 1.5rem; padding: 0 0.5rem; }
    .animal-cat-head::before { margin-bottom: 1rem; }
    .animal-cat-title { font-size: 1.3rem; margin-bottom: 0.7rem; }
    .animal-cat-sub { font-size: 0.82rem; line-height: 1.6; }

    /* Touch-swipe horizontal slider on mobile */
    .animal-cat-slider { padding: 1rem 0 1.25rem; }

    /* Hide prev/next nav — use swipe gesture instead */
    .animal-cat-nav { display: none !important; }

    .animal-cat-track {
        gap: 0.85rem;
        padding: 0.25rem 1rem 1rem;
        /* Bleed a little outside the container on the right so users can see
           there's more to swipe */
        margin-right: -0.75rem;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
        scroll-snap-type: x mandatory;
        scroll-padding-left: 1rem;
        -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 3%, #000 95%, transparent 100%);
                mask-image: linear-gradient(90deg, transparent 0, #000 3%, #000 95%, transparent 100%);
    }
    .animal-cat-track > .animal-cat-card { scroll-snap-align: center; }

    /* Compact card: no heavy blur, no float animation, no bottom glow */
    .animal-cat-card {
        width: 200px;
        padding: 1rem 0.75rem 1.1rem;
        border-radius: 18px;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: linear-gradient(180deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.03) 100%);
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
        animation: none;
        transition: transform 0.25s ease, border-color 0.25s ease;
    }
    .animal-cat-card::after { display: none; }
    .animal-cat-card:hover { transform: none; }
    .animal-cat-card:active { transform: scale(0.97); }

    .animal-cat-stage {
        height: 125px;
        margin-bottom: 0.7rem;
    }
    .animal-cat-ring {
        width: 108px;
        height: 108px;
        bottom: 6px;
    }
    .animal-cat-glow {
        width: 95px;
        height: 13px;
        bottom: 18px;
    }
    .animal-cat-img {
        max-height: 118px;
        max-width: 88%;
        animation: none;
        filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.35));
    }
    .animal-cat-body { padding: 0 0.15rem; }
    .animal-cat-name {
        font-size: 0.98rem;
        margin-bottom: 0.25rem;
        letter-spacing: 0.1px;
    }
    .animal-cat-desc {
        font-size: 0.73rem;
        line-height: 1.45;
        min-height: 0;
        margin-bottom: 0.65rem;
        /* Clamp to 2 lines to keep cards same height */
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .animal-cat-link {
        padding: 0.38rem 0.8rem;
        font-size: 0.68rem;
        gap: 0.35rem;
        letter-spacing: 0.3px;
    }
    .animal-cat-link i { font-size: 0.8rem; }
}

@media (max-width: 380px) {
    .animal-cat-card { width: 180px; padding: 0.85rem 0.65rem 0.95rem; border-radius: 16px; }
    .animal-cat-stage { height: 110px; }
    .animal-cat-ring { width: 96px; height: 96px; }
    .animal-cat-img { max-height: 106px; }
    .animal-cat-name { font-size: 0.92rem; }
    .animal-cat-desc { font-size: 0.68rem; }
    .animal-cat-link { padding: 0.32rem 0.7rem; font-size: 0.63rem; }
}

@media (prefers-reduced-motion: reduce) {
    .section-video-bg {
        display: none;
    }
    .section-video {
        background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    }
}

/* ============================================================
   Global Reach Map Section
   ============================================================ */
.section-global {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    padding: 4rem 0 0;
    overflow: hidden;
    position: relative;
}

.section-global .section-tag-light {
    color: rgba(255,255,255,0.5);
    border-color: rgba(255,255,255,0.15);
}

.section-global .section-title {
    color: #fff;
}

.section-global .section-divider {
    background: var(--primary);
}

.global-map-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.global-map-container {
    position: relative;
    width: 100%;
}

.global-map-bg {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0) invert(1);
    opacity: 0.07;
}

.global-map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Route line draw-in animation */
.em-route {
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    animation: emDrawRoute 2s ease-out forwards;
    animation-delay: calc(var(--i, 0) * 0.15s);
}

@keyframes emDrawRoute {
    to { stroke-dashoffset: 0; }
}

@media (max-width: 576px) {
    .section-global { padding: 3rem 0 0; }
    .global-map-wrapper { padding: 0; }
}

/* ============================================================
   Hero Arrows (circular, bottom-right)
   ============================================================ */
.hero-nav {
    position: absolute;
    right: 1.2rem;
    bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
}

.hero-arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.35);
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(3px);
}

.hero-arrow:hover {
    background: #fff;
    color: var(--dark);
    border-color: #fff;
}

.hero-arrow:active {
    transform: scale(0.95);
}

/* ============================================================
   Category Card with overlay (home page version)
   ============================================================ */
/* Category Cards — Premium */
.catcard {
    display: block;
    text-decoration: none;
    color: var(--text);
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-light);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.catcard:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: transparent;
}

.catcard-visual {
    position: relative;
    height: 260px;
    overflow: hidden;
    background: var(--light-bg);
}

.catcard-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.catcard:hover .catcard-img {
    transform: scale(1.08);
}

.catcard-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: var(--gray-light);
}

.catcard-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.35) 100%);
    pointer-events: none;
    transition: var(--transition);
}
.catcard:hover .catcard-overlay {
    background: linear-gradient(180deg, transparent 30%, rgba(176, 31, 36, 0.25) 100%);
}

.catcard-number {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    z-index: 2;
    transition: var(--transition);
}
.catcard:hover .catcard-number {
    background: var(--primary);
    color: var(--white);
}

.catcard-body {
    padding: 1.25rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.catcard-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.35rem;
    line-height: 1.3;
}

.catcard-desc {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0.75rem;
    flex: 1;
}

.catcard-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary);
    transition: var(--transition);
}
.catcard:hover .catcard-link {
    gap: 0.65rem;
}

@media (max-width: 767.98px) {
    .catcard-visual { height: 200px; }
}

/* ============================================================
   Product Card Actions Overlay
   ============================================================ */
.product-card-actions {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.product-card-placeholder,
.blog-card-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #ccc;
    background: var(--light-bg);
}

.product-card-title a { color: var(--dark); }
.product-card-title a:hover { color: var(--primary); }

.product-card-desc {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 0;
}

/* ============================================================
   CTA Section
   ============================================================ */
.section-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 5rem 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><circle cx="100" cy="100" r="80" fill="none" stroke="white" stroke-width="0.5" opacity="0.08"/></svg>');
    pointer-events: none;
}

.cta-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.05rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================================
   Certificate Marquee (home page)
   ============================================================ */
.cert-marquee {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.cert-marquee-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: certScroll 25s linear infinite;
}

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

.cert-marquee-item {
    flex-shrink: 0;
    width: 180px;
}

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

/* Vertical marquee variant (used inside hero) */
.hero-cert-marquee-wrap {
    height: 100%;
    min-height: 100%;
    padding: 1.5rem;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.hero-cert-marquee-header {
    text-align: center;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.hero-cert-marquee-header h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0.5rem 0 0;
    color: var(--text-dark, #222);
}

.cert-marquee--vertical {
    flex: 1;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
    display: flex;
    align-items: center;
}

.cert-marquee--vertical .cert-marquee-track {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    width: max-content;
    height: auto;
    animation: certScroll 25s linear infinite;
}

.cert-marquee--vertical:hover .cert-marquee-track {
    animation-play-state: paused;
}

.cert-marquee--vertical .cert-marquee-item {
    width: 140px;
    height: 160px;
    flex-shrink: 0;
    display: flex;
}

.cert-marquee--vertical .certificate-card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 8px;
}

.cert-marquee--vertical .certificate-card-img {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.cert-marquee--vertical .certificate-card-img img {
    max-height: 90px;
    max-width: 100%;
    object-fit: contain;
}

.cert-marquee--vertical .certificate-card-title {
    font-size: 0.8rem;
    margin: 0;
    text-align: center;
}

@keyframes certScrollY {
    0%   { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

.certificate-card-img {
    margin-bottom: 1rem;
}

.certificate-card-img img {
    max-height: 120px;
    width: auto;
}

.certificate-card-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.certificate-card-desc {
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 0;
}

/* ============================================================
   Blog Card enhancements (home page)
   ============================================================ */
.blog-card-img {
    position: relative;
}

.blog-card-date {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius);
    font-size: 0.75rem;
    font-weight: 600;
}

.blog-card-title a { color: var(--dark); }
.blog-card-title a:hover { color: var(--primary); }

.blog-card-excerpt {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    margin-top: 0.75rem;
    transition: gap 0.3s ease;
}

.blog-card-link:hover { gap: 0.65rem; }

/* ============================================================
   Bootstrap Accordion override for brand colors
   ============================================================ */
.accordion-button:not(.collapsed) {
    background: var(--primary-light);
    color: var(--primary);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.15rem rgba(176, 31, 36, 0.15);
    border-color: var(--primary);
}

/* ============================================================
   Page Header & Breadcrumb
   ============================================================ */
.page-header-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
}

.page-breadcrumb {
    font-size: 0.85rem;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.page-breadcrumb .breadcrumb-item a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: color 0.2s ease;
}

.page-breadcrumb .breadcrumb-item a:hover {
    color: #fff;
}

.page-breadcrumb .breadcrumb-item.active {
    color: #fff;
    font-weight: 500;
}

.page-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.5);
    content: "/";
}

.page-breadcrumb .separator {
    margin: 0 0.5rem;
    color: rgba(255,255,255,0.5);
}

.page-breadcrumb .current {
    color: #fff;
}

/* ============================================================
   Page Content (About, static pages)
   ============================================================ */
.page-content {
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    line-height: 1.8;
    color: #444;
}

.page-content p,
.page-content li {
    text-align: justify;
    text-justify: inter-word;
}

.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6 {
    text-align: left;
}

/* ============================================================
   Responsive
   ============================================================ */
/* ============================================================
   Scroll Animations
   ============================================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ============================================================
   Responsive
   ============================================================ */
/* ============================================================
   Product Advisor Wizard
   ============================================================ */
.advisor-wizard {
    max-width: 100%;
    margin: 0 auto;
}

.advisor-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 2.5rem;
}

.advisor-step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.4;
    transition: var(--transition);
}
.advisor-step.active {
    opacity: 1;
}
.advisor-step.completed {
    opacity: 0.7;
}

.advisor-step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gray-light);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}
.advisor-step.active .advisor-step-num {
    background: var(--primary);
    color: var(--white);
}
.advisor-step.completed .advisor-step-num {
    background: var(--primary-dark);
    color: var(--white);
}

.advisor-step-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light);
}
.advisor-step.active .advisor-step-label {
    color: var(--primary);
    font-weight: 600;
}

.advisor-step-line {
    flex: 0 0 60px;
    height: 2px;
    background: var(--gray-light);
    margin: 0 0.75rem;
}

.advisor-panel {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.advisor-panel-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.advisor-panel-desc {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.advisor-grid {
    display: grid;
    gap: 1rem;
}
.advisor-grid-animal {
    grid-template-columns: repeat(4, 1fr);
}
.advisor-grid-need {
    grid-template-columns: repeat(4, 1fr);
}

.advisor-card {
    border: 2px solid var(--gray-light);
    border-radius: var(--radius);
    padding: 1.25rem 0.75rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    user-select: none;
}
.advisor-card:hover {
    border-color: var(--primary);
    background: var(--primary-light);
}
.advisor-card.selected {
    border-color: var(--primary);
    background: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(176, 31, 36, 0.15);
}

.advisor-card-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    line-height: 1;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.advisor-card-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.advisor-card-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text);
}
.advisor-card-desc {
    font-size: 0.68rem;
    font-weight: 300;
    font-style: italic;
    color: var(--text-light);
    margin-top: 0.25rem;
    line-height: 1.3;
}

.advisor-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-light);
}

.advisor-results-header {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    color: var(--text-light);
}

.advisor-result-card {
    position: relative;
    background: var(--white);
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.advisor-result-card--text .advisor-result-body {
    padding: 2.25rem 1rem 1rem;
}
.advisor-result-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(176,31,36,0.08);
}

.advisor-result-visual {
    position: relative;
    background: linear-gradient(145deg, #fafafa 0%, #f0f0f0 100%);
    padding: 1.5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #f0f0f0;
}

.advisor-result-badge {
    position: absolute;
    top: 0.6rem;
    right: 0.6rem;
    padding: 0.2rem 0.55rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}
.advisor-result-badge.match-high {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}
.advisor-result-badge.match-mid {
    background: #fff8e1;
    color: #f57f17;
    border: 1px solid #ffecb3;
}
.advisor-result-badge.match-low {
    background: #fce4ec;
    color: #c62828;
    border: 1px solid #f8bbd0;
}

.advisor-result-img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    display: block;
}

.advisor-result-img-placeholder {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 2.5rem;
}

.advisor-result-body {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.advisor-result-category {
    display: inline-block;
    font-size: 0.65rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 0.4rem;
    padding: 0.15rem 0.5rem;
    background: rgba(176,31,36,0.06);
    border-radius: 4px;
    width: fit-content;
}

.advisor-result-title {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--dark);
    line-height: 1.3;
}

.advisor-result-desc {
    font-size: 0.75rem;
    color: #888;
    flex: 1;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.advisor-result-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--white);
    background: var(--primary);
    padding: 0.45rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    margin-top: auto;
    width: 100%;
}
.advisor-result-link:hover {
    background: var(--primary-dark);
    color: var(--white);
}

@media (max-width: 991.98px) {
    .advisor-grid-need { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767.98px) {
    .advisor-grid-animal { grid-template-columns: repeat(2, 1fr); }
    .advisor-grid-need { grid-template-columns: repeat(2, 1fr); }
    .advisor-step-label { display: none; }
    .advisor-step-line { flex: 0 0 30px; }
    .advisor-panel { padding: 1.25rem; }
}

@media (max-width: 575.98px) {
    .advisor-grid-animal { grid-template-columns: repeat(2, 1fr); }
    .advisor-grid-need { grid-template-columns: 1fr; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 767.98px) {
    .section { padding: 3rem 0; }
    .section-header h2 { font-size: 1.75rem; }
    .section-title { font-size: 1.75rem; }
    .stat-item .stat-number, .counter-value { font-size: 2rem; }
    .page-header { padding: 3rem 0 2rem; }
    .page-header h1 { font-size: 1.75rem; }
    .cta-title { font-size: 1.5rem; }
    .hero-arrow { width: 36px; height: 36px; font-size: 0.85rem; }
    .hero-nav { right: 0.75rem; bottom: 0.75rem; }
    .hero-counter { right: 0.9rem; font-size: 0.72rem; }
    .hero-counter-bar { height: 42px; }
}

@media (max-width: 991.98px) {
    .logo-img { height: 46px; }
}

@media (max-width: 991.98px) {
    .footer-banner-grid { grid-template-columns: 1fr; }
    .fb-card { padding: 2rem 1.75rem; min-height: auto; }
    .fb-card-title { font-size: 1.5rem; }
}

@media (max-width: 767.98px) {
    .logo-img { height: 38px; }
    .footer-banner { padding: 2.5rem 0 2rem; }
    .fb-card-title { font-size: 1.375rem; }
    .fb-card-desc { font-size: 0.9rem; }
    .fb-form { flex-direction: column; background: transparent; box-shadow: none; padding: 0; gap: 0.5rem; }
    .fb-input { background: #fff; border-radius: 50px; box-shadow: 0 4px 15px rgba(0,0,0,0.2); }
    .fb-btn { width: 100%; }
    .fb-btn-group { flex-direction: column; }
    .footer-main { padding: 2.5rem 0 2rem; }
    .footer-top { padding: 1.5rem 0; }
    .footer-cta {
        flex-direction: column;
        align-items: stretch;
        padding: 1.5rem 1.25rem;
        gap: 1.25rem;
        text-align: center;
    }
    .footer-cta-text { flex-direction: column; text-align: center; min-width: 0; }
    .footer-cta-form { min-width: 0; max-width: 100%; flex-direction: column; }
    .footer-cta-form button { justify-content: center; }
    .footer-badges { flex-direction: column; }
    .footer-bottom-inner { flex-direction: column; gap: 0.5rem; text-align: center; }
}

@media (max-width: 575.98px) {
    .top-bar { font-size: 0.75rem; }
    .footer-logo-img { height: 40px; }
}

/* ============================================================
   Products Listing Page - Redesigned
   ============================================================ */

/* Hero */
.pl-hero {
    background: linear-gradient(135deg, var(--dark) 0%, #1a1a1a 100%);
    padding: 3.5rem 0 3rem;
    position: relative;
    overflow: hidden;
}
.pl-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(176, 31, 36, 0.08);
    pointer-events: none;
}
.pl-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
}

.pl-hero-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.pl-hero-desc {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    max-width: 600px;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Section */
.pl-section {
    padding: 2rem 0 4rem;
    background: var(--light-bg);
}

/* Filter Bar */
.pl-filter-bar {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 0.75rem 1rem;
    box-shadow: var(--shadow);
    margin-top: -1.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 10;
    border: 1px solid var(--gray-light);
}

.pl-filter-scroll {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0.15rem 0;
}
.pl-filter-scroll::-webkit-scrollbar { display: none; }

.pl-filter-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1.1rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text);
    background: var(--light-bg);
    border: 1.5px solid transparent;
    white-space: nowrap;
    transition: var(--transition);
    text-decoration: none;
}
.pl-filter-pill:hover {
    color: var(--primary);
    background: var(--primary-light);
    border-color: rgba(176, 31, 36, 0.15);
}
.pl-filter-pill.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    font-weight: 600;
}
.pl-filter-pill.active:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
}

.pl-filter-count {
    background: rgba(255,255,255,0.25);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.1rem 0.45rem;
    border-radius: 50px;
    min-width: 20px;
    text-align: center;
}
.pl-filter-pill:not(.active) .pl-filter-count {
    background: var(--gray-light);
    color: var(--text-light);
}

/* Active Animal Filter */
.pl-active-filter {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.85rem 1rem;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8ea 100%);
    border: 1px solid rgba(176, 31, 36, 0.18);
    border-radius: 12px;
}
.pl-active-filter-label {
    font-size: 0.82rem;
    color: #6c757d;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
.pl-active-filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.5rem 0.6rem 0.5rem 1rem;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, #8a1920 100%);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 6px 18px rgba(176, 31, 36, 0.3);
}
.pl-active-filter-chip i.bi-funnel-fill {
    font-size: 0.85rem;
}
.pl-active-filter-clear {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.25s ease;
}
.pl-active-filter-clear:hover {
    background: rgba(255, 255, 255, 0.35);
    color: #fff;
    transform: rotate(90deg);
}
.pl-active-filter-clear i {
    font-size: 0.7rem;
}

/* Results Bar */
.pl-results-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 0 0.25rem;
}

.pl-results-info {
    font-size: 0.85rem;
    color: var(--text-light);
}

.pl-results-count {
    font-weight: 700;
    color: var(--dark);
    font-size: 1rem;
}

.pl-results-in {
    color: var(--primary);
    font-weight: 500;
}

/* Product Card */
.pl-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    border: 1px solid var(--gray-light);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
}
.pl-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
    color: inherit;
}

/* Card Visual */
.pl-card-visual {
    position: relative;
    background: linear-gradient(145deg, #fafafa 0%, #f0f0f0 100%);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    overflow: hidden;
}

.pl-card-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary);
    background: rgba(255,255,255,0.92);
    padding: 0.25rem 0.65rem;
    border-radius: 50px;
    z-index: 3;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(176, 31, 36, 0.1);
}

.pl-card-img {
    max-width: 100%;
    max-height: 180px;
    object-fit: contain;
    transition: transform 0.5s ease;
}
.pl-card:hover .pl-card-img {
    transform: scale(1.08);
}

.pl-card-placeholder {
    font-size: 3.5rem;
    color: var(--gray-light);
}

/* Hover Overlay */
.pl-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}
.pl-card:hover .pl-card-overlay {
    opacity: 1;
}

.pl-card-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--white);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.55rem 1.25rem;
    border-radius: 50px;
    transform: translateY(10px);
    transition: transform 0.3s ease;
}
.pl-card:hover .pl-card-view-btn {
    transform: translateY(0);
}

/* Card Body */
.pl-card-body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--gray-light);
}

.pl-card-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.4rem;
    line-height: 1.35;
    transition: color 0.3s ease;
}
.pl-card:hover .pl-card-title {
    color: var(--primary);
}

.pl-card-desc {
    font-size: 0.78rem;
    color: var(--text-light);
    line-height: 1.55;
    margin-bottom: 0.75rem;
    flex: 1;
}

.pl-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    margin-top: auto;
    transition: gap 0.3s ease;
}
.pl-card:hover .pl-card-link {
    gap: 0.65rem;
}

/* Pagination */
.pl-pagination {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

/* Empty State */
.pl-empty {
    text-align: center;
    padding: 5rem 1rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-light);
}

.pl-empty-icon {
    font-size: 4rem;
    color: var(--gray-light);
    margin-bottom: 1rem;
}

.pl-empty h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
}

/* Responsive */
@media (max-width: 991.98px) {
    .pl-hero-title { font-size: 1.85rem; }
}

@media (max-width: 767.98px) {
    .pl-hero { padding: 2.5rem 0 2rem; }
    .pl-hero-title { font-size: 1.5rem; }
    .pl-filter-bar { margin-top: -1rem; padding: 0.5rem 0.75rem; }
    .pl-card-visual { min-height: 180px; padding: 1rem; }
    .pl-card-img { max-height: 140px; }
}

@media (max-width: 575.98px) {
    .pl-hero-title { font-size: 1.35rem; }
    .pl-filter-pill { font-size: 0.78rem; padding: 0.4rem 0.85rem; }
}

/* ============================================================
   Product Comparison - Compare Bar
   ============================================================ */
.cmp-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1040;
    background: var(--white);
    border-top: 3px solid var(--primary);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    transform: translateY(100%);
    transition: transform 0.35s ease;
}
.cmp-bar.visible {
    transform: translateY(0);
}

.cmp-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    gap: 1rem;
}

.cmp-bar-items {
    display: flex;
    gap: 0.5rem;
    flex: 1;
    min-width: 0;
    overflow-x: auto;
}

.cmp-bar-item {
    position: relative;
    flex-shrink: 0;
}

.cmp-bar-thumb {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--light-bg);
    border: 2px solid var(--gray-light);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.cmp-bar-thumb-placeholder {
    font-size: 1.2rem;
    color: var(--gray);
}

.cmp-bar-item-remove {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    border: none;
    font-size: 0.55rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    line-height: 1;
    padding: 0;
}
.cmp-bar-item-remove:hover {
    background: var(--primary-dark);
}

.cmp-bar-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.cmp-bar-count {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-light);
    white-space: nowrap;
}

.cmp-bar-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.cmp-bar-compare-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 600;
    white-space: nowrap;
}
.cmp-bar-compare-btn.disabled {
    pointer-events: none;
    opacity: 0.5;
}

.cmp-bar-clear-btn {
    font-size: 0.78rem;
    white-space: nowrap;
}

@media (max-width: 767.98px) {
    .cmp-bar-inner {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    .cmp-bar-items {
        flex: 1 1 100%;
    }
    .cmp-bar-info {
        flex: 1 1 100%;
        justify-content: space-between;
    }
    .cmp-bar-thumb {
        width: 40px;
        height: 40px;
    }
}

/* ============================================================
   Product Comparison - Compare Page
   ============================================================ */
/* Compare Page */
.cmp-section {
    padding: 2.5rem 0 4rem;
    background: var(--light-bg);
}

.cmp-empty {
    text-align: center;
    padding: 5rem 1rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-light);
}

.cmp-empty-icon {
    font-size: 4rem;
    color: var(--gray-light);
    margin-bottom: 1rem;
}

.cmp-empty h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
}

.cmp-empty p {
    font-size: 0.9rem;
    color: var(--gray);
}

/* Product Cards Header Grid */
.cmp-header {
    margin-bottom: 1.5rem;
}

.cmp-header-grid {
    display: grid;
    gap: 1.25rem;
}
.cmp-header-grid.cmp-cols-2 { grid-template-columns: repeat(2, 1fr); }
.cmp-header-grid.cmp-cols-3 { grid-template-columns: repeat(3, 1fr); }
.cmp-header-grid.cmp-cols-4 { grid-template-columns: repeat(4, 1fr); }

.cmp-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-light);
    padding: 1.5rem;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition);
}
.cmp-card:hover {
    box-shadow: var(--shadow);
    border-color: rgba(176, 31, 36, 0.15);
}

.cmp-card-remove {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: var(--light-bg);
    border: 1px solid var(--gray-light);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    z-index: 2;
}
.cmp-card-remove:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.cmp-card-img-link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 180px;
    margin-bottom: 1rem;
    width: 100%;
}

.cmp-card-img {
    max-width: 100%;
    max-height: 180px;
    object-fit: contain;
    transition: transform 0.3s ease;
}
.cmp-card:hover .cmp-card-img {
    transform: scale(1.04);
}

.cmp-card-img-placeholder {
    font-size: 3.5rem;
    color: var(--gray-light);
}

.cmp-card-category {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.2rem 0.7rem;
    border-radius: 50px;
    margin-bottom: 0.5rem;
}

.cmp-card-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.4rem;
    transition: color 0.3s ease;
    line-height: 1.35;
}
.cmp-card-name:hover {
    color: var(--primary);
}

.cmp-card-desc {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.55;
    margin: 0 0 1rem;
    flex: 1;
}

.cmp-card-btn {
    border-radius: 50px;
    padding: 0.4rem 1.25rem;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Comparison Rows */
.cmp-compare {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--gray-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-light);
}

.cmp-row {
    background: var(--white);
}

.cmp-row-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.25rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.4px;
    background: var(--light-bg);
    border-bottom: 1px solid var(--gray-light);
}

.cmp-row-header i {
    font-size: 0.95rem;
    color: var(--primary);
}

.cmp-row-grid {
    display: grid;
}
.cmp-row-grid.cmp-cols-2 { grid-template-columns: repeat(2, 1fr); }
.cmp-row-grid.cmp-cols-3 { grid-template-columns: repeat(3, 1fr); }
.cmp-row-grid.cmp-cols-4 { grid-template-columns: repeat(4, 1fr); }

.cmp-cell {
    padding: 1rem 1.25rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.cmp-cell + .cmp-cell {
    border-left: 1px solid var(--gray-light);
}

.cmp-cell-text {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.65;
    margin: 0;
    text-align: left;
}

/* Tags */
.cmp-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    justify-content: center;
}

.cmp-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.3rem 0.65rem;
    border-radius: 50px;
    white-space: nowrap;
}

.cmp-tag i {
    font-size: 0.7rem;
}

.cmp-tag--yes {
    background: rgba(25, 135, 84, 0.1);
    color: #198754;
}
.cmp-tag--yes i { color: #198754; }

.cmp-tag--no {
    background: var(--light-bg);
    color: var(--gray);
}
.cmp-tag--no i { color: var(--gray); }

.cmp-na {
    color: var(--gray);
    font-size: 0.85rem;
}

/* Compare button on product card (listing page) */
.pl-card-compare-btn {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 4;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.92);
    color: var(--text-light);
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.pl-card-compare-btn:hover {
    background: var(--primary);
    color: var(--white);
}
.pl-card-compare-btn.active {
    background: var(--primary);
    color: var(--white);
}
.pl-card-compare-btn.active i::before {
    content: "\F26E";
}

/* Compare page responsive */
@media (max-width: 991.98px) {
    .cmp-header-grid.cmp-cols-3,
    .cmp-header-grid.cmp-cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767.98px) {
    .cmp-header-grid {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        grid-auto-flow: column;
    }
    .cmp-header-grid.cmp-cols-2 { grid-template-columns: repeat(2, 80vw); }
    .cmp-header-grid.cmp-cols-3 { grid-template-columns: repeat(3, 80vw); }
    .cmp-header-grid.cmp-cols-4 { grid-template-columns: repeat(4, 80vw); }
    .cmp-card {
        scroll-snap-align: center;
    }
    .cmp-card-img-link { height: 140px; }
    .cmp-card-img { max-height: 140px; }

    .cmp-compare { overflow-x: auto; }
    .cmp-row-grid {
        min-width: 600px;
    }
    .cmp-row-grid.cmp-cols-2,
    .cmp-row-grid.cmp-cols-3,
    .cmp-row-grid.cmp-cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .cmp-row-grid.cmp-cols-3 { grid-template-columns: repeat(3, 1fr); min-width: 750px; }
    .cmp-row-grid.cmp-cols-4 { grid-template-columns: repeat(4, 1fr); min-width: 900px; }
    .cmp-cell { padding: 0.75rem; }
    .cmp-row-header { font-size: 0.75rem; padding: 0.7rem 1rem; }
}

/* ============================================================
   Chat Widget - Ürün Danışmanı
   ============================================================ */

/* Toggle Button */
.chat-widget-toggle {
    position: fixed;
    bottom: 6rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    background: var(--primary);
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 910;
    box-shadow: 0 4px 15px rgba(176, 31, 36, 0.4);
    transition: var(--transition);
}
.chat-widget-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(176, 31, 36, 0.5);
}
.chat-widget-toggle.active {
    background: var(--primary-dark);
}
.chat-widget-toggle .icon-open,
.chat-widget-toggle .icon-close { line-height: 1; }
.chat-widget-toggle .icon-close { display: none; }
.chat-widget-toggle.active .icon-open { display: none; }
.chat-widget-toggle.active .icon-close { display: block; }

.chat-widget-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 18px;
    height: 18px;
    background: #25D366;
    border-radius: 50%;
    border: 2px solid #fff;
    animation: chat-badge-pulse 2s infinite;
}

@keyframes chat-badge-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Panel */
.chat-widget-panel {
    position: fixed;
    bottom: 10.5rem;
    right: 2rem;
    width: 380px;
    max-height: 520px;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.18);
    z-index: 910;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}
.chat-widget-panel.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Header */
.chat-widget-header {
    background: var(--primary);
    color: #fff;
    padding: 0.85rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-shrink: 0;
}
.chat-widget-header-avatar {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.chat-widget-header-info { flex: 1; }
.chat-widget-header-title {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.2;
}
.chat-widget-header-status {
    font-size: 0.7rem;
    opacity: 0.85;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.chat-widget-header-status::before {
    content: '';
    width: 7px;
    height: 7px;
    background: #25D366;
    border-radius: 50%;
    display: inline-block;
}
.chat-widget-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0.8;
    padding: 0.25rem;
    line-height: 1;
}
.chat-widget-close:hover { opacity: 1; }

/* Messages Area */
.chat-widget-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    background: #f8f9fa;
    min-height: 280px;
    max-height: 340px;
}

/* Message Bubbles */
.chat-widget-msg {
    display: flex;
    gap: 0.5rem;
    max-width: 92%;
    animation: chat-msg-in 0.3s ease;
}
@keyframes chat-msg-in {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.chat-widget-msg-bot { align-self: flex-start; }
.chat-widget-msg-user { align-self: flex-end; flex-direction: row-reverse; }

.chat-widget-avatar {
    width: 28px;
    height: 28px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.75rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.chat-widget-bubble {
    padding: 0.6rem 0.85rem;
    border-radius: 0.85rem;
    font-size: 0.82rem;
    line-height: 1.5;
    word-break: break-word;
}

.chat-widget-msg-bot .chat-widget-bubble {
    background: #fff;
    color: var(--text);
    border-bottom-left-radius: 0.25rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.chat-widget-msg-bot .chat-widget-bubble small {
    color: var(--text-light);
    font-size: 0.75rem;
}

.chat-widget-msg-user .chat-widget-bubble {
    background: var(--primary);
    color: #fff;
    border-bottom-right-radius: 0.25rem;
}

/* Quick Reply Buttons */
.chat-widget-quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    padding: 0.25rem 0;
    animation: chat-msg-in 0.3s ease;
}

.chat-widget-qr-btn {
    padding: 0.4rem 0.7rem;
    border-radius: 1rem;
    border: 1.5px solid var(--primary);
    background: #fff;
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
}
.chat-widget-qr-btn:hover {
    background: var(--primary);
    color: #fff;
}
.chat-widget-qr-btn.selected {
    background: var(--primary);
    color: #fff;
}
.chat-widget-quick-replies.disabled .chat-widget-qr-btn {
    opacity: 0.4;
    pointer-events: none;
}

/* Action Buttons */
.chat-widget-actions {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    padding: 0.25rem 0;
    animation: chat-msg-in 0.3s ease;
}

.chat-widget-action-btn {
    padding: 0.5rem 0.85rem;
    border-radius: 0.5rem;
    border: 1.5px solid var(--gray-light);
    background: #fff;
    color: var(--text);
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}
.chat-widget-action-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.chat-widget-action-btn.primary {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}
.chat-widget-action-btn.primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}
.chat-widget-actions.disabled .chat-widget-action-btn {
    opacity: 0.4;
    pointer-events: none;
}

/* Product Cards (in chat) */
.chat-widget-products {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    animation: chat-msg-in 0.3s ease;
    width: 100%;
}

.chat-widget-product-card {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    background: #fff;
    border-radius: 0.65rem;
    padding: 0.5rem;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    transition: var(--transition);
}
.chat-widget-product-card:hover {
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
    transform: translateX(2px);
    color: inherit;
}

.chat-widget-product-img {
    width: 48px;
    height: 48px;
    border-radius: 0.5rem;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--light-bg);
}
.chat-widget-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.chat-widget-product-noimg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 1.25rem;
}

.chat-widget-product-info {
    flex: 1;
    min-width: 0;
}
.chat-widget-product-badge {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 0.1rem 0.4rem;
    border-radius: 0.25rem;
    margin-bottom: 0.15rem;
}
.chat-widget-product-badge.badge-high { background: #e8f5e9; color: #2e7d32; }
.chat-widget-product-badge.badge-mid { background: #fff8e1; color: #f57f17; }
.chat-widget-product-badge.badge-low { background: #fce4ec; color: #c62828; }

.chat-widget-product-name {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.chat-widget-product-cat {
    font-size: 0.65rem;
    color: var(--text-light);
}
.chat-widget-product-arrow {
    color: var(--gray);
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* Input Area */
.chat-widget-input {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 0.85rem;
    border-top: 1px solid var(--gray-light);
    background: #fff;
    flex-shrink: 0;
}
.chat-widget-input input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 0.82rem;
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: transparent;
}
.chat-widget-input input::placeholder { color: var(--gray); }

.chat-widget-send-btn {
    width: 34px;
    height: 34px;
    background: var(--primary);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}
.chat-widget-send-btn:hover { background: var(--primary-dark); }

/* Footer */
.chat-widget-footer {
    text-align: center;
    padding: 0.35rem;
    font-size: 0.6rem;
    color: var(--gray);
    border-top: 1px solid var(--gray-light);
    background: #fff;
    flex-shrink: 0;
}

/* Scrollbar */
.chat-widget-messages::-webkit-scrollbar { width: 4px; }
.chat-widget-messages::-webkit-scrollbar-track { background: transparent; }
.chat-widget-messages::-webkit-scrollbar-thumb { background: #ccc; border-radius: 2px; }

/* Mobile Responsive */
@media (max-width: 575.98px) {
    .chat-widget-panel {
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        max-height: 100vh;
        height: 100vh;
        border-radius: 0;
    }
    .chat-widget-messages {
        max-height: none;
        flex: 1;
    }
    .chat-widget-toggle {
        bottom: 5rem;
        right: 1rem;
    }
}

/* ============================================================
   Cookie Consent Banner & Modal
   ============================================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(100%);
    transition: transform 0.4s ease;
    border-top: 3px solid var(--primary);
}
.cookie-banner--visible {
    transform: translateY(0);
}
.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.cookie-banner-text {
    flex: 1;
}
.cookie-banner-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--dark);
    font-size: 0.95rem;
}
.cookie-banner-text p {
    margin: 0;
    font-size: 0.825rem;
    color: var(--text-light);
    line-height: 1.5;
}
.cookie-banner-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}
.cookie-banner-actions .btn {
    white-space: nowrap;
    font-size: 0.8rem;
    padding: 0.45rem 1rem;
}
.cookie-banner-actions .btn-link {
    color: var(--primary);
    text-decoration: underline;
    padding: 0.45rem 0.5rem;
}

/* Cookie Modal Overlay */
.cookie-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10001;
}
.cookie-modal-overlay--visible {
    display: block;
}

/* Cookie Modal */
.cookie-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10002;
    background: var(--white);
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 600px;
    max-height: 85vh;
    box-shadow: var(--shadow-lg);
    flex-direction: column;
}
.cookie-modal--visible {
    display: flex;
}
.cookie-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--gray-light);
}
.cookie-modal-header h5 {
    margin: 0;
    font-weight: 600;
    font-size: 1rem;
}
.cookie-modal-close-btn {
    background: none;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    color: var(--gray);
    padding: 0.25rem;
    line-height: 1;
    transition: var(--transition);
}
.cookie-modal-close-btn:hover {
    color: var(--dark);
}
.cookie-modal-body {
    padding: 1.25rem 1.5rem;
    overflow-y: auto;
    flex: 1;
}
.cookie-policy-text {
    font-size: 0.825rem;
    color: var(--text-light);
    line-height: 1.6;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--gray-light);
}
.cookie-policy-text p { margin-bottom: 0.5rem; }

/* Cookie Category */
.cookie-category {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--gray-light);
}
.cookie-category:last-child {
    border-bottom: none;
}
.cookie-category-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.cookie-category-info {
    flex: 1;
}
.cookie-category-info strong {
    display: block;
    font-size: 0.875rem;
    color: var(--dark);
    margin-bottom: 0.2rem;
}
.cookie-category-info p {
    margin: 0;
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.45;
}
.cookie-category-toggle {
    flex-shrink: 0;
    padding-top: 0.1rem;
}
.cookie-category-toggle .form-check-input {
    width: 2.5rem;
    height: 1.25rem;
}
.cookie-category-toggle .form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

/* Cookie Modal Footer */
.cookie-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--gray-light);
}
.cookie-modal-footer .btn {
    font-size: 0.8rem;
    padding: 0.45rem 1.25rem;
}

/* Responsive */
@media (max-width: 767.98px) {
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
        gap: 1rem;
    }
    .cookie-banner-actions {
        flex-wrap: wrap;
        justify-content: center;
    }
    .cookie-modal {
        width: 95%;
        max-height: 90vh;
    }
}
@media (max-width: 575.98px) {
    .cookie-modal {
        width: 100%;
        max-height: 100vh;
        height: 100vh;
        border-radius: 0;
        top: 0;
        left: 0;
        transform: none;
    }
}

/* ============================================================
   PRODUCT GROUPS SECTION (Bizim Sufre style)
   ============================================================ */
.section-product-groups {
    position: relative;
    padding: 5rem 0 4.5rem;
    background: #fff;
}
.product-groups-header {
    max-width: 640px;
    margin: 0 auto 3rem;
}
.product-groups-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
    position: relative;
    display: inline-block;
}
.product-groups-header h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 0.75rem auto 0;
    border-radius: 2px;
}
.product-groups-header p {
    font-size: 0.98rem;
    color: #666;
    margin: 0.5rem 0 0;
    line-height: 1.6;
}
.product-groups-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 1.75rem;
    max-width: 1100px;
    margin: 0 auto;
}
.pg-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border-radius: 14px;
    padding: 1.75rem 1.1rem 1.75rem;
    border: 1px solid rgba(0,0,0,0.07);
    box-shadow: 0 10px 28px -22px rgba(0,0,0,0.25);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.pg-card:hover {
    transform: translateY(-6px);
    border-color: rgba(176, 31, 36, 0.2);
    box-shadow: 0 22px 45px -22px rgba(176, 31, 36, 0.35);
}
.pg-card-img {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
    overflow: hidden;
}
.pg-card-img img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.5s ease;
}
.pg-card:hover .pg-card-img img {
    transform: scale(1.07);
}
.pg-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(0,0,0,0.18);
}
.pg-card-name {
    font-family: 'Poppins', sans-serif;
    font-size: 0.98rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--dark);
    margin: 0 0 0.35rem;
    text-transform: uppercase;
    line-height: 1.3;
    min-height: 2.6em;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pg-card-sub {
    font-size: 0.8rem;
    color: #888;
    margin: 0 0 1.15rem;
    line-height: 1.4;
    min-height: 1.1em;
}
.btn-pg-detail {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--dark);
    background: #f3f3f3;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 999px;
    padding: 0.5rem 1.25rem;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    margin-top: auto;
}
.pg-card:hover .btn-pg-detail {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

@media (max-width: 991px) {
    .product-groups-grid { grid-template-columns: repeat(2, 1fr); }
    .product-groups-header h2 { font-size: 1.9rem; }
}
@media (max-width: 767px) {
    .section-product-groups { padding: 3.5rem 0 3rem; }
    .product-groups-header { margin-bottom: 2rem; }
    .product-groups-header h2 { font-size: 1.6rem; }
    .product-groups-header p { font-size: 0.9rem; }
    .product-groups-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .pg-card { padding: 1.4rem 0.9rem; border-radius: 12px; }
    .pg-card-name { font-size: 0.9rem; }
    .pg-card-sub { font-size: 0.75rem; }
    .btn-pg-detail { font-size: 0.72rem; padding: 0.45rem 1.1rem; }
}
@media (max-width: 420px) {
    .product-groups-grid { grid-template-columns: 1fr; }
    .pg-card-name { min-height: auto; }
}

/* ============================================================
   BLOG CAROUSEL
   ============================================================ */
.section-blog-carousel {
    position: relative;
    padding: 5rem 0 5rem;
    background: #fafafa;
    overflow: hidden;
}
.blog-carousel-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem;
}
.blog-carousel-head-text h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 0.6rem;
    position: relative;
    display: inline-block;
    padding-left: 1rem;
}
.blog-carousel-head-text h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12%;
    bottom: 12%;
    width: 4px;
    background: var(--primary);
    border-radius: 2px;
}
.blog-carousel-head-text p {
    margin: 0;
    color: #666;
    font-size: 0.98rem;
    padding-left: 1rem;
}
.blog-carousel-nav {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}
.blog-nav-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.1);
    color: var(--dark);
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.3s;
}
.blog-nav-btn:hover:not(:disabled) {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.blog-nav-btn:active { transform: scale(0.95); }
.blog-nav-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.blog-carousel-wrap {
    position: relative;
    padding-left: calc((100vw - 1320px) / 2);
}
@media (max-width: 1400px) {
    .blog-carousel-wrap { padding-left: calc((100vw - 1140px) / 2); }
}
@media (max-width: 1199px) {
    .blog-carousel-wrap { padding-left: calc((100vw - 960px) / 2); }
}
@media (max-width: 991px) {
    .blog-carousel-wrap { padding-left: calc((100vw - 720px) / 2); }
}
@media (max-width: 767px) {
    .blog-carousel-wrap { padding-left: 1rem; padding-right: 1rem; }
}

.blog-carousel-viewport {
    overflow: hidden;
}
.blog-carousel-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: transform;
}
.blog-slide {
    flex: 0 0 424px;
    max-width: 424px;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 10px 30px -20px rgba(0,0,0,0.25);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.blog-slide:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 45px -22px rgba(176, 31, 36, 0.35);
}
.blog-slide figure {
    margin: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.blog-slide-img {
    position: relative;
    width: 100%;
    aspect-ratio: 424 / 210;
    overflow: hidden;
    background: #f0f0f0;
}
.blog-slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.blog-slide:hover .blog-slide-img img {
    transform: scale(1.06);
}
.blog-slide-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(0,0,0,0.18);
}
.blog-slide figcaption {
    padding: 1.4rem 1.4rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}
.blog-slide figcaption h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.45;
    color: var(--dark);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s;
}
.blog-slide:hover figcaption h3 {
    color: var(--primary);
}
.blog-slide-btn {
    margin-top: auto;
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    position: relative;
    padding-bottom: 0.25rem;
}
.blog-slide-btn::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 28px;
    height: 2px;
    background: var(--primary);
    transition: width 0.35s ease;
}
.blog-slide:hover .blog-slide-btn::after {
    width: 100%;
}

.blog-carousel-dots {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 2.25rem;
    padding-right: calc((100vw - 1320px) / 2);
}
@media (max-width: 1400px) { .blog-carousel-dots { padding-right: calc((100vw - 1140px) / 2); } }
@media (max-width: 1199px) { .blog-carousel-dots { padding-right: calc((100vw - 960px) / 2); } }
@media (max-width: 991px)  { .blog-carousel-dots { padding-right: calc((100vw - 720px) / 2); } }
@media (max-width: 767px)  { .blog-carousel-dots { padding-right: 1rem; } }
.blog-carousel-dots button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0,0,0,0.18);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s, width 0.3s;
}
.blog-carousel-dots button.active {
    background: var(--primary);
    width: 24px;
    border-radius: 999px;
}

@media (max-width: 991px) {
    .section-blog-carousel { padding: 4rem 0; }
    .blog-carousel-head { flex-direction: column; align-items: flex-start; gap: 1.5rem; margin-bottom: 2rem; }
    .blog-carousel-head-text h2 { font-size: 1.8rem; }
    .blog-slide { flex: 0 0 340px; max-width: 340px; }
    .blog-nav-btn { width: 44px; height: 44px; font-size: 1.05rem; }
}
@media (max-width: 575.98px) {
    .blog-slide { flex: 0 0 85%; max-width: 85%; }
    .blog-carousel-head-text h2 { font-size: 1.5rem; }
    .blog-carousel-head-text p { font-size: 0.88rem; }
    .blog-slide figcaption { padding: 1.1rem; }
    .blog-slide figcaption h3 { font-size: 0.95rem; }
}

/* ============================================================
   CORPORATE HOMEPAGE SECTIONS
   - Corporate Intro Strip
   - Stats Strip
   - Contact CTA Strip
   - Shared corp-btn utility
   ============================================================ */

/* --- Shared corporate button --- */
.corp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.85rem 1.7rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-decoration: none;
    border-radius: 4px;
    border: 1px solid transparent;
    transition: transform .3s ease, background .3s ease, color .3s ease, border-color .3s ease, box-shadow .3s ease, gap .3s ease;
    cursor: pointer;
    white-space: nowrap;
}
.corp-btn i { transition: transform .3s ease; }
.corp-btn--lg { padding: 1.05rem 2rem; font-size: 0.92rem; }
.corp-btn--primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.corp-btn--primary:hover {
    background: #8B1A1E;
    border-color: #8B1A1E;
    color: #fff;
    gap: 14px;
    box-shadow: 0 14px 30px -14px rgba(176,31,36,0.55);
}
.corp-btn--ghost {
    background: transparent;
    color: #1a1a1a;
    border-color: rgba(0,0,0,0.18);
}
.corp-btn--ghost:hover {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
}
.corp-btn--outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.35);
}
.corp-btn--outline:hover {
    background: #fff;
    color: #1a1a1a;
    border-color: #fff;
}

/* --- Section: Corporate Intro --- */
.section-corporate-intro {
    background: #fff;
    padding: 6rem 0 5rem;
    position: relative;
}
.corp-intro-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 4rem;
    align-items: center;
}
.corp-intro-text { max-width: 620px; }
.corp-intro-tag {
    display: inline-block;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: var(--primary);
    padding-left: 42px;
    position: relative;
    margin-bottom: 1.4rem;
}
.corp-intro-tag::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 32px;
    height: 2px;
    background: var(--primary);
    transform: translateY(-50%);
}
.corp-intro-title {
    font-size: clamp(1.9rem, 3.2vw, 2.75rem);
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -0.02em;
    color: #0a0a0a;
    margin: 0 0 1.5rem;
}
.corp-intro-desc {
    font-size: 1rem;
    line-height: 1.85;
    color: #555;
    margin-bottom: 2rem;
}
.corp-intro-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

/* --- Corporate visual block (right side) — image --- */
.corp-intro-visual {
    position: relative;
    max-width: 560px;
    margin-left: auto;
    padding: 1.2rem 1.2rem 0 0;
}
/* Accent square behind the image (top-right) */
.corp-intro-visual::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 62%;
    height: 62%;
    background:
        linear-gradient(135deg, rgba(176,31,36,0.08) 0%, rgba(176,31,36,0.02) 100%);
    border: 1px solid rgba(176,31,36,0.2);
    border-radius: 4px;
    z-index: 0;
    pointer-events: none;
}
/* Red side bar (bottom-left) */
.corp-intro-visual::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1.2rem;
    width: 6px;
    height: 55%;
    background: var(--primary);
    z-index: 3;
}
.corp-intro-figure {
    position: relative;
    margin: 0;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 40px 80px -40px rgba(0,0,0,0.35), 0 12px 30px -18px rgba(0,0,0,0.15);
    z-index: 2;
}
.corp-intro-figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .8s cubic-bezier(.16,1,.3,1);
}
.corp-intro-visual:hover .corp-intro-figure img {
    transform: scale(1.04);
}
/* Floating certification badge (bottom-right) */
.corp-intro-badge {
    position: absolute;
    right: -0.8rem;
    bottom: 1.8rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 1.2rem;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.06);
    border-left: 3px solid var(--primary);
    border-radius: 3px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: 0.02em;
    box-shadow: 0 22px 40px -22px rgba(0,0,0,0.25);
    z-index: 4;
    white-space: nowrap;
}
.corp-intro-badge i {
    color: var(--primary);
    font-size: 1rem;
}

/* --- Section: Stats Strip --- */
.section-stats {
    background: #0a0a0b;
    padding: 4.5rem 0;
    position: relative;
    overflow: hidden;
}
.section-stats::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(900px 400px at 50% 50%, rgba(176,31,36,0.12) 0%, transparent 60%);
    pointer-events: none;
}
.stats-strip {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.stats-item {
    padding: 1rem 1.5rem;
    text-align: left;
    border-left: 1px solid rgba(255,255,255,0.09);
    position: relative;
}
.stats-item:first-child { border-left: 0; padding-left: 0; }
.stats-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 36px;
    height: 2px;
    background: var(--primary);
}
.stats-item:first-child::before { left: 0; }
.stats-value {
    font-size: clamp(2.2rem, 3.6vw, 3.25rem);
    font-weight: 800;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.025em;
    margin-top: 1rem;
    margin-bottom: 0.6rem;
    font-variant-numeric: tabular-nums;
}
.stats-label {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
}

/* --- Section: Contact CTA Strip --- */
.section-contact-cta {
    background:
        radial-gradient(700px 400px at 85% 50%, rgba(176,31,36,0.18) 0%, transparent 60%),
        linear-gradient(135deg, #0a0a0b 0%, #141416 50%, #0a0a0b 100%);
    padding: 5.5rem 0;
    position: relative;
    overflow: hidden;
}
.section-contact-cta::before {
    content: "";
    position: absolute;
    left: 0; right: 0; top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
}
.section-contact-cta::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
}
.contact-cta-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}
.contact-cta-text { max-width: 620px; }
.contact-cta-tag {
    display: inline-block;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: #fff;
    padding-left: 42px;
    position: relative;
    margin-bottom: 1.4rem;
}
.contact-cta-tag::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 32px;
    height: 2px;
    background: var(--primary);
    transform: translateY(-50%);
}
.contact-cta-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 0 0 1.2rem;
}
.contact-cta-desc {
    font-size: 0.98rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.65);
    margin: 0;
}
.contact-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    justify-content: flex-end;
}

/* --- Header: subtle corporate refinement (all pages) --- */
.site-header {
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.site-header.scrolled,
.site-header.is-scrolled {
    box-shadow: 0 2px 18px -8px rgba(0,0,0,0.12);
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .section-corporate-intro { padding: 4.5rem 0 4rem; }
    .corp-intro-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .corp-intro-visual { max-width: 460px; margin: 0 auto; }
    .corp-intro-figure { aspect-ratio: 16 / 10; }

    .stats-strip { grid-template-columns: repeat(2, 1fr); gap: 0; }
    .stats-item { padding: 1.5rem; border-left: 1px solid rgba(255,255,255,0.09); border-top: 1px solid rgba(255,255,255,0.09); }
    .stats-item:nth-child(-n+2) { border-top: 0; }
    .stats-item:nth-child(odd) { border-left: 0; padding-left: 0; }

    .contact-cta-inner { grid-template-columns: 1fr; gap: 2rem; }
    .contact-cta-actions { justify-content: flex-start; }
}
@media (max-width: 575.98px) {
    .section-corporate-intro { padding: 3.5rem 0 3rem; }
    .corp-intro-title { font-size: 1.65rem; }
    .corp-intro-desc { font-size: 0.92rem; }
    .corp-btn { padding: 0.75rem 1.3rem; font-size: 0.82rem; }
    .corp-btn--lg { padding: 0.9rem 1.5rem; font-size: 0.86rem; }
    .corp-intro-visual { padding: 0.8rem 0.8rem 0 0; }
    .corp-intro-badge { font-size: 0.72rem; padding: 0.7rem 0.9rem; right: -0.3rem; bottom: 1rem; }

    .section-stats { padding: 3.5rem 0; }
    .stats-value { font-size: 2rem; }
    .stats-label { font-size: 0.7rem; letter-spacing: 1px; }

    .section-contact-cta { padding: 4rem 0; }
    .contact-cta-title { font-size: 1.5rem; }
    .contact-cta-desc { font-size: 0.9rem; }
}

/* ============================================================
   CORPORATE HEADER + FULL-BLEED HERO OVERRIDES
   ============================================================ */

/* --- Top Bar: thinner, more subtle --- */
.top-bar {
    background: #0a0a0b;
    padding: 0.45rem 0;
    font-size: 0.78rem;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.top-bar a { color: rgba(255,255,255,0.72); }
.top-bar a:hover { color: #fff; }

/* --- Header: clean white, sticky with scroll shrink --- */
.site-header {
    background: #fff;
    box-shadow: none;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: padding .3s ease, box-shadow .3s ease, background .3s ease;
}
.site-header.scrolled,
.site-header.is-scrolled {
    box-shadow: 0 6px 22px -12px rgba(0,0,0,0.12);
    background: rgba(255,255,255,0.96);
    backdrop-filter: saturate(140%) blur(8px);
    -webkit-backdrop-filter: saturate(140%) blur(8px);
}
.site-nav { padding: 0.9rem 0; transition: padding .3s ease; }
.site-header.scrolled .site-nav,
.site-header.is-scrolled .site-nav { padding: 0.5rem 0; }
.logo-img { height: 60px; }
.site-header.scrolled .logo-img,
.site-header.is-scrolled .logo-img { height: 44px; }

/* Nav menu: underline-on-hover, no pill background */
.nav-menu { gap: 0; }
.nav-menu > li > a,
.nav-menu > li > .nav-dropdown-toggle {
    position: relative;
    padding: 1.2rem 1.1rem;
    font-size: 0.86rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: #1a1a1a;
    background: transparent !important;
    border-radius: 0 !important;
    transition: color .25s ease;
}
.nav-menu > li > a::after,
.nav-menu > li > .nav-dropdown-toggle::after {
    content: "";
    position: absolute;
    left: 1.1rem;
    right: 1.1rem;
    bottom: 0.85rem;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .35s cubic-bezier(.16,1,.3,1);
}
.nav-menu > li > a:hover,
.nav-menu > li.nav-dropdown:hover > .nav-dropdown-toggle,
.nav-menu > li > a.active {
    color: var(--primary);
    background: transparent !important;
}
.nav-menu > li > a:hover::after,
.nav-menu > li.nav-dropdown:hover > .nav-dropdown-toggle::after,
.nav-menu > li > a.active::after {
    transform: scaleX(1);
}
/* keep chevron separator out of underline math */
.nav-dropdown-toggle .nav-dropdown-arrow {
    position: relative;
    z-index: 1;
}

/* --- Full-bleed Corporate Hero --- */
.hero-section--full {
    padding: 0 !important;
    background: #0a0a0b;
    position: relative;
}
.hero-section--full .hero-card--slider {
    border-radius: 0;
    overflow: hidden;
    background: #0a0a0b;
}
.hero-section--full .hero-slider {
    height: clamp(520px, 72vh, 780px);
}
.hero-section--full .hero-slide {
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}
.hero-section--full .hero-overlay {
    background:
        linear-gradient(100deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.5) 40%, rgba(0,0,0,0.15) 75%, rgba(0,0,0,0.35) 100%),
        linear-gradient(180deg, rgba(0,0,0,0.1) 0%, transparent 35%, transparent 70%, rgba(0,0,0,0.25) 100%);
}
.hero-section--full .hero-slide .container {
    position: relative;
    z-index: 2;
    width: 100%;
}
.hero-section--full .hero-content {
    max-width: 680px;
    padding: 0;
    color: #fff;
}
.hero-section--full .hero-content h1 {
    font-size: clamp(2.25rem, 4.8vw, 4rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.028em;
    margin-bottom: 1.1rem;
    text-shadow: 0 8px 40px rgba(0,0,0,0.5);
}
.hero-section--full .hero-content p {
    font-size: clamp(1rem, 1.15vw, 1.15rem);
    line-height: 1.7;
    opacity: 0.92;
    margin-bottom: 2rem;
    max-width: 560px;
}
.hero-section--full .hero-content .btn {
    padding: 1rem 2.2rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.4px;
    border-radius: 4px;
    background: var(--primary);
    border: 1px solid var(--primary);
    color: #fff;
    transition: transform .3s ease, background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.hero-section--full .hero-content .btn:hover {
    background: #8B1A1E;
    border-color: #8B1A1E;
    transform: translateY(-2px);
    box-shadow: 0 18px 40px -18px rgba(176,31,36,0.6);
}

/* Slider counter + arrows: corporate minimal positioning */
.hero-section--full .hero-counter {
    right: auto;
    left: 50%;
    top: auto;
    bottom: 2.5rem;
    transform: translateX(-50%);
    flex-direction: row;
    gap: 1rem;
    font-size: 0.82rem;
}
.hero-section--full .hero-counter-bar {
    width: 120px;
    height: 2px;
    background: rgba(255,255,255,0.2);
}
.hero-section--full .hero-counter-fill {
    background: var(--primary);
    height: 100%;
    display: block;
}
.hero-section--full .hero-nav {
    position: absolute;
    right: 2.5rem;
    bottom: 2.2rem;
    display: flex;
    gap: 0.6rem;
    z-index: 10;
}
.hero-section--full .hero-arrow {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background .3s ease, border-color .3s ease, transform .3s ease;
}
.hero-section--full .hero-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .hero-section--full .hero-slider { height: clamp(460px, 65vh, 620px); }
    .hero-section--full .hero-nav { right: 1.2rem; bottom: 1.5rem; }
    .hero-section--full .hero-arrow { width: 44px; height: 44px; }
    .hero-section--full .hero-counter { bottom: 1.8rem; }

    .nav-menu > li > a,
    .nav-menu > li > .nav-dropdown-toggle { padding: 1rem 0.9rem; font-size: 0.85rem; }
}
@media (max-width: 575.98px) {
    .hero-section--full .hero-slider { height: clamp(420px, 70vh, 560px); }
    .hero-section--full .hero-content h1 { font-size: 1.9rem; }
    .hero-section--full .hero-content p { font-size: 0.92rem; margin-bottom: 1.4rem; }
    .hero-section--full .hero-content .btn { padding: 0.8rem 1.6rem; font-size: 0.82rem; }
    .hero-section--full .hero-counter { display: none; }
    .hero-section--full .hero-nav { right: 1rem; bottom: 1.2rem; }
    .hero-section--full .hero-arrow { width: 40px; height: 40px; }
}

/* ============================================================
   HOMEPAGE ONLY – header + split hero + quick-links
   All styles here are scoped under `body.is-home` so other pages
   keep the corporate minimal layout.
   ============================================================ */

/* --- Body on home: remove top gap if any --- */
body.is-home { background: #fff; }

/* --- Top bar stays thin + dark but optional subtle on home --- */
body.is-home .top-bar {
    background: #f4f2ee;
    color: #555;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
body.is-home .top-bar a { color: #555; }
body.is-home .top-bar a:hover { color: var(--primary); }
body.is-home .top-bar .lang-switch .lang-btn { color: #555; }
body.is-home .top-bar .lang-switch .lang-btn.active { color: var(--primary); }

/* ============================================================
   HOMEPAGE HEADER (centered logo, side menu, right CTA)
   ============================================================ */

.site-header--home {
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    box-shadow: none;
    transition: box-shadow .3s ease, background .3s ease, padding .3s ease;
}
.site-header--home.scrolled,
.site-header--home.is-scrolled {
    box-shadow: 0 10px 30px -20px rgba(0,0,0,0.18);
    background: rgba(255,255,255,0.96);
    backdrop-filter: saturate(140%) blur(10px);
    -webkit-backdrop-filter: saturate(140%) blur(10px);
}

.site-nav--home {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1.2rem;
    padding: 1rem 0;
    transition: padding .3s ease;
}
.site-header--home.scrolled .site-nav--home,
.site-header--home.is-scrolled .site-nav--home {
    padding: 0.55rem 0;
}

/* Left: Menu button (overrides base .hamburger to show on desktop + row layout) */
body.is-home .home-menu-btn,
body.is-home .home-menu-btn.hamburger {
    justify-self: start;
    display: inline-flex !important;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 0.65rem;
    width: auto;
    height: auto;
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0.55rem 0.2rem;
    color: #1a1a1a;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    transition: color .25s ease;
}
body.is-home .home-menu-btn:hover,
body.is-home .home-menu-btn.hamburger:hover {
    background: transparent;
    border-color: transparent;
    color: var(--primary);
}
/* neutralise the base .hamburger.active bar transforms since we use our own */
body.is-home .home-menu-btn.hamburger.active .home-menu-bars span:nth-child(1) { transform: none; }
body.is-home .home-menu-btn.hamburger.active .home-menu-bars span:nth-child(2) { opacity: 1; }
body.is-home .home-menu-btn.hamburger.active .home-menu-bars span:nth-child(3) { transform: none; }

/* Drawer works on desktop too for home (override base display: contents) */
body.is-home .site-header--home .mobile-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: -380px;
    right: auto;
    width: 340px;
    max-width: 88vw;
    height: 100vh;
    background: #fff;
    box-shadow: 6px 0 30px rgba(0,0,0,0.15);
    z-index: 1001;
    transition: left .35s cubic-bezier(.16,1,.3,1);
    overflow-y: auto;
}
body.is-home .site-header--home .mobile-menu.open { left: 0; }
body.is-home .site-header--home .mobile-menu-header,
body.is-home .site-header--home .mobile-menu-footer {
    display: flex;
}
body.is-home .site-header--home .mobile-menu-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
}
body.is-home .site-header--home .mobile-menu-backdrop.open {
    opacity: 1;
    visibility: visible;
}
/* Nav menu inside drawer: vertical stack on home desktop */
body.is-home .site-header--home .nav-menu {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    background: transparent;
    box-shadow: none;
    margin: 0;
}
body.is-home .site-header--home .nav-menu > li {
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
body.is-home .site-header--home .nav-menu > li > a,
body.is-home .site-header--home .nav-menu > li > .nav-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.6rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    background: transparent !important;
    border-radius: 0 !important;
}
body.is-home .site-header--home .nav-menu > li > a::after,
body.is-home .site-header--home .nav-menu > li > .nav-dropdown-toggle::after {
    display: none;
}
body.is-home .site-header--home .nav-menu > li > a:hover,
body.is-home .site-header--home .nav-menu > li > .nav-dropdown-toggle:hover {
    color: var(--primary);
    background: rgba(176,31,36,0.04) !important;
}
body.is-home .site-header--home .nav-dropdown-menu {
    position: static;
    background: #fafafa;
    box-shadow: none;
    padding: 0.5rem 0;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    min-width: 0;
}
body.is-home .site-header--home .nav-dropdown.open > .nav-dropdown-menu,
body.is-home .site-header--home .nav-dropdown:hover > .nav-dropdown-menu {
    display: block;
}
body.is-home .site-header--home .nav-dropdown-menu li a {
    padding: 0.7rem 2.2rem;
    font-size: 0.82rem;
    color: #555;
    display: block;
}
body.is-home .site-header--home .nav-dropdown-menu li a:hover {
    color: var(--primary);
    background: rgba(176,31,36,0.05);
}
.home-menu-btn:hover { color: var(--primary); }
.home-menu-btn .home-menu-bars {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    width: 26px;
}
.home-menu-btn .home-menu-bars span {
    display: block;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: transform .3s ease, width .3s ease, opacity .3s ease;
}
.home-menu-btn .home-menu-bars span:nth-child(1) { width: 100%; }
.home-menu-btn .home-menu-bars span:nth-child(2) { width: 70%; }
.home-menu-btn .home-menu-bars span:nth-child(3) { width: 85%; }
.home-menu-btn:hover .home-menu-bars span:nth-child(2) { width: 100%; }
.home-menu-btn:hover .home-menu-bars span:nth-child(3) { width: 100%; }

/* Center: Logo */
.site-logo--home {
    justify-self: center;
    display: inline-flex;
    align-items: center;
}
.site-logo--home .logo-img {
    height: 82px;
    width: auto;
    transition: height .3s ease;
}
.site-header--home.scrolled .site-logo--home .logo-img,
.site-header--home.is-scrolled .site-logo--home .logo-img {
    height: 58px;
}

/* Right: Actions */
.home-header-actions {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}
.home-icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(0,0,0,0.10);
    color: #1a1a1a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.95rem;
    transition: border-color .25s ease, background .25s ease, color .25s ease;
}
.home-icon-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(176,31,36,0.05);
}

.home-lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0 0.3rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
}
.home-lang-btn {
    color: #7a7a7a;
    text-decoration: none;
    padding: 0.25rem 0.35rem;
    border-radius: 4px;
    transition: color .2s ease;
}
.home-lang-btn:hover { color: var(--primary); }
.home-lang-btn.active {
    color: #1a1a1a;
    font-weight: 700;
}
.home-lang-switch::before {
    content: "";
    display: inline-block;
    width: 1px;
    height: 16px;
    background: rgba(0,0,0,0.12);
    margin-right: 0.3rem;
}

.home-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.8rem 1.4rem;
    background: var(--primary);
    color: #fff;
    border: 1px solid var(--primary);
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background .25s ease, border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.home-cta-btn i { font-size: 0.85rem; }
.home-cta-btn:hover {
    background: #8B1A1E;
    border-color: #8B1A1E;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 26px -14px rgba(176,31,36,0.6);
}

/* ============================================================
   HOMEPAGE HERO (light split layout)
   ============================================================ */

.hero-section--home {
    padding: 0 !important;
    background: #ffffff;
    position: relative;
    /* overflow must stay visible so the protruding quicklinks
       cards (margin-bottom: -3rem) aren't clipped. The slider
       image is clipped by .hero-home-inner instead. */
    overflow: visible;
}

.hero-home-inner {
    position: relative;
    padding: 0;
    /* Slightly shorter than full viewport so the slider feels compact
       without clipping key content. `svh` (small viewport) falls back
       to `vh` on older browsers, preventing jumps on mobile when the
       URL bar shows/hides. */
    min-height: 82vh;
    min-height: 82svh;
    height: 82vh;
    height: 82svh;
    display: block;
    overflow: hidden;
}

.hero-home-inner .hero-slider {
    position: absolute;
    inset: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

/* Each slide is a full-bleed cover background.
   Desktop uses --bg-desktop, mobile uses --bg-mobile (see media query below). */
.hero-section--home .hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    background-image: var(--bg-desktop, none);
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.04);
    transition: opacity 1.6s ease, transform 2s ease, visibility 1.6s ease;
    pointer-events: none;
    z-index: 1;
}
@media (max-width: 767.98px) {
    .hero-section--home .hero-slide {
        background-image: var(--bg-mobile, var(--bg-desktop, none));
    }
}
.hero-section--home .hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    pointer-events: auto;
    z-index: 2;
}

/* Video slide variant — full-bleed cover video behind content */
.hero-section--home .hero-slide--video {
    background: #ffffff;
    overflow: hidden;
}
.hero-section--home .hero-slide-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    pointer-events: none;
}
.hero-section--home .hero-slide--video .hero-slide-overlay,
.hero-section--home .hero-slide--video > .container {
    position: relative;
    z-index: 2;
}

/* Overlay removed — slide image is shown without any dark gradient. */
.hero-slide-overlay {
    display: none;
}
.hero-section--home .hero-slide > .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Text content floating over full-bleed image.
   Using a mid charcoal tone so copy stays readable on light photos
   without dropping a heavy overlay on the image. */
.hero-home-content {
    position: relative;
    z-index: 3;
    max-width: 640px;
    color: #2a2d31;
}
.hero-home-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: #3a3d42;
    text-transform: uppercase;
    margin-bottom: 1.4rem;
    text-shadow: 0 1px 4px rgba(255,255,255,0.4);
}
.hero-home-eyebrow::before {
    content: "";
    width: 40px;
    height: 2px;
    background: var(--primary);
}
.hero-section--home .hero-home-content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.1rem, 4.4vw, 3.8rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.028em;
    color: #1f2226;
    margin-bottom: 1.2rem;
    text-shadow: 0 1px 10px rgba(255,255,255,0.35);
}
.hero-section--home .hero-home-content p {
    font-size: clamp(0.98rem, 1.1vw, 1.15rem);
    line-height: 1.75;
    color: #434850;
    max-width: 560px;
    margin-bottom: 2.4rem;
    text-shadow: 0 1px 6px rgba(255,255,255,0.3);
}

/* Outlined corporate "İncele" style button — dark version for bright bg */
.hero-outline-btn {
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1rem 1.6rem 1rem 1.8rem;
    background: rgba(255,255,255,0.55);
    color: #1f2226;
    border: 1px solid rgba(31,34,38,0.45);
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: color .35s ease, border-color .35s ease, background .35s ease;
}
.hero-outline-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .4s cubic-bezier(.16,1,.3,1);
    z-index: 0;
}
.hero-outline-btn span,
.hero-outline-btn i {
    position: relative;
    z-index: 1;
    transition: color .35s ease, transform .35s ease;
}
.hero-outline-btn i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(31,34,38,0.45);
    font-size: 0.85rem;
    transition: border-color .35s ease, color .35s ease, transform .35s ease, background .35s ease;
}
.hero-outline-btn:hover {
    color: #fff;
    border-color: var(--primary);
}
.hero-outline-btn:hover::before { transform: scaleX(1); }
.hero-outline-btn:hover i {
    border-color: rgba(255,255,255,0.7);
    color: #fff;
    transform: translateX(3px);
}

/* Controls (bottom-right, inside .hero-home-inner). */
.hero-home-controls-wrap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 7rem;
    z-index: 4;
    pointer-events: none;
}
.hero-home-controls {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.4rem;
    pointer-events: none;
}
.hero-home-controls > * { pointer-events: auto; }

.hero-section--home .hero-counter {
    position: static;
    transform: none;
    display: inline-flex;
    align-items: center;
    gap: 0;
    color: #2a2d31;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    text-shadow: 0 1px 4px rgba(255,255,255,0.35);
}
/* Numbers hidden — the feed container alone communicates progress. */
.hero-section--home .hero-counter-current,
.hero-section--home .hero-counter-total {
    display: none;
}

/* ---- Feed container — product silhouette fills with feed ----
   The product PNG is used as a CSS mask so the paint box is clipped
   to the product's shape. An empty silhouette shows as a faint tint,
   and the feed fill layer reveals itself bottom-up inside the shape
   via animated clip-path. */
.hero-section--home .hero-counter-bar {
    position: relative;
    width: 82px;
    height: 96px;
    background: transparent;
    border: 0;
    border-radius: 0;
    overflow: visible;
    margin-top: 6px;
    box-shadow: none;
    padding: 0;
    filter: drop-shadow(0 6px 14px rgba(31,34,38,0.28));
}
/* Empty silhouette — always visible, shows the product outline.
   The image source is set dynamically by JS via the --feed-img
   custom property so multiple products can be cycled. */
.hero-section--home .hero-counter-bar {
    --feed-img: url('/uploads/products/product_banner_2900323474.png');
}
.hero-section--home .hero-counter-bar::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(31,34,38,0.2);
    -webkit-mask-image: var(--feed-img);
            mask-image: var(--feed-img);
    -webkit-mask-size: contain;
            mask-size: contain;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-position: center;
            mask-position: center;
    pointer-events: none;
}
.hero-section--home .hero-counter-bar::after {
    display: none;
}

/* Feed fill — warm golden gradient, masked to product silhouette,
   revealed bottom-up via clip-path animation. */
.hero-section--home .hero-counter-fill {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 30% 25%, rgba(255,235,170,0.75) 0%, rgba(255,235,170,0) 60%),
        linear-gradient(180deg, #f2c35a 0%, #d9951f 45%, #8a5310 100%);
    -webkit-mask-image: var(--feed-img);
            mask-image: var(--feed-img);
    -webkit-mask-size: contain;
            mask-size: contain;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-position: center;
            mask-position: center;
    border-radius: 0;
    box-shadow: none;
    transform: none;
    clip-path: inset(100% 0 0 0);
}
/* Final printed version of the product — fades in near the end of
   the fill so the user sees the real branded packaging once the
   container is "full". Unmasked because it already has the shape. */
.hero-section--home .hero-counter-fill::before {
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    background-image: var(--feed-img);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    pointer-events: none;
    animation: none;
}
.hero-section--home .hero-counter-fill.running {
    animation: heroHomeFill 6s linear forwards;
}
.hero-section--home .hero-counter-fill.running::before {
    animation: heroHomeReveal 6s linear forwards;
}
/* Fill phase: hold empty while the printed bucket is displayed at
   the very start, then fill bottom-up, then hold full while the
   printed bucket re-appears at the end. */
@keyframes heroHomeFill {
    0%, 15%   { clip-path: inset(100% 0 0 0); }
    82%, 100% { clip-path: inset(0 0 0 0); }
}
/* Reveal phase: printed (colored) bucket is visible at start AND end;
   hidden in the middle while the feed is pouring in. */
@keyframes heroHomeReveal {
    0%, 10%   { opacity: 1; }
    18%, 80%  { opacity: 0; }
    90%, 100% { opacity: 1; }
}

/* ---- Slider nav arrows — modern dark pill-style ---- */
.hero-section--home .hero-nav {
    position: static;
    display: inline-flex;
    align-items: center;
    gap: 0;
    padding: 6px;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(10px) saturate(1.1);
    -webkit-backdrop-filter: blur(10px) saturate(1.1);
    border: 1px solid rgba(31,34,38,0.1);
    border-radius: 999px;
    box-shadow:
        0 12px 30px -12px rgba(20,22,26,0.28),
        0 2px 6px rgba(20,22,26,0.08),
        inset 0 1px 0 rgba(255,255,255,0.7);
}
.hero-section--home .hero-arrow {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: transparent;
    border: 0;
    color: #1a1d21;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.05rem;
    position: relative;
    transition: background .3s cubic-bezier(.16,1,.3,1),
                color .3s ease,
                transform .35s cubic-bezier(.16,1,.3,1);
}
.hero-section--home .hero-arrow i {
    transition: transform .35s cubic-bezier(.16,1,.3,1);
}
.hero-section--home .hero-arrow:hover {
    background: #1a1d21;
    color: #fff;
    transform: translateY(-1px);
}
.hero-section--home .hero-arrow-prev:hover i { transform: translateX(-3px); }
.hero-section--home .hero-arrow-next:hover i { transform: translateX(3px); }
.hero-section--home .hero-arrow:active {
    transform: translateY(0) scale(0.96);
}
.hero-section--home .hero-arrow:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}
/* Thin vertical divider between the two buttons inside the pill */
.hero-section--home .hero-arrow-prev::after {
    content: "";
    position: absolute;
    right: -3px;
    top: 22%;
    bottom: 22%;
    width: 1px;
    background: rgba(31,34,38,0.12);
    pointer-events: none;
}
.hero-section--home .hero-arrow-prev:hover::after,
.hero-section--home .hero-arrow-next:hover ~ .hero-arrow-prev::after {
    background: transparent;
}

/* ============================================================
   QUICK LINK CARDS — editorial strip flush to bottom of hero
   Numbered (01-04), left-aligned content with icon, label, sub
   line and a trailing arrow. Hover reveals a red left accent.
   ============================================================ */
.hero-quicklinks {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    z-index: 6;
    transform: translateY(50%);
}
.hero-quicklinks .ql-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: #ffffff;
    box-shadow:
        0 40px 80px -36px rgba(0, 0, 0, 0.28),
        0 12px 32px -20px rgba(0, 0, 0, 0.16);
    border-radius: 2px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* ============================================================
   ANIMAL QUICKLINKS — 3-card editorial strip that replaces the
   corporate quicklinks. First card is the featured red hero.
   ============================================================ */
.hero-quicklinks--animals .animal-quicklinks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    background: #ffffff;
    box-shadow:
        0 40px 80px -36px rgba(0, 0, 0, 0.28),
        0 12px 32px -20px rgba(0, 0, 0, 0.16);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}
.animal-ql-card {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto;
    align-items: center;
    column-gap: 1.1rem;
    padding: 1.6rem 1.4rem 1.6rem 1.6rem;
    text-decoration: none;
    color: #1a1a1a;
    background: #ffffff;
    border-right: 1px solid rgba(0, 0, 0, 0.06);
    transition: background .45s ease, color .45s ease, transform .45s ease;
    overflow: hidden;
}
.animal-ql-card:last-child { border-right: 0; }

.animal-ql-card .aql-num {
    grid-column: 1;
    align-self: start;
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: rgba(0, 0, 0, 0.28);
    line-height: 1;
    padding-top: 0.25rem;
    transition: color .4s ease;
}
.animal-ql-card .aql-stage {
    grid-column: 2;
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 90px;
    justify-self: start;
    display: flex;
    align-items: center;
    justify-content: center;
}
.animal-ql-card .aql-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.12));
    transition: transform .5s ease, filter .4s ease;
}
.animal-ql-card:hover .aql-img {
    transform: scale(1.06) rotate(-2deg);
}
.animal-ql-card .aql-body {
    grid-column: 2 / 4;
    grid-row: 2;
    padding-top: 0.85rem;
    min-width: 0;
}
.animal-ql-card .aql-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #111;
    margin: 0 0 0.3rem;
    line-height: 1.2;
    transition: color .4s ease;
}
.animal-ql-card .aql-desc {
    font-size: 0.78rem;
    line-height: 1.5;
    color: rgba(18, 18, 18, 0.58);
    margin: 0;
    transition: color .4s ease;
}
.animal-ql-card .aql-cta {
    display: none;
}
.animal-ql-card .aql-arrow {
    grid-column: 3;
    grid-row: 1;
    align-self: start;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    font-size: 0.85rem;
    transition: background .4s ease, color .4s ease, border-color .4s ease, transform .4s ease;
}
.animal-ql-card:hover .aql-arrow {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateX(3px);
}
.animal-ql-card:hover .aql-name {
    color: var(--primary);
}

/* Featured card — first card, full red background with description
   and CTA block. Uses site primary red (#B01F24). */
.animal-ql-card--featured {
    background: var(--primary);
    color: #ffffff;
    padding: 1.8rem 1.8rem 1.8rem 2rem;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto 1fr;
    row-gap: 0.4rem;
}
.animal-ql-card--featured::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 55%),
        radial-gradient(circle at 10% 100%, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0) 60%);
    pointer-events: none;
}
.animal-ql-card--featured > * { position: relative; z-index: 1; }
.animal-ql-card--featured .aql-num {
    grid-column: 1;
    grid-row: 1;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.78rem;
}
.animal-ql-card--featured .aql-stage {
    display: none;
}
.animal-ql-card--featured .aql-body {
    grid-column: 1 / -1;
    grid-row: 2;
    padding-top: 0.6rem;
    max-width: 90%;
}
.animal-ql-card--featured .aql-name {
    color: #ffffff;
    font-size: 1.55rem;
    font-weight: 700;
    margin-bottom: 0.55rem;
    letter-spacing: -0.015em;
}
.animal-ql-card--featured .aql-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    max-width: 38ch;
}
.animal-ql-card--featured .aql-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ffffff;
    padding: 0.7rem 1.1rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    transition: background .4s ease, transform .4s ease, border-color .4s ease;
}
.animal-ql-card--featured .aql-cta i {
    transition: transform .4s ease;
}
.animal-ql-card--featured:hover .aql-cta {
    background: #ffffff;
    color: var(--primary);
    border-color: #ffffff;
}
.animal-ql-card--featured:hover .aql-cta i {
    transform: translateX(4px);
}
.animal-ql-card--featured .aql-arrow {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    border-color: rgba(255, 255, 255, 0.45);
    color: #ffffff;
    width: 36px;
    height: 36px;
}
.animal-ql-card--featured:hover .aql-arrow {
    background: #ffffff;
    border-color: #ffffff;
    color: var(--primary);
}
.animal-ql-card--featured:hover .aql-name {
    color: #ffffff;
}

/* Responsive — tablet (keep 3 columns, slightly tighter) */
@media (max-width: 991.98px) {
    .animal-ql-card {
        padding: 1.2rem 1rem 1.2rem 1.1rem;
        column-gap: 0.8rem;
    }
    .animal-ql-card .aql-stage { max-width: 70px; }
    .animal-ql-card .aql-name { font-size: 1rem; }
    .animal-ql-card .aql-desc { font-size: 0.72rem; }
}
/* Responsive — mobile (single column stack) */
@media (max-width: 575.98px) {
    .hero-quicklinks--animals .animal-quicklinks-grid {
        grid-template-columns: 1fr;
        border-radius: 14px;
    }
    .animal-ql-card {
        border-right: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        padding: 1rem 1rem;
        min-height: 0;
    }
    .animal-ql-card:last-child { border-bottom: 0; }
    .animal-ql-card .aql-num { font-size: 0.6rem; }
    .animal-ql-card .aql-stage { max-width: 52px; }
    .animal-ql-card .aql-name { font-size: 0.9rem; }
    .animal-ql-card .aql-desc { font-size: 0.68rem; }
    .animal-ql-card--featured {
        padding: 1.2rem 1.1rem;
    }
    .animal-ql-card--featured .aql-name { font-size: 1.1rem; }
    .animal-ql-card--featured .aql-desc { font-size: 0.72rem; }
    .animal-ql-card--featured .aql-cta {
        font-size: 0.6rem;
        padding: 0.45rem 0.8rem;
    }
}
.ql-card {
    position: relative;
    display: grid;
    grid-template-columns: auto auto 1fr auto;
    grid-template-rows: auto;
    align-items: center;
    column-gap: 1.15rem;
    padding: 1.9rem 1.6rem 1.9rem 1.9rem;
    text-decoration: none;
    color: #1a1a1a;
    border-right: 1px solid rgba(0, 0, 0, 0.06);
    background: #ffffff;
    transition: background .45s ease, color .45s ease;
    text-align: left;
    min-height: 118px;
}
.ql-card:last-child { border-right: 0; }

/* Left vertical red accent — replaces the previous top stripe */
.ql-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary);
    transform: scaleY(0);
    transform-origin: top center;
    transition: transform .45s cubic-bezier(.16, 1, .3, 1);
}

/* Editorial number — 01, 02, 03, 04 */
.ql-card .ql-num {
    grid-column: 1;
    font-family: 'Poppins', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: rgba(26, 26, 26, 0.35);
    align-self: center;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    transition: color .45s ease;
}
.ql-card .ql-num::after {
    content: "";
    display: block;
    width: 16px;
    height: 1px;
    background: currentColor;
    transition: width .45s ease, background .45s ease;
}

/* Flat icon, no circle, no tint — keeps the mark clean and editorial */
.ql-card .ql-icon {
    grid-column: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: var(--primary);
    font-size: 1.45rem;
    transition: transform .45s cubic-bezier(.2, .8, .2, 1);
}

.ql-card .ql-text {
    grid-column: 3;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
}
.ql-card .ql-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.98rem;
    font-weight: 700;
    letter-spacing: 0.005em;
    color: #1a1a1a;
    line-height: 1.15;
    transition: color .35s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ql-card .ql-sub {
    font-family: 'Poppins', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    color: rgba(26, 26, 26, 0.52);
    letter-spacing: 0.01em;
    line-height: 1.4;
    transition: color .35s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ql-card .ql-arrow {
    grid-column: 4;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: rgba(26, 26, 26, 0.55);
    transition: background .45s ease, border-color .45s ease, color .45s ease, transform .45s cubic-bezier(.16, 1, .3, 1);
    flex-shrink: 0;
}
.ql-card .ql-arrow i { transition: transform .45s cubic-bezier(.16, 1, .3, 1); }

/* Hover state — subtle lift, red accent, arrow activates */
.ql-card:hover {
    background: #fbfaf7;
}
.ql-card:hover::before { transform: scaleY(1); }
.ql-card:hover .ql-num { color: var(--primary); }
.ql-card:hover .ql-num::after {
    width: 26px;
    background: var(--primary);
}
.ql-card:hover .ql-icon {
    transform: translateY(-2px);
}
.ql-card:hover .ql-label { color: var(--primary); }
.ql-card:hover .ql-arrow {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}
.ql-card:hover .ql-arrow i { transform: translateX(2px); }

/* The quicklinks strip is absolutely positioned at the hero's bottom
   and translated 50% downward, so half of it protrudes into the next
   section. Push the next section down to clear the protruding half
   (cards are ~9.5rem tall → ~4.75rem overlap + a small buffer). */
body.is-home .section-corporate-intro,
body.is-home .section-info-box {
    padding-top: 6rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1199.98px) {
    .hero-home-grid { gap: 2.5rem; }
    .hero-home-visual { height: clamp(340px, 42vh, 460px); }
    .ql-card {
        padding: 1.5rem 1.1rem 1.5rem 1.3rem;
        column-gap: 0.9rem;
        min-height: 104px;
    }
    .ql-card .ql-icon { width: 32px; height: 32px; font-size: 1.25rem; }
    .ql-card .ql-label { font-size: 0.88rem; }
    .ql-card .ql-sub { font-size: 0.68rem; }
    .ql-card .ql-num { font-size: 0.64rem; gap: 0.45rem; }
    .ql-card .ql-num::after { width: 12px; }
    .ql-card .ql-arrow { width: 30px; height: 30px; font-size: 0.78rem; }
}

@media (max-width: 991.98px) {
    .site-nav--home { grid-template-columns: auto 1fr auto; }
    .home-lang-switch { display: none; }
    .home-cta-btn span { display: none; }
    .home-cta-btn { padding: 0.7rem 0.9rem; }
    .site-logo--home .logo-img { height: 68px; }

    .hero-home-inner {
        min-height: 68vh;
        min-height: 68svh;
        height: 68vh;
        height: 68svh;
    }
    /* Hide controls on mobile */
    .hero-home-controls-wrap {
        display: none;
    }
    .hero-section--home .hero-counter { display: none; }

    /* Push slider images below the header on mobile */
    .hero-home-inner .hero-slider {
        top: 80px;
        height: calc(100% - 80px);
    }
    .hero-section--home .hero-slide {
        align-items: flex-end;
    }
    body.is-home .hero-section--home .hero-slide > .container {
        padding-top: 1.5rem;
        padding-bottom: 4rem;
    }

    .hero-quicklinks {
        position: relative;
        transform: none;
        bottom: auto;
        margin-top: 0;
        padding: 0 1rem;
    }

    /* Soft white fade at the bottom of every slide to ground the copy. */
    .hero-section--home .hero-slide::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 58%;
        background: linear-gradient(180deg,
            rgba(255,255,255,0) 0%,
            rgba(255,255,255,0.5) 50%,
            rgba(255,255,255,0.9) 100%);
        pointer-events: none;
        z-index: 1;
    }

    .hero-home-content {
        max-width: 520px;
        margin: 0 auto;
        text-align: center;
    }

    /* Eyebrow hidden on mobile. */
    .hero-home-eyebrow { display: none; }

    .hero-section--home .hero-home-content h1 {
        font-size: clamp(1.45rem, 4.4vw, 1.95rem);
        line-height: 1.15;
        letter-spacing: -0.018em;
        margin: 0 auto 0.5rem;
        max-width: 18ch;
        font-weight: 600;
    }
    .hero-section--home .hero-home-content p {
        font-size: 0.82rem;
        line-height: 1.55;
        margin: 0 auto 1.05rem;
        max-width: 38ch;
        color: #3a3d42;
    }

    /* CTA button hidden on mobile. */
    .hero-section--home .hero-outline-btn { display: none; }

    .hero-quicklinks {
        position: relative;
        transform: none;
        bottom: auto;
        margin-top: -3rem;
        padding: 0 1rem;
    }
    .hero-quicklinks .ql-grid { grid-template-columns: repeat(2, 1fr); }
    .ql-card:nth-child(2) { border-right: 0; }
    .ql-card:nth-child(1),
    .ql-card:nth-child(2) { border-bottom: 1px solid rgba(0,0,0,0.06); }
    .ql-card:nth-child(3) { border-right: 1px solid rgba(0,0,0,0.06); }
}

@media (max-width: 575.98px) {
    .site-nav--home { padding: 0.6rem 0; }
    .site-logo--home .logo-img { height: 56px; }
    .home-icon-btn { width: 36px; height: 36px; font-size: 0.9rem; }
    .home-cta-btn { padding: 0.6rem 0.75rem; font-size: 0.75rem; }
    .home-cta-btn i { font-size: 0.8rem; }

    .hero-home-inner {
        min-height: 60vh;
        min-height: 60svh;
        height: 60vh;
        height: 60svh;
    }
    .hero-home-inner .hero-slider {
        top: 70px;
        height: calc(100% - 70px);
    }
    body.is-home .hero-section--home .hero-slide > .container {
        padding-top: 1rem;
        padding-bottom: 2rem;
    }

    /* Fade slightly taller on phones so the busy part of a portrait
       video/image doesn't fight the text. */
    .hero-section--home .hero-slide::after { height: 62%; }

    .hero-home-content { max-width: 420px; }

    .hero-section--home .hero-home-content h1 {
        font-size: clamp(1.25rem, 5.4vw, 1.6rem);
        line-height: 1.2;
        margin-bottom: 0.45rem;
        max-width: 16ch;
    }
    .hero-section--home .hero-home-content p {
        font-size: 0.76rem;
        line-height: 1.5;
        margin-bottom: 0.85rem;
        max-width: 34ch;
    }

    .hero-section--home .hero-arrow { width: 38px; height: 38px; }
    .hero-home-controls-wrap {
        display: none;
    }

    .hero-quicklinks {
        position: relative;
        transform: none;
        bottom: auto;
        margin-top: 0;
        padding: 0 0.75rem;
        z-index: 8;
    }
    .ql-card {
        padding: 1.15rem 1rem 1.15rem 1.1rem;
        column-gap: 0.7rem;
        min-height: 88px;
    }
    .ql-card .ql-icon { width: 28px; height: 28px; font-size: 1.05rem; }
    .ql-card .ql-label { font-size: 0.78rem; }
    .ql-card .ql-sub { font-size: 0.64rem; }
    .ql-card .ql-num { display: none; }
    .ql-card .ql-arrow { width: 26px; height: 26px; font-size: 0.7rem; }
}

/* ============================================================
   ANIMAL CATEGORY COLUMN — editorial list inside info-box
   Flat, editorial cards in a strict grid:
     [ num ] [ image ] [ name + desc ] [ arrow ]
   Sits next to the info-box text column, three items stacked.
   ============================================================ */
.info-box-animal-col {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-self: center;
    width: 100%;
}

.info-box-animal-col .animal-cat-card--compact {
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: auto auto 1fr auto;
    grid-template-rows: auto;
    align-items: center;
    column-gap: 1.1rem;
    padding: 1rem 1.3rem;
    text-align: left;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 2px;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    animation: none;
    isolation: auto;
    overflow: visible;
    color: #111111;
    transition:
        border-color .4s ease,
        box-shadow .4s ease,
        transform .45s cubic-bezier(.16, 1, .3, 1);
}
/* Kill the decorative pseudo-elements inherited from .animal-cat-card */
.info-box-animal-col .animal-cat-card--compact::before,
.info-box-animal-col .animal-cat-card--compact::after {
    content: none;
    display: none;
}
/* Left vertical red accent that slides in on hover */
.info-box-animal-col .animal-cat-card--compact {
    background-image: linear-gradient(to right, var(--primary) 0, var(--primary) 2px, transparent 2px, transparent 100%);
    background-repeat: no-repeat;
    background-size: 0 100%;
    transition:
        border-color .4s ease,
        box-shadow .4s ease,
        background-size .45s cubic-bezier(.16, 1, .3, 1),
        transform .45s cubic-bezier(.16, 1, .3, 1);
}
.info-box-animal-col .animal-cat-card--compact:hover {
    transform: translateX(3px);
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 18px 36px -22px rgba(0, 0, 0, 0.22);
    background-size: 2px 100%;
}

/* Editorial number */
.info-box-animal-col .animal-cat-card--compact .ac-num {
    grid-column: 1;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: rgba(18, 18, 18, 0.32);
    transition: color .4s ease;
    padding-left: 0.2rem;
}
.info-box-animal-col .animal-cat-card--compact .ac-num::after {
    content: "";
    width: 14px;
    height: 1px;
    background: currentColor;
    transition: width .4s ease, background .4s ease;
}
.info-box-animal-col .animal-cat-card--compact:hover .ac-num { color: var(--primary); }
.info-box-animal-col .animal-cat-card--compact:hover .ac-num::after { width: 22px; }

/* Flat image stage — no ring, no glow */
.info-box-animal-col .animal-cat-card--compact .animal-cat-stage {
    grid-column: 2;
    position: relative;
    width: 78px;
    height: 78px;
    min-width: 78px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
}
.info-box-animal-col .animal-cat-card--compact .animal-cat-img {
    position: relative;
    max-width: 100%;
    max-height: 82%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 5px 7px rgba(0, 0, 0, 0.16));
    animation: none;
    transition: transform .55s cubic-bezier(.16, 1, .3, 1), filter .45s ease;
}
.info-box-animal-col .animal-cat-card--compact:hover .animal-cat-img {
    transform: translateY(-3px) scale(1.04);
    filter: drop-shadow(0 8px 11px rgba(176, 31, 36, 0.22));
}

/* Body — editorial typography */
.info-box-animal-col .animal-cat-card--compact .animal-cat-body {
    grid-column: 3;
    min-width: 0;
    padding-right: 0.4rem;
}
.info-box-animal-col .animal-cat-card--compact .animal-cat-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.005em;
    color: #111111;
    text-shadow: none;
    margin: 0 0 0.22rem;
    line-height: 1.2;
    transition: color .35s ease;
}
.info-box-animal-col .animal-cat-card--compact:hover .animal-cat-name {
    color: var(--primary);
}
.info-box-animal-col .animal-cat-card--compact .animal-cat-desc {
    font-size: 0.76rem;
    line-height: 1.5;
    color: rgba(18, 18, 18, 0.58);
    margin: 0;
    min-height: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Trailing circular arrow (matches .ql-card arrow) */
.info-box-animal-col .animal-cat-card--compact .ac-arrow {
    grid-column: 4;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: rgba(26, 26, 26, 0.55);
    transition:
        background .4s ease,
        border-color .4s ease,
        color .4s ease,
        transform .45s cubic-bezier(.16, 1, .3, 1);
    flex-shrink: 0;
}
.info-box-animal-col .animal-cat-card--compact .ac-arrow i {
    transition: transform .45s cubic-bezier(.16, 1, .3, 1);
}
.info-box-animal-col .animal-cat-card--compact:hover .ac-arrow {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
}
.info-box-animal-col .animal-cat-card--compact:hover .ac-arrow i {
    transform: translateX(2px);
}

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
    .info-box-animal-col {
        gap: 0.65rem;
    }
}
@media (max-width: 575.98px) {
    .info-box-animal-col .animal-cat-card--compact {
        padding: 0.8rem 1rem;
        column-gap: 0.85rem;
        grid-template-columns: auto auto 1fr auto;
    }
    .info-box-animal-col .animal-cat-card--compact .ac-num {
        font-size: 0.58rem;
        letter-spacing: 0.14em;
    }
    .info-box-animal-col .animal-cat-card--compact .ac-num::after {
        width: 10px;
    }
    .info-box-animal-col .animal-cat-card--compact .animal-cat-stage {
        width: 62px;
        height: 62px;
        min-width: 62px;
    }
    .info-box-animal-col .animal-cat-card--compact .animal-cat-name {
        font-size: 0.92rem;
    }
    .info-box-animal-col .animal-cat-card--compact .animal-cat-desc {
        font-size: 0.7rem;
    }
    .info-box-animal-col .animal-cat-card--compact .ac-arrow {
        width: 30px;
        height: 30px;
        font-size: 0.78rem;
    }
}

/* ============================================================
   HOMEPAGE v2 — Transparent header + hamburger fix + mega menu
   ============================================================ */

/* Hide top bar on homepage (also via CSS backup) */
body.is-home .top-bar { display: none !important; }

/* ---- Transparent absolute header that floats over hero ---- */
body.is-home .site-header--home {
    background: transparent !important;
    border-bottom: 0 !important;
    box-shadow: none !important;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 50;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}
body.is-home .site-header--home .container {
    position: relative;
    z-index: 2;
}
/* Sticky/scrolled state: fixes on top with white background */
body.is-home .site-header--home.scrolled,
body.is-home .site-header--home.is-scrolled {
    position: fixed;
    background: rgba(255,255,255,0.96) !important;
    border-bottom: 1px solid rgba(0,0,0,0.05) !important;
    box-shadow: 0 10px 30px -20px rgba(0,0,0,0.18) !important;
    backdrop-filter: saturate(140%) blur(10px) !important;
    -webkit-backdrop-filter: saturate(140%) blur(10px) !important;
    animation: homeHeaderDrop .35s ease both;
}
@keyframes homeHeaderDrop {
    from { transform: translateY(-100%); opacity: 0; }
    to   { transform: translateY(0);     opacity: 1; }
}

/* Hero starts at the very top of the page; header floats over it.
   The slide text content uses its own padding-top so it doesn't
   collide with the absolute header. */
body.is-home .hero-section--home { padding-top: 0 !important; }
body.is-home .hero-home-inner { padding-top: 0 !important; }
body.is-home .hero-section--home .hero-slide > .container {
    padding-top: var(--home-header-h, 110px);
}

/* ---- HAMBURGER FIX — scope base .hamburger span to only direct span children ---- */
/* The base `.hamburger span` cascades to ALL spans, including the label and bar container.
   We null those out and redefine only the 3 bar lines. */
body.is-home .home-menu-btn.hamburger > span,
body.is-home .home-menu-btn.hamburger .home-menu-bars,
body.is-home .home-menu-btn.hamburger .home-menu-label,
body.has-mobile-menu .home-menu-btn.hamburger > span,
body.has-mobile-menu .home-menu-btn.hamburger .home-menu-bars,
body.has-mobile-menu .home-menu-btn.hamburger .home-menu-label {
    display: inline-flex;
    width: auto;
    height: auto;
    background: transparent;
    border-radius: 0;
    transform: none;
}
body.is-home .home-menu-btn.hamburger .home-menu-label,
body.has-mobile-menu .home-menu-btn.hamburger .home-menu-label {
    display: inline;
    font-family: 'Poppins', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: inherit;
}
body.is-home .home-menu-btn.hamburger .home-menu-bars,
body.has-mobile-menu .home-menu-btn.hamburger .home-menu-bars {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 28px;
    height: 18px;
}
body.is-home .home-menu-btn.hamburger .home-menu-bars > span,
body.has-mobile-menu .home-menu-btn.hamburger .home-menu-bars > span {
    display: block !important;
    width: 100% !important;
    height: 2px !important;
    background: currentColor !important;
    border-radius: 2px !important;
    transform: none !important;
    opacity: 1 !important;
    transition: transform .3s cubic-bezier(.16,1,.3,1), opacity .25s ease;
}
/* Active (open) state → morph to X */
body.is-home .home-menu-btn.hamburger.active .home-menu-bars > span:nth-child(1),
body.has-mobile-menu .home-menu-btn.hamburger.active .home-menu-bars > span:nth-child(1) {
    transform: translateY(7px) rotate(45deg) !important;
}
body.is-home .home-menu-btn.hamburger.active .home-menu-bars > span:nth-child(2),
body.has-mobile-menu .home-menu-btn.hamburger.active .home-menu-bars > span:nth-child(2) {
    opacity: 0 !important;
}
body.is-home .home-menu-btn.hamburger.active .home-menu-bars > span:nth-child(3),
body.has-mobile-menu .home-menu-btn.hamburger.active .home-menu-bars > span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg) !important;
}

/* When scrolled, ensure header text stays dark on white bg */
body.is-home .site-header--home.scrolled .home-menu-btn,
body.is-home .site-header--home.scrolled .home-cta-btn {
    color: #1a1a1a;
}

/* ============================================================
   MEGA MENU (full-width drop-down panel)
   ============================================================ */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 30px 60px -30px rgba(0,0,0,0.25);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height .45s cubic-bezier(.16,1,.3,1), opacity .3s ease, visibility .3s ease;
    z-index: 45;
}
.mega-menu.open {
    max-height: 80vh;
    opacity: 1;
    visibility: visible;
    overflow-y: auto;
}

.mega-menu-top {
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.mega-menu-items {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
}
.mega-item { display: flex; }

.mega-toggler,
.mega-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1.2rem 1.8rem;
    background: transparent;
    border: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #1a1a1a;
    text-decoration: none;
    cursor: pointer;
    transition: background .25s ease, color .25s ease;
    position: relative;
}
.mega-link:hover,
.mega-toggler:hover,
.mega-toggler.active {
    background: #fafaf8;
    color: var(--primary);
}
.mega-toggler .mega-plus {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: transform .35s cubic-bezier(.16,1,.3,1);
}
.mega-toggler.active .mega-plus {
    transform: rotate(45deg);
}

/* Expanded sections */
.mega-section {
    display: none;
    background: #fafaf8;
    padding: 2.5rem 0 3rem;
    animation: megaSectionIn .35s ease both;
}
.mega-section.active { display: block; }
@keyframes megaSectionIn {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.mega-grid {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) 2fr;
    gap: 2.5rem;
    align-items: start;
}

/* Left feature card */
.mega-feature {
    background: #16273e;
    color: #fff;
    padding: 2.2rem 2rem;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.mega-feature::before {
    content: "";
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(176,31,36,0.22) 0%, transparent 70%);
    pointer-events: none;
}
.mega-feature h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.7rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
    position: relative;
    z-index: 1;
}
.mega-feature p {
    font-size: 0.88rem;
    opacity: 0.75;
    line-height: 1.6;
    margin-bottom: 1.4rem;
    position: relative;
    z-index: 1;
}
.mega-feature-btn {
    display: inline-flex;
    align-items: center;
    height: 48px;
    padding: 0 1.4rem;
    background: var(--primary);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    transition: opacity .25s ease, transform .25s ease;
    width: fit-content;
    position: relative;
    z-index: 1;
}
.mega-feature-btn:hover {
    opacity: 0.85;
    color: #fff;
    transform: translateX(3px);
}

/* Right columns */
.mega-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}
.mega-col {}
.mega-col-title {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--primary);
    padding-bottom: 0.6rem;
    margin-bottom: 0.2rem;
    border-bottom: 1px solid rgba(176,31,36,0.2);
}
.mega-list {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 0;
}
.mega-list li {
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.mega-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 0;
    font-size: 0.88rem;
    font-weight: 500;
    color: #1a1a1a;
    text-decoration: none;
    transition: opacity .25s ease, padding .25s ease;
}
.mega-list li a .mega-arrow {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    transition: transform .25s ease;
}
.mega-list li a:hover {
    opacity: 0.6;
    padding-left: 0.3rem;
}
.mega-list li a:hover .mega-arrow {
    transform: translateX(3px);
}

/* Mega menu backdrop — overlays the rest of the page while open */
body.is-home .mega-menu-backdrop {
    display: block;
    position: fixed;
    /* Start below the header so the top strip (logo, TR/EN,
       search, İletişim CTA) stays fully visible and interactive
       while the mega menu is open. */
    top: var(--home-header-h, 84px);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    z-index: 40;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
}
body.is-home .mega-menu-backdrop.open {
    opacity: 1;
    visibility: visible;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
    body.is-home .hero-home-inner { padding-top: 0 !important; }

    .mega-menu.open { max-height: 85vh; }
    .mega-menu-items {
        justify-content: flex-start;
        flex-direction: column;
        align-items: stretch;
    }
    .mega-item { width: 100%; }
    .mega-toggler,
    .mega-link {
        width: 100%;
        justify-content: space-between;
        padding: 1rem 1.3rem;
        font-size: 0.95rem;
        border-bottom: 1px solid rgba(0,0,0,0.06);
    }
    .mega-section { padding: 1.8rem 0 2.2rem; }
    .mega-grid {
        grid-template-columns: 1fr;
        gap: 1.6rem;
    }
    .mega-feature { min-height: 180px; padding: 1.8rem 1.5rem; }
    .mega-feature h4 { font-size: 1.4rem; }
    .mega-cols { grid-template-columns: 1fr; gap: 1.2rem; }
}

@media (max-width: 575.98px) {
    body.is-home .hero-home-inner { padding-top: 0 !important; }
    .mega-toggler,
    .mega-link { padding: 0.9rem 1.1rem; font-size: 0.88rem; }
    .mega-feature { padding: 1.4rem 1.2rem; }
    .mega-feature h4 { font-size: 1.2rem; }
    .mega-feature p { font-size: 0.82rem; }
    .mega-feature-btn { height: 42px; font-size: 0.78rem; }
}

/* ============================================================
   MEGA MENU OPEN → keep header visible above the panel
   ============================================================ */
/* When mega menu is open, promote the header to a solid white
   state so MENU / logo / CTA are clearly visible on top of the
   white drop-down. Uses :has() which is supported in all modern
   browsers. A .menu-open fallback class is also honoured in case
   JS toggles it. */
/* When the mega menu is open, paint the header solid white so
   it visually connects to the mega-menu-top row right below it
   (no gap). All header elements (logo, language switcher,
   search, İletişim CTA) remain fully interactive. */
body.is-home.mega-open .site-header--home,
body.is-home .site-header--home:has(.mega-menu.open),
body.is-home .site-header--home.menu-open,
body.has-mobile-menu.mega-open .site-header--home,
body.has-mobile-menu .site-header--home:has(.mega-menu.open),
body.has-mobile-menu .site-header--home.menu-open {
    background: #ffffff !important;
    border-bottom: 0 !important;
    box-shadow: none !important;
    z-index: 60 !important;
}
body.is-home.mega-open .site-header--home .site-nav--home,
body.is-home .site-header--home:has(.mega-menu.open) .site-nav--home,
body.is-home .site-header--home.menu-open .site-nav--home,
body.has-mobile-menu.mega-open .site-header--home .site-nav--home,
body.has-mobile-menu .site-header--home:has(.mega-menu.open) .site-nav--home,
body.has-mobile-menu .site-header--home.menu-open .site-nav--home {
    background: #ffffff !important;
}
/* Dark text on white for all header children so they read well */
body.is-home.mega-open .site-header--home,
body.is-home.mega-open .site-header--home .home-menu-btn,
body.is-home.mega-open .site-header--home .home-cta-btn:not([class*="bg-"]),
body.is-home .site-header--home:has(.mega-menu.open),
body.is-home .site-header--home:has(.mega-menu.open) .home-menu-btn,
body.is-home .site-header--home.menu-open,
body.is-home .site-header--home.menu-open .home-menu-btn,
body.has-mobile-menu.mega-open .site-header--home,
body.has-mobile-menu.mega-open .site-header--home .home-menu-btn,
body.has-mobile-menu.mega-open .site-header--home .home-cta-btn:not([class*="bg-"]),
body.has-mobile-menu .site-header--home:has(.mega-menu.open),
body.has-mobile-menu .site-header--home:has(.mega-menu.open) .home-menu-btn,
body.has-mobile-menu .site-header--home.menu-open,
body.has-mobile-menu .site-header--home.menu-open .home-menu-btn {
    color: #1a1a1a !important;
}
/* Kill every inherited blur on header children while the mega
   menu is open — logo, language toggle, CTA, search etc. must
   render sharp on the solid white bar. Also overrides the
   .scrolled state's backdrop blur that would otherwise stack. */
body.is-home.mega-open .site-header--home,
body.is-home.mega-open .site-header--home *,
body.is-home .site-header--home:has(.mega-menu.open),
body.is-home .site-header--home.menu-open,
body.is-home .site-header--home:has(.mega-menu.open) *,
body.is-home .site-header--home.menu-open *,
body.has-mobile-menu.mega-open .site-header--home,
body.has-mobile-menu.mega-open .site-header--home *,
body.has-mobile-menu .site-header--home:has(.mega-menu.open),
body.has-mobile-menu .site-header--home.menu-open,
body.has-mobile-menu .site-header--home:has(.mega-menu.open) *,
body.has-mobile-menu .site-header--home.menu-open * {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    filter: none !important;
}
/* Make sure the mega panel drops from *below* the header (not
   behind it). Header height ≈ 84px → shift the panel down so the
   header stays uncovered. */
body.is-home .site-header--home .mega-menu,
body.has-mobile-menu .site-header--home .mega-menu {
    top: 100%;
}
body.is-home .site-header--home .mega-menu.open,
body.has-mobile-menu .site-header--home .mega-menu.open {
    box-shadow: 0 30px 60px -30px rgba(0,0,0,0.25);
}

/* ============================================================
   E-Catalog Flip Book Viewer
   ============================================================ */
.catalog-page {
    background: #f5f5f2;
    padding: 32px 0 64px;
    min-height: 70vh;
}

.catalog-toolbar {
    position: sticky;
    top: 12px;
    z-index: 40;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: #ffffff;
    border-radius: 14px;
    padding: 10px 14px;
    margin: 0 auto 24px;
    max-width: 1600px;
    box-shadow: 0 8px 24px -12px rgba(0, 0, 0, 0.18), 0 2px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.06);
    flex-wrap: wrap;
}

.catalog-toolbar-left {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    flex: 1 1 auto;
}

.catalog-toolbar-title {
    font-weight: 600;
    color: #1f1f1f;
    font-size: 0.98rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 260px;
}

.catalog-page-counter {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #6b7280;
    background: #f5f5f2;
    padding: 5px 10px;
    border-radius: 999px;
    font-weight: 500;
}

.catalog-page-counter i { font-size: 0.95rem; }

.catalog-toolbar-right {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.catalog-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #f5f5f2;
    color: #333;
    border: 1px solid transparent;
    font-size: 1.05rem;
    cursor: pointer;
    transition: background .15s ease, color .15s ease, transform .15s ease, box-shadow .15s ease;
    text-decoration: none;
}

.catalog-btn:hover,
.catalog-btn:focus {
    background: #B01F24;
    color: #fff;
    outline: none;
    transform: translateY(-1px);
    box-shadow: 0 6px 14px -6px rgba(176, 31, 36, 0.55);
}

.catalog-btn--primary {
    background: #B01F24;
    color: #fff;
}
.catalog-btn--primary:hover,
.catalog-btn--primary:focus {
    background: #8d181c;
}

.catalog-btn-divider {
    display: inline-block;
    width: 1px;
    height: 24px;
    background: rgba(0, 0, 0, 0.1);
    margin: 0 4px;
}

.catalog-stage {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-height: 80vh;
    padding: 16px 0;
}

.catalog-zoom-wrap {
    width: 100%;
    max-width: 1600px;
    transform-origin: center top;
    transition: transform .25s ease;
    display: flex;
    justify-content: center;
}

.catalog-flipbook {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.25));
}

/* HTML-mode pages built by catalog.js — each page is a <div><img></div>.
   The img must fill its parent page box so StPageFlip can measure it,
   and we hint the browser to use high-quality downsampling so text
   stays sharp at any display size (and when zoomed). */
.catalog-flip-page {
    background: #ffffff;
    overflow: hidden;
}
.catalog-flip-page-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    user-select: none;
    -webkit-user-drag: none;
    image-rendering: auto;
    image-rendering: high-quality;
}
/* Fallback hint for older engines (used by canvas-mode shadows etc.) */
.catalog-flipbook canvas {
    image-rendering: -webkit-optimize-contrast;
}

/* Loading overlay */
.catalog-loading {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 245, 242, 0.96);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: opacity .3s ease;
    z-index: 5;
    border-radius: 12px;
}
.catalog-loading.is-hidden {
    opacity: 0;
    pointer-events: none;
}
.catalog-loading-inner {
    text-align: center;
    max-width: 360px;
    width: 100%;
    padding: 24px;
}
.catalog-loading-spinner {
    width: 54px;
    height: 54px;
    border: 4px solid #e5e5e0;
    border-top-color: #B01F24;
    border-radius: 50%;
    margin: 0 auto 16px;
    animation: catalogSpin 0.9s linear infinite;
}
@keyframes catalogSpin {
    to { transform: rotate(360deg); }
}
.catalog-loading-text {
    color: #333;
    font-weight: 500;
    margin-bottom: 14px;
}
.catalog-loading-progress {
    height: 6px;
    background: #e5e5e0;
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 8px;
}
.catalog-loading-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #B01F24, #d9444a);
    border-radius: 999px;
    transition: width .25s ease;
}
.catalog-loading-count {
    color: #6b7280;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Fullscreen state */
.catalog-page.catalog-fullscreen {
    background: #1a1a1a;
    min-height: 100vh;
    padding: 18px 0;
}
.catalog-page.catalog-fullscreen .catalog-toolbar {
    background: #2a2a2a;
    border-color: rgba(255, 255, 255, 0.08);
}
.catalog-page.catalog-fullscreen .catalog-toolbar-title { color: #f5f5f2; }
.catalog-page.catalog-fullscreen .catalog-page-counter {
    background: rgba(255, 255, 255, 0.08);
    color: #e5e5e0;
}
.catalog-page.catalog-fullscreen .catalog-btn {
    background: rgba(255, 255, 255, 0.08);
    color: #e5e5e0;
}
.catalog-page.catalog-fullscreen .catalog-btn:hover,
.catalog-page.catalog-fullscreen .catalog-btn:focus {
    background: #B01F24;
    color: #fff;
}
.catalog-page.catalog-fullscreen .catalog-loading {
    background: rgba(26, 26, 26, 0.96);
}
.catalog-page.catalog-fullscreen .catalog-loading-text { color: #f5f5f2; }

/* Responsive */
@media (max-width: 768px) {
    .catalog-page { padding: 20px 0 40px; }
    .catalog-toolbar {
        top: 8px;
        padding: 8px 10px;
        gap: 8px;
        border-radius: 12px;
    }
    .catalog-toolbar-title {
        display: none;
    }
    .catalog-toolbar-left { gap: 8px; }
    .catalog-toolbar-right { gap: 4px; }
    .catalog-btn {
        width: 34px;
        height: 34px;
        font-size: 0.95rem;
        border-radius: 8px;
    }
    .catalog-btn-divider { display: none; }
    .catalog-stage { min-height: 60vh; padding: 8px 0; }
    .catalog-flipbook { filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.2)); }
}

@media (max-width: 480px) {
    .catalog-page-counter {
        font-size: 0.78rem;
        padding: 4px 8px;
    }
}

/* ============================================================
   INFO BOX SECTION — editorial corporate info block
   ============================================================ */
.section-info-box {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 0 2rem;
    background: #ffffff;
    color: #121212;
    overflow: hidden;
}
.section-info-box .info-box-bg {
    display: none;
}
.section-info-box .container {
    position: relative;
    z-index: 1;
    width: 100%;
}

/* ---- Main row: 2-column — text left, bento right ---- */
.info-box-row {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 4rem;
    align-items: center;
}

/* ---- Bento Grid ---- */
.info-box-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    grid-template-areas:
        "c1 c3 c6"
        "c1 c4 c6"
        "c2 c5 c7";
    gap: 1rem;
}

/* Base card */
.bento-card {
    border-radius: 18px;
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    position: relative;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.bento-card:hover { transform: translateY(-4px); }

/* Light card — clean white */
.bento-card--light {
    background: #ffffff;
    color: #1a1a1a;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.08);
}
.bento-card--light:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

/* Dark card — warm off-white */
.bento-card--dark {
    background: #f3f1ef;
    color: #1a1a1a;
    box-shadow: 0 1px 4px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.04);
}
.bento-card--dark:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

/* Centered variant — no icon, content centered */
.bento-card--centered {
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Tall variant spans 2 rows */
.bento-card--tall { min-height: 220px; }

/* Icon circle */
.bento-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: auto;
    transition: background 0.3s ease, transform 0.3s ease;
}
.bento-card--light .bento-card-icon { background: rgba(0,0,0,0.04); color: #555; }
.bento-card--dark .bento-card-icon { background: rgba(0,0,0,0.05); color: #555; }
.bento-card-icon i { font-size: 1.3rem; }

/* Large number */
.bento-card-num {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
}
.bento-card-num {
    color: #444;
}

/* Label */
.bento-card-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin: 0.5rem 0 0.3rem;
}
.bento-card-label { color: rgba(18,18,18,0.32); }

/* Description */
.bento-card-desc {
    font-size: 0.78rem;
    line-height: 1.5;
    margin: 0;
}
.bento-card-desc { color: rgba(18,18,18,0.28); }

/* Body wrapper (used in cards with icon + body) */
.bento-card-body { margin-top: auto; }

/* Showcase card — subtle accent */
.bento-card--showcase {
    background: #faf8f7;
    border-color: rgba(176,31,36,0.06);
}
.bento-card--showcase .bento-card-num {
    color: var(--primary);
}

/* Showcase card — product image */
.bento-showcase-img {
    width: 100%;
    max-height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.bento-card--showcase:hover .bento-showcase-img {
    transform: scale(1.05);
}
.bento-showcase-img.fading {
    opacity: 0;
    transform: scale(0.92);
}
.bento-showcase-name {
    font-family: 'Poppins', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: rgba(18,18,18,0.5);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    align-self: center;
    transition: opacity 0.5s ease;
}
.bento-showcase-name.fading { opacity: 0; }

/* CTA card */
.bento-card--cta { text-decoration: none; cursor: pointer; }
.bento-card--cta:hover .bento-card-icon {
    background: var(--primary);
    color: #fff;
    transform: scale(1.08);
}
@media (max-width: 991.98px) {
    .info-box-row {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .info-box-left {
        text-align: center;
        padding-left: 0;
        max-width: 560px;
        margin: 0 auto;
        align-items: center;
    }
    .info-box-left::before { content: none; }
    .info-box-bento {
        grid-template-columns: repeat(2, 1fr);
        grid-template-areas:
            "c1 c6"
            "c3 c4"
            "c2 c5"
            "c7 c7";
    }
}
.info-box-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding-left: 1.6rem;
}
/* Vertical red accent bar on the left of the text column */
.info-box-left::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    bottom: 0.55rem;
    width: 2px;
    background: linear-gradient(180deg, var(--primary) 0%, rgba(176, 31, 36, 0.15) 100%);
    border-radius: 2px;
}

/* Editorial eyebrow — short red rule + label (no pill) */
.info-box-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--primary);
    background: none;
    border: 0;
    padding: 0;
    align-self: flex-start;
    margin-bottom: 1rem;
}
.info-box-tag::before {
    content: "";
    display: inline-block;
    width: 26px;
    height: 2px;
    background: var(--primary);
}
.info-box-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.85rem, 2.6vw, 2.5rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.012em;
    color: #111111;
    margin: 0 0 0.85rem;
    max-width: 18ch;
}
.info-box-strong {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0 0 0.9rem;
    letter-spacing: 0.005em;
}
.info-box-desc {
    font-size: 0.94rem;
    line-height: 1.78;
    color: rgba(18, 18, 18, 0.62);
    margin: 0 0 1.6rem;
    max-width: 520px;
}

/* Decorative monogram — faint "S" watermark in the top-right of the
   text column, anchored to the info-box-left container. Purely
   decorative; aria-hidden in the markup. */
.info-box-left { isolation: isolate; }
.info-box-monogram {
    position: absolute;
    top: -0.4rem;
    right: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 10rem;
    font-weight: 800;
    line-height: 1;
    color: var(--primary);
    opacity: 0.055;
    letter-spacing: -0.06em;
    pointer-events: none;
    z-index: 0;
    user-select: none;
}
.info-box-left > *:not(.info-box-monogram) {
    position: relative;
    z-index: 1;
}

/* (Old features & stats rows removed — replaced by bento grid) */

/* Horizontal product name ticker — right-to-left infinite scroll. */
.product-ticker {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.product-ticker-track {
    display: inline-flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 1.4rem;
    white-space: nowrap;
    will-change: transform;
    animation: productTickerScroll 45s linear infinite;
}
.product-ticker-track .pt-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    color: rgba(18, 18, 18, 0.72);
    letter-spacing: 0;
    text-transform: none;
    white-space: nowrap;
    flex: 0 0 auto;
}
.product-ticker-track .pt-item::after {
    content: "•";
    margin-left: 1.4rem;
    color: var(--primary);
    opacity: 0.5;
}
.product-ticker-track .pt-item:last-child::after { content: none; }
.product-ticker-track .pt-num {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.68rem;
}
.product-ticker:hover .product-ticker-track {
    animation-play-state: paused;
}
@keyframes productTickerScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
    .product-ticker-track { animation: none; }
}
@media (max-width: 991.98px) {
    .info-box-monogram { font-size: 8rem; }
}
@media (max-width: 575.98px) {
    .info-box-monogram { font-size: 6.5rem; top: -0.2rem; }
    .info-box-bento {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "c1 c6"
            "c3 c4"
            "c2 c5"
            "c7 c7";
        gap: 0.6rem;
    }
    .bento-card { padding: 1.1rem; border-radius: 12px; }
    .bento-card--tall { min-height: 160px; }
    .bento-card-num { font-size: 1.35rem; }
    .bento-card-label { font-size: 0.7rem; }
    .bento-card-desc { font-size: 0.62rem; }
    .bento-card-icon { font-size: 1.3rem; }
    .bento-card--showcase .bento-showcase-img { max-height: 60px; }
    .bento-card--showcase .bento-showcase-name { font-size: 0.55rem; }
}
.info-box-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}
.info-box-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.95rem 1.6rem;
    border-radius: 2px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background .35s ease, color .35s ease, border-color .35s ease, transform .35s ease, box-shadow .35s ease;
}
.info-box-btn i {
    font-size: 0.9rem;
    transition: transform .35s cubic-bezier(.16, 1, .3, 1);
}
.info-box-btn:hover i { transform: translateX(4px); }
.info-box-btn--primary {
    background: #111111;
    color: #ffffff;
    border: 1px solid #111111;
}
.info-box-btn--primary:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px -14px rgba(176, 31, 36, 0.55);
}
.info-box-btn--ghost {
    background: transparent;
    color: #111111;
    border: 1px solid rgba(0, 0, 0, 0.2);
}
.info-box-btn--ghost:hover {
    border-color: #111111;
    color: #111111;
    background: transparent;
    transform: translateY(-2px);
}

/* ---- Middle: video thumbnail with play button ---- */
.info-box-middle { display: flex; align-items: stretch; }
.info-box-video {
    position: relative;
    display: block;
    width: 100%;
    min-height: 320px;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 30px 60px -30px rgba(0,0,0,0.35);
    transform: translateZ(0);
    transition: transform .4s ease;
}
.info-box-video:hover { transform: translateY(-4px); }
.info-box-video img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s ease;
}
.info-box-video:hover img { transform: scale(1.06); }
.info-box-video-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.75) 100%),
        linear-gradient(90deg, rgba(176,31,36,0.15) 0%, rgba(0,0,0,0) 100%);
    pointer-events: none;
}
.info-box-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 0 0 0 rgba(176,31,36,0.5);
    animation: infoBoxPulse 2.2s infinite;
    transition: background .3s ease, transform .3s ease;
    z-index: 2;
}
.info-box-video:hover .info-box-play {
    background: #fff;
    color: var(--primary);
    transform: translate(-50%, -50%) scale(1.08);
}
@keyframes infoBoxPulse {
    0%   { box-shadow: 0 0 0 0 rgba(176,31,36,0.55); }
    70%  { box-shadow: 0 0 0 26px rgba(176,31,36,0); }
    100% { box-shadow: 0 0 0 0 rgba(176,31,36,0); }
}
.info-box-video-label {
    position: absolute;
    left: 1.2rem;
    bottom: 1.1rem;
    right: 1.2rem;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    z-index: 2;
    text-shadow: 0 2px 14px rgba(0,0,0,0.6);
}

/* ---- Right: logo watermark + scroll arrow ---- */
.info-box-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    position: relative;
    padding: 0.5rem 0;
}
.info-box-logo-watermark {
    width: 100%;
    max-width: 140px;
    opacity: 0.95;
}
.info-box-logo-watermark img { width: 100%; height: auto; display: block; }
.info-box-scroll {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.9rem;
    text-decoration: none;
    color: #1a1a1a;
    transition: color .3s ease, transform .3s ease;
}
.info-box-scroll:hover {
    color: var(--primary);
    transform: translateY(4px);
}
.info-box-scroll-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}
.info-box-scroll-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    animation: infoBoxArrow 1.8s ease-in-out infinite;
}
.info-box-scroll:hover .info-box-scroll-icon {
    border-color: var(--primary);
}
@keyframes infoBoxArrow {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(6px); }
}

/* ---- Links strip (3 icon+text links) ---- */
.info-box-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 2.2rem 0 0;
}
.info-box-link {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    padding: 1.2rem 1.4rem;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 12px 26px -20px rgba(0,0,0,0.25);
    text-decoration: none;
    color: #1a1a1a;
    transition: background .3s ease, border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}
.info-box-link:hover {
    background: #fff;
    border-color: rgba(176,31,36,0.35);
    transform: translateY(-3px);
    color: var(--primary);
    box-shadow: 0 22px 40px -22px rgba(176,31,36,0.35);
}
.info-box-link-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 50%;
    background: rgba(176,31,36,0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: background .3s ease, color .3s ease;
}
.info-box-link:hover .info-box-link-icon {
    background: var(--primary);
    color: #fff;
}
.info-box-link-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    flex: 1;
    min-width: 0;
}
.info-box-link-text strong {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a1a;
}
.info-box-link:hover .info-box-link-text strong { color: var(--primary); }
.info-box-link-text small {
    font-size: 0.78rem;
    color: rgba(26,26,26,0.6);
}
.info-box-link-arrow {
    font-size: 1.15rem;
    color: rgba(26,26,26,0.4);
    transition: color .3s ease, transform .3s ease;
}
.info-box-link:hover .info-box-link-arrow {
    color: var(--primary);
    transform: translate(3px, -3px);
}

/* ---- Bottom images strip ---- */
.info-box-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    padding-top: 2.2rem;
}
.info-box-image {
    position: relative;
    aspect-ratio: 16/10;
    border-radius: 12px;
    overflow: hidden;
    background: #f2efe9;
    box-shadow: 0 18px 35px -22px rgba(0,0,0,0.25);
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform .35s ease, box-shadow .35s ease;
}
.info-box-image:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 45px -22px rgba(0,0,0,0.35);
}
.info-box-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}
.info-box-image:hover img { transform: scale(1.06); }
.info-box-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,0.25) 100%);
    pointer-events: none;
}

/* ---- Responsive ---- */
@media (max-width: 1199.98px) {
    .info-box-row { grid-template-columns: 5fr 7fr; gap: 2rem; }
    .info-box-images { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 991.98px) {
    .section-info-box { min-height: auto; padding: 3.5rem 0 2rem; }
    .info-box-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .info-box-links { grid-template-columns: 1fr; gap: 0.75rem; padding: 1.8rem 0; }
    .info-box-images { grid-template-columns: repeat(2, 1fr); padding-top: 1.8rem; }
}

@media (max-width: 575.98px) {
    body.is-home .section-corporate-intro,
    body.is-home .section-info-box {
        padding-top: 2rem;
    }
    .section-info-box { min-height: auto; padding: 2.5rem 0 1.5rem; }
    .info-box-row {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        padding-bottom: 0;
    }
    .info-box-left {
        max-width: 100%;
        padding: 0 0.25rem;
    }
    .info-box-title { font-size: 1.35rem; }
    .info-box-strong { font-size: 0.88rem; }
    .info-box-desc { font-size: 0.82rem; line-height: 1.6; margin-bottom: 1rem; }
    .info-box-tag { font-size: 0.62rem; margin-bottom: 0.6rem; }
    .info-box-btn { padding: 0.7rem 1rem; font-size: 0.65rem; letter-spacing: 0.12em; }
    .info-box-link { padding: 1rem; gap: 0.9rem; }
    .info-box-link-icon { width: 46px; height: 46px; min-width: 46px; font-size: 1.25rem; }
    .info-box-link-text strong { font-size: 0.88rem; }
    .info-box-link-text small  { font-size: 0.72rem; }
    .info-box-images { grid-template-columns: repeat(2, 1fr); gap: 0.7rem; }
}

/* ============================================================
   MOBILE-ONLY HOME-STYLE HEADER (non-home pages)
   Shows the home-style header + mega menu on ≤991.98px for
   every non-home page, replacing the regular drawer menu.
   ============================================================ */
.site-header--mobile-only { display: none; }

@media (max-width: 991.98px) {
    /* Show mobile home-style header, hide the regular header + top bar */
    body.has-mobile-menu .site-header--mobile-only {
        display: block;
        position: sticky;
        top: 0;
        z-index: 1000;
        background: #fff;
        border-bottom: 1px solid rgba(0,0,0,0.06);
    }
    body.has-mobile-menu .top-bar { display: none !important; }
    body.has-mobile-menu .site-header:not(.site-header--mobile-only) {
        display: none !important;
    }

    /* Un-scope the home-menu-btn styling so it works off .is-home body */
    body.has-mobile-menu .home-menu-btn,
    body.has-mobile-menu .home-menu-btn.hamburger {
        justify-self: start;
        display: inline-flex !important;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 0.65rem;
        width: auto;
        height: auto;
        background: transparent;
        border: 0;
        border-radius: 0;
        padding: 0.55rem 0.2rem;
        color: #1a1a1a;
        font-family: 'Poppins', sans-serif;
        font-size: 0.8rem;
        font-weight: 600;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        cursor: pointer;
        transition: color .25s ease;
    }
    body.has-mobile-menu .home-menu-btn:hover,
    body.has-mobile-menu .home-menu-btn.hamburger:hover {
        background: transparent;
        border-color: transparent;
        color: var(--primary);
    }

    /* Mega menu backdrop on non-home mobile */
    body.has-mobile-menu .site-header--mobile-only .mega-menu-backdrop {
        display: block;
        position: fixed;
        top: var(--home-header-h, 64px);
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.55);
        z-index: 40;
        opacity: 0;
        visibility: hidden;
        transition: opacity .3s ease, visibility .3s ease;
    }
    body.has-mobile-menu .site-header--mobile-only .mega-menu-backdrop.open {
        opacity: 1;
        visibility: visible;
    }

    /* Mega panel drops below the sticky header */
    body.has-mobile-menu .site-header--mobile-only .mega-menu {
        top: 100%;
    }

    /* Header adopts the solid-white "mega-open" state when the menu is open */
    body.has-mobile-menu .site-header--mobile-only.menu-open,
    body.has-mobile-menu .site-header--mobile-only:has(.mega-menu.open) {
        background: #ffffff !important;
        border-bottom: 0 !important;
        box-shadow: none !important;
        z-index: 60 !important;
    }

}

/* ============================================================
   Siya Dijital — Digital Product Hub
   Prefix: digi-
   ============================================================ */

/* --- Hero --- */
.digi-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    padding: 5rem 0 4rem;
    position: relative;
    overflow: hidden;
}
.digi-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(176,31,36,0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.digi-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(176,31,36,0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.digi-hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.digi-hero-badge {
    display: inline-block;
    background: rgba(176,31,36,0.2);
    color: #e74c4c;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    border: 1px solid rgba(176,31,36,0.3);
    margin-bottom: 1.5rem;
}
.digi-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}
.digi-hero-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

/* Counters */
.digi-counters {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}
.digi-counter {
    text-align: center;
}
.digi-counter-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}
.digi-counter-suffix {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}
.digi-counter-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 0.4rem;
}

/* --- Sections shared --- */
.digi-section {
    padding: 4rem 0;
}
.digi-section:nth-child(even) {
    background: var(--light-bg);
}
.digi-section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.digi-section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 0.5rem;
}
.digi-section-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* --- Matrix --- */
.digi-matrix-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-light);
    background: #fff;
    box-shadow: var(--shadow);
}
.digi-matrix-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
    font-size: 0.85rem;
}
.digi-matrix-corner {
    position: sticky;
    left: 0;
    z-index: 3;
    background: #f8f9fa;
    min-width: 140px;
}
.digi-matrix-col-header {
    padding: 0.75rem 0.5rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.72rem;
    color: var(--text);
    background: #f8f9fa;
    border-bottom: 2px solid var(--gray-light);
    white-space: nowrap;
    vertical-align: bottom;
}
.digi-matrix-col-emoji {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}
.digi-matrix-col-label {
    display: block;
    max-width: 80px;
    margin: 0 auto;
    line-height: 1.3;
    word-break: break-word;
    white-space: normal;
}
.digi-matrix-row-header {
    position: sticky;
    left: 0;
    z-index: 2;
    background: #fff;
    padding: 0.6rem 0.75rem;
    font-weight: 600;
    font-size: 0.8rem;
    border-right: 2px solid var(--gray-light);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 140px;
}
.digi-matrix-animal-img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex-shrink: 0;
}
.digi-matrix-cell {
    text-align: center;
    padding: 0.6rem 0.4rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid rgba(0,0,0,0.04);
    position: relative;
}
.digi-matrix-cell:hover {
    transform: scale(1.15);
    z-index: 1;
    box-shadow: 0 0 12px rgba(176,31,36,0.3);
    border-radius: 4px;
}
.digi-matrix-cell[data-intensity="0"] {
    background: rgba(176,31,36,0);
    color: #ccc;
}
.digi-matrix-cell[data-intensity="1"] {
    background: rgba(176,31,36,0.08);
    color: var(--text);
}
.digi-matrix-cell[data-intensity="2"] {
    background: rgba(176,31,36,0.18);
    color: var(--text);
}
.digi-matrix-cell[data-intensity="3"] {
    background: rgba(176,31,36,0.3);
    color: #fff;
}
.digi-matrix-cell[data-intensity="4"] {
    background: rgba(176,31,36,0.5);
    color: #fff;
}
.digi-matrix-cell[data-intensity="5"] {
    background: rgba(176,31,36,0.72);
    color: #fff;
    font-weight: 700;
}

/* Matrix row/col highlight */
.digi-matrix-table tr.digi-matrix-row-hover td {
    background-color: rgba(176,31,36,0.04) !important;
}
.digi-matrix-table td.digi-matrix-col-hover {
    background-color: rgba(176,31,36,0.04) !important;
}

/* --- Explorer --- */
.digi-explorer-tabs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 1.2rem;
}
.digi-explorer-tab {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    border: 2px solid var(--gray-light);
    border-radius: 50px;
    background: #fff;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
}
.digi-explorer-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.digi-explorer-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}
.digi-explorer-tab-img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}
.digi-explorer-tab.active .digi-explorer-tab-img {
    filter: brightness(0) invert(1);
}

.digi-explorer-pills {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.digi-explorer-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.35rem 0.8rem;
    border: 1px solid var(--gray-light);
    border-radius: 50px;
    background: #fff;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}
.digi-explorer-pill:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.digi-explorer-pill.active {
    background: var(--primary-light);
    border-color: var(--primary);
    color: var(--primary);
    font-weight: 600;
}
.digi-explorer-pill-emoji {
    font-size: 0.9rem;
}

.digi-explorer-controls {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: center;
}
.digi-explorer-search {
    flex: 1;
    position: relative;
}
.digi-explorer-search i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
    font-size: 0.9rem;
}
.digi-explorer-search input {
    width: 100%;
    padding: 0.65rem 1rem 0.65rem 2.5rem;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius);
    font-size: 0.85rem;
    font-family: inherit;
    transition: var(--transition);
    background: #fff;
}
.digi-explorer-search input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(176,31,36,0.1);
}
.digi-explorer-sort select {
    padding: 0.65rem 2rem 0.65rem 0.8rem;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius);
    font-size: 0.83rem;
    font-family: inherit;
    background: #fff;
    cursor: pointer;
    appearance: auto;
    transition: var(--transition);
}
.digi-explorer-sort select:focus {
    outline: none;
    border-color: var(--primary);
}

.digi-explorer-info {
    font-size: 0.82rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.digi-explorer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

/* Product Card */
.digi-product-card {
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-light);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.digi-product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: rgba(176,31,36,0.2);
}
.digi-product-card-img {
    height: 180px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.digi-product-card-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    padding: 1rem;
}
.digi-product-card-body {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.digi-product-card-category {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.3rem;
}
.digi-product-card-name {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0 0 0.5rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.digi-product-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}
.digi-product-tag-chip {
    font-size: 0.65rem;
    padding: 0.15rem 0.45rem;
    border-radius: 50px;
    background: var(--light-bg);
    color: var(--text-light);
    white-space: nowrap;
}
.digi-product-card-match {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}
.digi-product-card-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}
.digi-product-card-link:hover {
    gap: 0.6rem;
}

.digi-explorer-empty {
    text-align: center;
    padding: 3rem 0;
    color: var(--gray);
}
.digi-explorer-empty i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    opacity: 0.4;
}

/* --- Category Cards --- */
.digi-categories-scroll {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
}
.digi-categories-scroll::-webkit-scrollbar {
    height: 4px;
}
.digi-categories-scroll::-webkit-scrollbar-track {
    background: var(--gray-light);
    border-radius: 2px;
}
.digi-categories-scroll::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 2px;
}
.digi-category-card {
    flex: 0 0 220px;
    scroll-snap-align: start;
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-light);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}
.digi-category-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-3px);
    border-color: rgba(176,31,36,0.2);
}
.digi-category-img {
    height: 120px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.digi-category-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    padding: 0.75rem;
}
.digi-category-img--placeholder {
    color: var(--gray);
    font-size: 2rem;
}
.digi-category-info {
    padding: 0.75rem 1rem;
}
.digi-category-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0 0 0.2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.digi-category-count {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* --- Animal Profiles --- */
.digi-animals-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.digi-animal-card {
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-light);
    overflow: hidden;
    transition: var(--transition);
}
.digi-animal-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.digi-animal-card-img {
    height: 140px;
    background: linear-gradient(135deg, #f8f9fa 0%, #eee 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.digi-animal-card-img img {
    max-height: 100px;
    object-fit: contain;
}
.digi-animal-card-body {
    padding: 1.25rem;
}
.digi-animal-card-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 0.3rem;
}
.digi-animal-card-desc {
    font-size: 0.78rem;
    color: var(--text-light);
    margin: 0 0 0.5rem;
    line-height: 1.5;
}
.digi-animal-card-count {
    font-size: 0.82rem;
    color: var(--text);
    margin-bottom: 0.6rem;
}
.digi-animal-card-count strong {
    color: var(--primary);
    font-size: 1.1rem;
}
.digi-animal-card-needs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    margin-bottom: 0.75rem;
}
.digi-animal-need-chip {
    font-size: 0.68rem;
    padding: 0.2rem 0.5rem;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 500;
    white-space: nowrap;
}
.digi-animal-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}
.digi-animal-card-link:hover {
    gap: 0.6rem;
}

/* --- Statistics --- */
.digi-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.digi-stat-card {
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-light);
    padding: 1.5rem;
    box-shadow: var(--shadow);
}
.digi-stat-card-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.digi-stat-card-title i {
    color: var(--primary);
    font-size: 1.1rem;
}

.digi-bars {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.digi-bar-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.digi-bar-label {
    flex: 0 0 110px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.digi-bar-track {
    flex: 1;
    height: 8px;
    background: var(--gray-light);
    border-radius: 4px;
    overflow: hidden;
}
.digi-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 4px;
    width: 0;
    transition: width 1s ease;
}
.digi-bar-fill.animated {
    width: var(--bar-width);
}
.digi-bar-value {
    flex: 0 0 30px;
    text-align: right;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
}

/* Facts */
.digi-facts {
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-light);
    padding: 1.5rem;
    box-shadow: var(--shadow);
}
.digi-facts-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.digi-facts-title i {
    color: #f59e0b;
    font-size: 1.2rem;
}
.digi-facts-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.digi-fact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text);
    line-height: 1.5;
}
.digi-fact-item i {
    color: var(--primary);
    margin-top: 0.15rem;
    flex-shrink: 0;
}

/* --- Quick Actions --- */
.digi-actions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.digi-action-card {
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-light);
    padding: 1.75rem 1.25rem;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.digi-action-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--primary);
    color: inherit;
    text-decoration: none;
}
.digi-action-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: var(--transition);
}
.digi-action-icon i {
    font-size: 1.4rem;
    color: var(--primary);
}
.digi-action-card:hover .digi-action-icon {
    background: var(--primary);
}
.digi-action-card:hover .digi-action-icon i {
    color: #fff;
}
.digi-action-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0 0 0.4rem;
    color: var(--dark);
}
.digi-action-card p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

/* --- Animate on scroll --- */
.digi-animate-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.digi-animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .digi-hero { padding: 3.5rem 0 3rem; }
    .digi-hero-title { font-size: 2.2rem; }
    .digi-counters { gap: 2rem; }
    .digi-counter-value { font-size: 2rem; }
    .digi-explorer-grid { grid-template-columns: repeat(3, 1fr); }
    .digi-animals-grid { grid-template-columns: repeat(3, 1fr); }
    .digi-stats-grid { grid-template-columns: 1fr; }
    .digi-actions-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
    .digi-hero { padding: 2.5rem 0 2rem; }
    .digi-hero-title { font-size: 1.8rem; }
    .digi-hero-desc { font-size: 0.95rem; }
    .digi-section { padding: 2.5rem 0; }
    .digi-section-title { font-size: 1.4rem; }
    .digi-explorer-grid { grid-template-columns: repeat(2, 1fr); }
    .digi-animals-grid { grid-template-columns: repeat(2, 1fr); }
    .digi-explorer-controls { flex-direction: column; }
    .digi-explorer-sort { width: 100%; }
    .digi-explorer-sort select { width: 100%; }
    .digi-counters { gap: 1.5rem; }
    .digi-counter-value { font-size: 1.8rem; }
}

@media (max-width: 575px) {
    .digi-hero-title { font-size: 1.5rem; }
    .digi-counters { gap: 1rem; }
    .digi-counter-value { font-size: 1.5rem; }
    .digi-counter-label { font-size: 0.7rem; }
    .digi-explorer-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    .digi-product-card-img { height: 140px; }
    .digi-animals-grid { grid-template-columns: 1fr; }
    .digi-actions-grid { grid-template-columns: 1fr; }
    .digi-category-card { flex: 0 0 180px; }
    .digi-bar-label { flex: 0 0 80px; font-size: 0.7rem; }
}

/* Noscript fallback for SEO crawlers */
.digi-noscript-products { padding: 2rem 0; }
.digi-noscript-products h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 1rem; }
.digi-noscript-products ul { list-style: none; padding: 0; columns: 2; column-gap: 2rem; }
.digi-noscript-products li { margin-bottom: 0.5rem; font-size: 0.85rem; }
.digi-noscript-products a { color: var(--primary); text-decoration: none; font-weight: 600; }
.digi-noscript-products a:hover { text-decoration: underline; }
.digi-noscript-products span { color: var(--text-light); }

/* Focus visible for keyboard nav */
.digi-matrix-cell:focus-visible,
.digi-category-card:focus-visible,
.digi-explorer-tab:focus-visible,
.digi-explorer-pill:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Quick actions h3 sizing */
.digi-action-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0 0 0.4rem;
    color: var(--dark);
}

/* Category card h3 sizing */
.digi-category-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0 0 0.2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Animal card h3 sizing */
.digi-animal-card-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 0.3rem;
}

/* Product card h3 sizing (JS rendered) */
.digi-product-card-name {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0 0 0.5rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
