:root {
    --orange: #ef9504;
    --orange-dark: #d98200;

    --black: #111111;
    --dark: #191919;
    --dark-2: #242424;

    --white: #ffffff;
    --off-white: #f7f8fa;

    --gray-100: #f1f2f4;
    --gray-200: #e1e4e9;
    --gray-300: #ccd1d9;
    --gray-500: #777d87;
    --gray-600: #5e6470;

    --navy: #25356c;
    --navy-dark: #1c2a57;

    --header-height: 88px;
    --container: 1400px;

    --radius: 16px;

    --fast: 0.22s ease;
    --normal: 0.4s ease;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: "Inter", sans-serif;
    color: var(--black);
    background: var(--white);
    overflow-x: hidden;
}


body.modal-open {
    overflow: hidden;
}


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


a {
    color: inherit;
    text-decoration: none;
}


button {
    font: inherit;
}


ul {
    list-style: none;
}


[data-icon] {
    display: inline-flex;
}


[data-icon] svg {
    display: block;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: fixed;
    inset: 0 0 auto;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;

    background: rgba(255, 255, 255, 0.94);

    border-bottom: 1px solid rgba(0, 0, 0, 0.05);

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    transition:
        background var(--normal),
        box-shadow var(--normal);
}


.site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
}


.nav-container {
    width: min(calc(100% - 72px), var(--container));
    height: 100%;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 28px;
}


.brand-logo {
    flex-shrink: 0;
}


.brand-logo img {
    width: 180px;
    height: auto;
}


.desktop-nav {
    flex: 1;

    display: flex;
    justify-content: center;
}


.desktop-nav ul {
    display: flex;
    align-items: center;

    gap: 34px;
}


.desktop-nav a {
    position: relative;

    font-size: 0.94rem;
    font-weight: 600;

    color: var(--dark);

    transition: color var(--fast);
}


.desktop-nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    background: var(--orange);

    transition: width var(--fast);
}


.desktop-nav a:hover {
    color: var(--orange-dark);
}


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


.nav-cta {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    padding: 12px 18px;

    background: var(--orange);
    color: var(--white);

    border-radius: 9px;

    font-size: 0.88rem;
    font-weight: 700;

    transition:
        background var(--fast),
        transform var(--fast),
        box-shadow var(--fast);
}


.nav-cta:hover {
    background: var(--orange-dark);

    transform: translateY(-2px);

    box-shadow:
        0 12px 28px rgba(239, 149, 4, 0.2);
}


.nav-cta svg {
    width: 18px;
    height: 18px;
}


.mobile-menu-button {
    display: none;

    width: 44px;
    height: 44px;

    border: 1px solid var(--gray-200);
    border-radius: 10px;

    background: var(--white);
    color: var(--dark);

    align-items: center;
    justify-content: center;

    cursor: pointer;
}


.mobile-menu-button svg {
    width: 21px;
    height: 21px;
}


.mobile-menu {
    position: fixed;

    left: 0;
    top: var(--header-height);

    width: 100%;

    max-height: 0;

    overflow: hidden;

    background: rgba(255, 255, 255, 0.98);

    backdrop-filter: blur(15px);

    transition:
        max-height 0.35s ease;
}


.mobile-menu.active {
    max-height: 480px;
}


.mobile-menu-inner {
    display: flex;

    flex-direction: column;

    padding: 18px 24px 24px;
}


.mobile-menu-inner > a:not(.mobile-menu-cta) {
    padding: 15px 5px;

    border-bottom:
        1px solid var(--gray-200);

    font-weight: 600;
}


.mobile-menu-cta {
    display: flex;

    justify-content: center;
    align-items: center;

    gap: 8px;

    margin-top: 16px;

    padding: 14px;

    background: var(--orange);
    color: var(--white);

    border-radius: 8px;

    font-weight: 700;
}


.mobile-menu-cta svg {
    width: 18px;
    height: 18px;
}


/* =========================================================
   HERO
========================================================= */

.hero-section {
    position: relative;

    min-height: 720px;

    height: 100svh;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 78% 50%,
            #2a2a29 0%,
            #171717 32%,
            #111111 64%
        );

    color: var(--white);
}


.hero-container {
    position: relative;

    z-index: 5;

    width: min(calc(100% - 72px), var(--container));

    height: 100%;

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 64px;
}


.hero-content {
    width: min(620px, 48vw);

    padding-top: 60px;
}


.hero-eyebrow {
    margin-bottom: 16px;

    color: var(--orange);

    font-size: 0.75rem;

    font-weight: 800;

    letter-spacing: 0.17em;
}


.hero-title {
    font-family: "Montserrat", sans-serif;

    font-size: clamp(3.2rem, 5.5vw, 6rem);

    line-height: 0.96;

    letter-spacing: -0.06em;

    font-weight: 900;
}


.hero-title span {
    display: block;

    color: var(--orange);
}


.hero-description {
    max-width: 585px;

    margin-top: 28px;
    margin-bottom: 34px;

    color: rgba(255, 255, 255, 0.66);

    font-size: 1.04rem;

    line-height: 1.8;
}


.hero-actions {
    display: flex;

    flex-wrap: wrap;

    align-items: center;

    gap: 12px;
}


.primary-button,
.secondary-button {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    border-radius: 9px;

    font-size: 0.92rem;

    font-weight: 700;

    transition:
        background var(--fast),
        border var(--fast),
        color var(--fast),
        transform var(--fast),
        box-shadow var(--fast);
}


.primary-button {
    padding: 15px 22px;

    background: var(--orange);

    color: var(--white);

    box-shadow:
        0 12px 26px rgba(239, 149, 4, 0.2);
}


.primary-button:hover {
    background: var(--orange-dark);

    transform: translateY(-2px);
}


.secondary-button {
    padding: 14px 20px;

    background: transparent;

    border:
        1px solid rgba(255, 255, 255, 0.32);

    color: var(--white);
}


.secondary-button:hover {
    border-color: var(--orange);

    color: var(--orange);

    transform: translateY(-2px);
}


.hero-showcase {
    width: min(42vw, 560px);

    flex: 0 0 auto;

    margin-top: 72px;

    border:
        1px solid rgba(255, 255, 255, 0.12);

    background: #101010;

    box-shadow:
        0 28px 72px rgba(0, 0, 0, 0.36);
}


.hero-product-row {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 8px;

    padding: 10px;
}


.hero-product-row figure {
    min-width: 0;

    margin: 0;

    background: #181818;

    border:
        1px solid rgba(255, 255, 255, 0.1);
}


.hero-product-row img {
    width: 100%;

    aspect-ratio: 0.72;

    object-fit: cover;
}


.hero-product-row figcaption {
    padding: 10px 5px 11px;

    color:
        rgba(255, 255, 255, 0.72);

    font-size: 0.62rem;

    font-weight: 800;

    letter-spacing: 0.06em;

    text-align: center;

    text-transform: uppercase;
}


.hero-scroll-indicator {
    position: absolute;

    left: 50%;

    bottom: 18px;

    z-index: 20;

    transform: translateX(-50%);

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 7px;

    color:
        rgba(255, 255, 255, 0.5);

    font-size: 0.62rem;

    font-weight: 800;

    letter-spacing: 0.18em;
}


.hero-scroll-indicator svg {
    width: 15px;
    height: 15px;

    color: var(--orange);
}


.scroll-line {
    width: 1px;
    height: 28px;

    background:
        linear-gradient(
            to bottom,
            var(--orange),
            transparent
        );
}


/* =========================================================
   PRODUCT SECTION
========================================================= */

.product-explorer-section {
    background: var(--off-white);

    padding: 115px 0 135px;
}


.product-explorer-container {
    width: min(calc(100% - 70px), 1280px);

    margin: 0 auto;
}


.explorer-header {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 35px;

    margin-bottom: 32px;
}


.explorer-heading {
    display: flex;

    flex-direction: column;
}


.explorer-heading > span {
    display: block;

    margin-bottom: 12px;

    color: var(--orange-dark);

    font-size: 0.73rem;

    font-weight: 800;

    letter-spacing: 0.15em;

    text-transform: uppercase;
}


.explorer-heading h2 {
    margin: 0;

    font-family: "Montserrat", sans-serif;

    font-size:
        clamp(2.5rem, 4vw, 4rem);

    line-height: 1;

    letter-spacing: -0.05em;
}


.filter-group {
    display: grid;

    grid-template-columns:
        repeat(4, max-content);

    align-items: center;

    justify-content: flex-end;

    gap: 8px;
}


.filter-btn {
    border:
        1px solid var(--gray-200);

    background: var(--white);

    color: var(--gray-600);

    border-radius: 10px;

    padding: 10px 14px;

    font-size: 0.82rem;

    font-weight: 700;

    cursor: pointer;

    transition:
        background var(--fast),
        border var(--fast),
        color var(--fast),
        transform var(--fast);
}


.filter-btn:hover {
    border-color: var(--orange);

    color: var(--orange-dark);

    transform: translateY(-1px);
}


.filter-btn.active {
    background: #1b1b1b;

    border-color: #1b1b1b;

    color: var(--white);
}


/* =========================================================
   CATALOG
========================================================= */

.product-explorer-panel {
    overflow: hidden;

    background: var(--white);

    border:
        1px solid #e1e4e9;

    border-radius: 18px;

    box-shadow:
        0 18px 50px
        rgba(23, 31, 58, 0.07);
}


.catalog-status {
    min-height: 56px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 0 24px;

    border-bottom:
        1px solid var(--gray-200);

    color: var(--gray-500);

    font-size: 0.78rem;

    font-weight: 600;
}


.catalog-status > span:first-child {
    color: var(--dark);

    font-size: 0.8rem;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.08em;
}


.catalog-status-right {
    display: flex;

    align-items: center;

    gap: 9px;
}


.catalog-status-right b {
    color: var(--dark);
}


/* =========================================================
   SLIDER
========================================================= */

.slider-container {
    position: relative;

    padding: 34px 64px;
}


.slider-viewport {
    width: 100%;

    overflow: hidden;

    padding: 2px 2px 8px;

    touch-action: pan-y;
}


.slider-track {
    display: flex;

    gap: 18px;

    will-change: transform;

    transition:
        transform 0.42s
        cubic-bezier(0.2, 0.8, 0.2, 1);
}


.slider-track.is-centered {
    justify-content: center;
}


/* =========================================================
   PRODUCT CARD
========================================================= */

.product-card {
    position: relative;

    flex: 0 0 calc((100% - 72px) / 5);

    min-width: 0;

    padding: 0;

    overflow: hidden;

    background: var(--white);

    border:
        1px solid #e3e6ec;

    border-radius: 16px;

    box-shadow:
        0 7px 18px rgba(24, 39, 75, 0.06);

    cursor: pointer;

    text-align: left;

    isolation: isolate;

    transition:
        transform var(--normal),
        box-shadow var(--normal),
        border-color var(--normal);
}


.product-card:hover {
    transform: translateY(-6px);

    border-color: #d6dbe4;

    box-shadow:
        0 22px 42px
        rgba(24, 39, 75, 0.13);
}


.product-card::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 100%;
    height: 4px;

    background:
        var(--card-accent, var(--orange));
}


.product-card--fire::before {
    display: none;
}


.product-card-meta {
    min-height: 49px;

    display: flex;

    align-items: center;

    padding: 0 14px;

    gap: 7px;

    color: var(--dark);

    font-size: 0.65rem;

    font-weight: 800;
}


.product-card-meta .meta-color {
    width: 10px;

    height: 10px;

    flex: 0 0 auto;

    border-radius: 50%;
}


.product-card-meta .meta-type {
    flex: 1;

    overflow: hidden;

    white-space: nowrap;

    text-overflow: ellipsis;

    font-size: 0.68rem;
}


.product-card-meta b {
    flex: 0 0 auto;

    font-size: 0.67rem;
}


.product-card-image {
    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    height: 238px;

    padding:
        20px 24px 16px;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fafafa 100%
        );
}


.product-card-image img {
    width: 100%;

    height: 100%;

    object-fit: contain;

    transition:
        transform 0.45s ease;
}


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


.product-card-footer {
    min-height: 122px;

    display: flex;

    align-items: flex-end;

    padding:
        24px 19px 22px;

    background: var(--navy);

    color: var(--white);
}


.product-card-footer strong {
    min-height: auto;

    display: block;

    font-family: "Montserrat", sans-serif;

    font-size: 1.02rem;

    line-height: 1.15;

    letter-spacing: -0.02em;
}


.product-card-footer > span {
    display: none;
}


.product-card--fire .product-card-image {
    height: 268px;

    padding:
        24px 28px 18px;
}


.product-card--fire .product-card-image img {
    width: 100%;

    height: 100%;

    object-fit: contain;

    transform: scale(1.03);
}


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


.product-card--fire .product-card-footer {
    min-height: 148px;

    padding:
        24px 20px 26px;
}


.product-card--fire
.product-card-footer strong {
    font-size: 1.04rem;
}


/* =========================================================
   CARD DOTS
========================================================= */

.card-dots {
    position: absolute;

    top: 11px;

    right: 11px;

    z-index: 5;

    display: flex;

    gap: 3px;
}


.card-dot {
    width: 7px;

    height: 7px;

    border-radius: 50%;
}


.card-dot-eco {
    background: #31b75c;
}


.card-dot-bronz {
    background: #a16a40;
}


.card-dot-silver {
    background: #9da2a8;
}


.card-dot-gold {
    background: #d5a925;
}


.card-dot-platinum {
    background: #202d4c;
}


/* =========================================================
   ARROWS
========================================================= */

.slider-arrow {
    position: absolute;

    top: 50%;

    z-index: 10;

    transform: translateY(-50%);

    width: 46px;

    height: 46px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid #dfe3ea;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.96);

    color: var(--dark);

    cursor: pointer;

    box-shadow:
        0 10px 24px rgba(30, 40, 65, 0.09);

    transition:
        background var(--fast),
        border var(--fast),
        color var(--fast),
        transform var(--fast);
}


.slider-arrow:hover {
    background: var(--navy);

    border-color: var(--navy);

    color: var(--white);

    transform:
        translateY(-50%)
        scale(1.04);
}


.slider-arrow:disabled {
    opacity: 1;

    cursor: pointer;
}


.slider-arrow.prev {
    left: 14px;
}


.slider-arrow.next {
    right: 14px;
}


.slider-arrow svg {
    width: 19px;

    height: 19px;
}


/* =========================================================
   DOTS
========================================================= */

.slider-dots {
    min-height: 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    border-top:
        1px solid var(--gray-200);
}


.slider-dot {
    width: 7px;

    height: 7px;

    border: none;

    border-radius: 50%;

    background: #c7ccd8;

    padding: 0;

    cursor: pointer;

    transition:
        width var(--fast),
        background var(--fast);
}


.slider-dot.active {
    width: 22px;

    border-radius: 999px;

    background: var(--navy);
}


/* =========================================================
   PRODUCT IMAGE MODAL (UPDATED FOR ZOOM & AUTO-FIT)
========================================================= */

.product-modal {
    position: fixed;

    inset: 0;

    z-index: 2000;

    display: none;

    padding: 26px;
}


.product-modal.open {
    display: flex;

    align-items: center;

    justify-content: center;
}


.product-modal-backdrop {
    position: absolute;

    inset: 0;

    background:
        rgba(8, 12, 22, 0.85);

    backdrop-filter:
        blur(7px);

    -webkit-backdrop-filter:
        blur(7px);
}


.product-modal-dialog {
    position: relative;

    z-index: 1;

    /* Sadece resmin boyutu kadar yer kaplaması için auto yapıldı */
    width: auto;

    height: auto;
    
    min-width: 320px;

    max-width: 95vw;

    max-height: 95vh;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    background: #ffffff;

    border-radius: 20px;

    box-shadow:
        0 40px 120px
        rgba(0, 0, 0, 0.4);

    padding: 30px;
}


.product-modal-close {
    position: absolute;

    top: 15px;

    right: 15px;

    z-index: 10;

    width: 44px;

    height: 44px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid rgba(20, 25, 35, 0.08);

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.94);

    color: var(--dark);

    cursor: pointer;

    box-shadow:
        0 8px 24px
        rgba(0, 0, 0, 0.10);

    transition:
        background var(--fast),
        color var(--fast),
        transform var(--fast),
        border-color var(--fast);
}


.product-modal-close:hover {
    background: var(--navy);

    border-color: var(--navy);

    color: var(--white);

    transform: scale(1.04);
}


.product-modal-close svg {
    width: 19px;

    height: 19px;
}


.product-modal-image {
    width: 100%;

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 0;

    border-radius: 8px;

    background: transparent;
    
    overflow: hidden;
    
    cursor: zoom-in;
}


.product-modal-image img {
    width: auto;

    height: auto;

    max-width: 100%;

    /* Butona ve paddinglere yer açmak için */
    max-height: calc(90vh - 130px);

    object-fit: contain;
    
    transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
    
    transform-origin: center center;
    
    will-change: transform;
}


.product-modal-image.is-zoomed {
    cursor: zoom-out;
}


.product-modal-image.is-zoomed img {
    transform: scale(2.5);
}


.zoom-controls {
    margin-top: 20px;
    
    display: flex;
    
    justify-content: center;
    
    width: 100%;
}


.zoom-btn {
    display: inline-flex;
    
    align-items: center;
    
    gap: 8px;
    
    padding: 10px 24px;
    
    background: var(--navy);
    
    color: var(--white);
    
    border: none;
    
    border-radius: 8px;
    
    font-size: 0.9rem;
    
    font-weight: 700;
    
    cursor: pointer;
    
    transition: background var(--fast), transform var(--fast);
}


.zoom-btn:hover {
    background: var(--navy-dark);
    
    transform: translateY(-2px);
}


.zoom-btn svg {
    width: 18px;
    
    height: 18px;
}


/* =========================================================
   ABOUT
========================================================= */

.about-section {
    padding: 135px 0;

    background: var(--white);
}


.about-container {
    width: min(calc(100% - 72px), 1240px);

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        0.9fr 1.1fr;

    gap: 110px;

    align-items: start;
}


.section-eyebrow {
    display: block;

    margin-bottom: 12px;

    color: var(--orange-dark);

    font-size: 0.72rem;

    font-weight: 800;

    letter-spacing: 0.16em;
}


.about-intro h2,
.faq-heading h2,
.contact-heading h2 {
    font-family: "Montserrat", sans-serif;

    font-size:
        clamp(
            2.4rem,
            4.3vw,
            4.3rem
        );

    line-height: 1.02;

    letter-spacing: -0.05em;
}


.about-intro h2 span {
    color: var(--orange);
}


.about-image-wrap {
    width: 100%;

    margin-top: 32px;

    overflow: hidden;

    border-radius: 18px;

    background: #ececec;

    border:
        1px solid rgba(17, 17, 17, 0.06);

    box-shadow:
        0 18px 38px
        rgba(20, 28, 52, 0.10);
}


.about-image {
    width: 100%;

    aspect-ratio: 612 / 344;

    object-fit: cover;

    transition:
        transform 0.55s ease;
}


.about-image-wrap:hover
.about-image {
    transform: scale(1.025);
}


.about-rule {
    width: 72px;

    height: 4px;

    margin-top: 28px;

    background: var(--orange);
}


.about-content {
    max-width: 690px;
}


.about-content p {
    color: var(--gray-600);

    line-height: 1.75;

    font-size: 0.97rem;
}


.about-content .about-lead {
    margin-bottom: 18px;

    color: var(--dark);

    font-size: 1.18rem;

    font-weight: 500;
}


.about-principles {
    margin-top: 48px;

    border-top:
        1px solid var(--gray-200);
}


.about-principle {
    display: grid;

    grid-template-columns: 56px 1fr;

    gap: 22px;

    padding: 22px 0;

    border-bottom:
        1px solid var(--gray-200);
}


.about-principle-number {
    padding-top: 2px;

    color: var(--orange-dark);

    font-family: "Montserrat", sans-serif;

    font-size: 0.76rem;

    font-weight: 800;

    letter-spacing: 0.08em;
}


.about-principle h3 {
    margin-bottom: 7px;

    font-family: "Montserrat", sans-serif;

    font-size: 1rem;
}


.about-principle p {
    max-width: 560px;

    color: var(--gray-600);

    font-size: 0.88rem;

    line-height: 1.65;
}


/* =========================================================
   FAQ
========================================================= */

.faq-section {
    padding: 125px 0;

    background: var(--off-white);
}


.faq-container {
    width: min(calc(100% - 72px), 1000px);

    margin: 0 auto;
}


.faq-heading {
    margin-bottom: 45px;
}


.faq-list {
    border-top:
        1px solid var(--gray-200);
}


.faq-item {
    border-bottom:
        1px solid var(--gray-200);
}


.faq-question {
    width: 100%;

    padding: 23px 0;

    display: flex;

    align-items: center;

    justify-content: space-between;

    background: transparent;

    border: none;

    color: var(--dark);

    text-align: left;

    font-size: 1rem;

    font-weight: 700;

    cursor: pointer;
}


.faq-question svg {
    width: 18px;

    height: 18px;

    transition:
        transform var(--fast);
}


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


.faq-answer {
    max-height: 0;

    overflow: hidden;

    color: var(--gray-600);

    font-size: 0.92rem;

    line-height: 1.7;

    transition:
        max-height 0.35s ease,
        padding-bottom 0.35s ease;
}


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

    padding-bottom: 23px;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-section {
    padding: 125px 0;

    background: #181818;

    color: var(--white);
}


.contact-container {
    width: min(calc(100% - 72px), 1240px);

    margin: 0 auto;
}


.contact-heading {
    max-width: 680px;
}


.contact-heading .section-eyebrow {
    color: var(--orange);
}


.contact-heading h2 {
    color: var(--white);
}


.contact-heading p {
    margin-top: 18px;

    color:
        rgba(255, 255, 255, 0.62);

    line-height: 1.75;
}


.contact-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 14px;

    margin-top: 55px;
}


.contact-item {
    display: flex;

    align-items: center;

    gap: 14px;

    padding: 23px;

    border:
        1px solid rgba(255, 255, 255, 0.12);

    border-radius: 12px;

    background:
        rgba(255, 255, 255, 0.03);
}


.contact-icon,
.address-icon {
    width: 45px;

    height: 45px;

    flex: 0 0 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 10px;

    background:
        rgba(239, 149, 4, 0.12);

    color: var(--orange);
}


.contact-icon svg,
.address-icon svg {
    width: 19px;

    height: 19px;
}


.contact-item span,
.contact-address span {
    display: block;

    margin-bottom: 5px;

    color:
        rgba(255, 255, 255, 0.48);

    font-size: 0.71rem;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.08em;
}


.contact-item a {
    font-size: 0.92rem;

    font-weight: 700;
}


.contact-bottom {
    display: grid;

    grid-template-columns:
        1.25fr 0.75fr;

    gap: 14px;

    margin-top: 14px;
}


.contact-map {
    min-height: 360px;

    overflow: hidden;

    border-radius: 12px;

    border:
        1px solid rgba(255, 255, 255, 0.1);
}


.contact-address {
    display: flex;

    align-items: flex-start;

    gap: 15px;

    padding: 28px;

    border-radius: 12px;

    border:
        1px solid rgba(255, 255, 255, 0.1);

    background:
        rgba(255, 255, 255, 0.03);
}


.contact-address p {
    margin-bottom: 15px;

    color:
        rgba(255, 255, 255, 0.62);

    line-height: 1.7;

    font-size: 0.9rem;
}


/* =========================================================
   WHATSAPP
========================================================= */

.whatsapp-floating {
    position: fixed;

    right: 25px;

    bottom: 25px;

    z-index: 900;

    width: 58px;

    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        3px solid rgba(255, 255, 255, 0.95);

    border-radius: 50%;

    background: #25d366;

    color: var(--white);

    box-shadow:
        0 14px 34px
        rgba(37, 211, 102, 0.32);

    transition:
        transform var(--fast),
        box-shadow var(--fast);
}


.whatsapp-floating:hover {
    transform: translateY(-4px);

    box-shadow:
        0 18px 36px
        rgba(37, 211, 102, 0.42);
}


.whatsapp-floating svg {
    width: 28px;

    height: 28px;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    background:
        linear-gradient(
            180deg,
            #111522 0%,
            #0d1019 100%
        );

    color:
        rgba(255, 255, 255, 0.62);
}


.footer-inner {
    width:
        min(
            calc(100% - 72px),
            1240px
        );

    margin: 0 auto;

    padding: 58px 0 24px;

    display: grid;

    grid-template-columns:
        minmax(0, 1.4fr)
        minmax(150px, 0.7fr)
        minmax(180px, 0.8fr);

    gap: 54px;

    border-top:
        1px solid rgba(255, 255, 255, 0.08);

    font-size: 0.8rem;
}


.footer-brand img {
    width: 165px;

    height: auto;

    margin-bottom: 18px;
}


.footer-brand p {
    max-width: 360px;

    color:
        rgba(255, 255, 255, 0.48);

    font-size: 0.84rem;

    line-height: 1.75;
}


.footer-column {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 11px;
}


.footer-column-title {
    margin-bottom: 6px;

    color:
        rgba(255, 255, 255, 0.9);

    font-size: 0.72rem;

    font-weight: 800;

    letter-spacing: 0.12em;

    text-transform: uppercase;
}


.footer-links {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 10px;
}


.footer-links a,
.footer-contact a {
    color:
        rgba(255, 255, 255, 0.56);

    font-size: 0.82rem;

    transition:
        color var(--fast),
        transform var(--fast);
}


.footer-links a:hover,
.footer-contact a:hover {
    color: var(--orange);

    transform: translateX(2px);
}


.footer-contact a {
    color:
        rgba(255, 255, 255, 0.68);
}


.footer-bottom {
    grid-column: 1 / -1;

    margin-top: 8px;

    padding-top: 20px;

    border-top:
        1px solid rgba(255, 255, 255, 0.08);

    display: flex;

    align-items: center;

    justify-content: space-between;

    flex-wrap: wrap;

    gap: 10px;

    color:
        rgba(255, 255, 255, 0.36);

    font-size: 0.72rem;
}


.footer-credit-separator {
    opacity: 0.45;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1180px) {

    .desktop-nav ul {
        gap: 22px;
    }


    .explorer-header {
        align-items: flex-start;

        flex-direction: column;
    }


    .filter-group {
        justify-content: flex-start;

        grid-template-columns:
            repeat(2, max-content);
    }


    .product-card {
        flex-basis:
            calc((100% - 36px) / 3);
    }


    .about-container {
        grid-template-columns: 1fr;

        gap: 55px;
    }


    .hero-content {
        width:
            min(
                590px,
                55vw
            );
    }


    .footer-inner {
        grid-template-columns:
            1.4fr 0.8fr;
    }


    .footer-contact {
        grid-column: 2;
    }
}


@media (max-width: 900px) {

    .nav-container,
    .hero-container,
    .product-explorer-container,
    .about-container,
    .faq-container,
    .contact-container,
    .footer-inner {
        width:
            min(
                calc(100% - 40px),
                var(--container)
            );
    }


    .desktop-nav,
    .nav-cta {
        display: none;
    }


    .mobile-menu-button {
        display: flex;
    }


    .brand-logo img {
        width: 155px;
    }


    .hero-section {
        min-height: 680px;
    }


    .hero-container {
        gap: 36px;
    }


    .hero-showcase {
        width:
            min(
                37vw,
                355px
            );
    }


    .hero-content {
        width: 55vw;
    }


    .slider-container {
        padding-left: 55px;

        padding-right: 55px;
    }


    .product-card {
        flex-basis:
            calc(
                (100% - 18px) / 2
            );
    }


    .product-card-image {
        height: 242px;
    }


    .product-card--fire
    .product-card-image {
        height: 255px;
    }

    .product-modal-dialog {
        width: auto;

        height: auto;
        
        min-width: 280px;

        padding: 24px;
    }

    .product-modal-image img {
        max-height: calc(85vh - 120px);
    }

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


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


    .footer-inner {
        grid-template-columns:
            1fr 1fr;

        gap: 38px 30px;
    }


    .footer-brand {
        grid-column: 1 / -1;
    }


    .footer-contact {
        grid-column: auto;
    }
}


@media (max-width: 560px) {

    .nav-container,
    .hero-container,
    .product-explorer-container,
    .about-container,
    .faq-container,
    .contact-container,
    .footer-inner {
        width:
            calc(100% - 28px);
    }


    .hero-section {
        height: auto;

        min-height: 0;

        padding:
            calc(var(--header-height) + 64px)
            0
            46px;
    }


    .hero-content {
        width: 100%;

        padding-top: 0;
    }


    .hero-title {
        font-size:
            clamp(
                2.85rem,
                13vw,
                4.5rem
            );
    }


    .hero-description {
        max-width: 100%;

        font-size: 0.93rem;
    }


    .hero-container {
        height: auto;

        flex-direction: column;

        align-items: stretch;

        gap: 38px;
    }


    .hero-showcase {
        width:
            min(
                100%,
                390px
            );

        margin: 0 auto;
    }


    .hero-scroll-indicator {
        display: none;
    }


    .product-explorer-section,
    .about-section,
    .faq-section,
    .contact-section {
        padding: 90px 0;
    }


    .explorer-heading h2 {
        font-size: 2.65rem;
    }


    .filter-group {
        width: 100%;

        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
    }


    .filter-btn {
        min-height: 45px;
    }


    .catalog-status {
        padding:
            12px 15px;

        gap: 10px;

        align-items: flex-start;

        flex-direction: column;
    }


    .slider-container {
        padding:
            28px 38px;
    }


    .product-card {
        flex-basis: 100%;
    }


    .product-card-image,
    .product-card--fire
    .product-card-image {
        height: 282px;
    }


    .product-card-footer,
    .product-card--fire
    .product-card-footer {
        min-height: 116px;
    }


    .slider-arrow {
        width: 35px;

        height: 35px;
    }


    .slider-arrow.prev {
        left: 6px;
    }


    .slider-arrow.next {
        right: 6px;
    }


    .product-modal {
        padding: 10px;
    }


    .product-modal-dialog {
        padding: 18px;

        border-radius: 16px;
    }


    .product-modal-image {
        border-radius: 12px;
    }


    .product-modal-close {
        top: 10px;

        right: 10px;

        width: 40px;

        height: 40px;
    }


    .about-image-wrap {
        margin-top: 25px;

        border-radius: 14px;
    }


    .about-rule {
        margin-top: 23px;
    }


    .about-principle {
        grid-template-columns:
            42px 1fr;

        gap: 14px;
    }


    .contact-item {
        padding: 18px;
    }


    .contact-address {
        padding: 22px;
    }


    .footer-inner {
        grid-template-columns: 1fr;

        gap: 28px;

        padding:
            48px
            0
            22px;
    }


    .footer-brand,
    .footer-contact {
        grid-column: auto;
    }


    .footer-bottom {
        justify-content: flex-start;
    }


    .whatsapp-floating {
        width: 54px;

        height: 54px;

        right: 16px;

        bottom: 16px;
    }
}