/* ============================================================
   ZMARZLIK — Drutex × B. Zmarzlik Edycja Limitowana
   v2 — all corrections applied
   ============================================================ */

:root {
    --gold-dark: #C8976B;
    --gold-light: #D3AF7D;
    --gold-btn-1: #C98A33;
    --gold-btn-2: #D2AB76;
    --navy: #0B152E;
    --black: #000000;
    --gradient-dark: linear-gradient(180deg, var(--navy) 0%, var(--black) 100%);
    --gradient-gold: linear-gradient(90deg, var(--gold-btn-1) 0%, var(--gold-btn-2) 100%);
    --font-h: 'Oswald', sans-serif;
    --font-sub: 'Montserrat', sans-serif;
    --font-b: 'Open Sans', sans-serif;
    --cw: 1320px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: #000;
    color: #fff;
    font-family: var(--font-b);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.container {
    width: 100%;
    max-width: var(--cw);
    margin: 0 auto;
    padding: 0 60px;
}

/* ─── SKOŚNY BUTTON ─── */
.btn-zmarzlik {
    display: inline-block;
    font-family: var(--font-sub);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: #000;
    background: var(--gradient-gold);
    padding: 13px 40px;
    /* skos z lewej i prawej */
    clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
    max-width: 250px;
    text-align: center;
}

.btn-zmarzlik::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
    transform: skewX(-30deg) translateX(-120%);
    transition: transform 0.6s ease;
}

.btn-zmarzlik:hover {
    transform: translateY(-3px);
    filter: brightness(1.08);
    box-shadow: 0 8px 28px rgba(201, 138, 51, 0.4);
}

.btn-zmarzlik:hover::after {
    transform: skewX(-30deg) translateX(220%);
}

.btn-outline {
    background: transparent;
    color: var(--gold-light);
    box-shadow: inset 0 0 0 1.5px var(--gold-dark);
    clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
}

.btn-outline:hover {
    background: var(--gradient-gold);
    color: #000;
    box-shadow: none;
}

/* ═══════════════════════════════
   HERO
═══════════════════════════════ */
.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(11, 21, 46, 0.78) 0%, rgba(5, 10, 22, 0.55) 60%, rgba(0, 0, 0, 0.75) 100%);
    z-index: 1;
}

.hero-stars {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background-image:
        radial-gradient(1.5px 1.5px at 10% 7%, rgba(255, 255, 255, .8) 0%, transparent 100%),
        radial-gradient(1px 1px at 28% 12%, rgba(255, 255, 255, .5) 0%, transparent 100%),
        radial-gradient(2px 2px at 55% 5%, rgba(255, 255, 255, .65) 0%, transparent 100%),
        radial-gradient(1px 1px at 72% 9%, rgba(255, 255, 255, .4) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 88% 4%, rgba(255, 255, 255, .7) 0%, transparent 100%),
        radial-gradient(1px 1px at 40% 3%, rgba(255, 255, 255, .5) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 93% 16%, rgba(255, 255, 255, .35) 0%, transparent 100%);
}

/* tekst hero — u góry na środku */
.hero-top {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 10rem 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.hero-eyebrow {
    font-family: var(--font-sub);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold-light);
}

.hero-title {
    font-family: var(--font-h);
    font-size: 65px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1.0;
    text-shadow: 0 4px 30px rgba(0, 0, 0, .5);
}

.title-subtitle {
    font-family: var(--font-h);
    font-size: 35px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.3;
    display: block;
    letter-spacing: 15px;
}

/* Zmarzlik — prawo, wyrównany do dołu sekcji */
.hero-athlete {
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: 0;
    height: 90%;
    display: flex;
    align-items: flex-end;
}

.hero-athlete img {
    height: 88vh;
    max-height: 820px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(-20px 10px 40px rgba(0, 0, 0, .55));
}

/* logo drutex/95 dolny lewy róg */
.hero-bottom-logo {
    position: absolute;
    z-index: 3;
    bottom: 48px;
    left: 60px;
}

.hero-bottom-logo img {
    height: 48px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: .85;
}

/* scroll cue */
.scroll-cue {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
}

.scroll-cue span {
    display: block;
    width: 2px;
    height: 120px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), var(--gold-light));
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0;
        transform: scaleY(.5) translateY(-10px);
    }

    50% {
        opacity: 1;
        transform: scaleY(1) translateY(0);
    }
}

/* ═══════════════════════════════
   ONE DARK GRADIENT — manifesto + logo divider
═══════════════════════════════ */
.dark-gradient-wrap {
    background: var(--gradient-dark);
    overflow-x: hidden;
}

/* ─── MANIFESTO ─── */
.manifesto-section {
    padding: 100px 0 0;
}

.manifesto-container {
    display: grid;
    grid-template-columns: 1fr 40px 1fr;
    gap: 40px;
    align-items: center;
}

.manifesto-label {
    font-family: var(--font-sub);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 18px;
}

.manifesto-title {
    font-family: var(--font-h);
    font-size: 48px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1.3;
    color: #fff;
}

.manifesto-divider {
    display: flex;
    justify-content: center;
}

.manifesto-text {
    font-family: var(--font-b);
    font-weight: 300;
    font-size: 18px;
    color: rgba(255, 255, 255, .8);
    line-height: 1.75;
    margin-bottom: 36px;
}

/* ─── LOGO DIVIDER z liniami ─── */
.logo-divider-section {
    padding: 5% 0 1%;

}


.logo-divider-inner {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
}

.logo-divider-img {
    height: 150px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: .88;
    flex-shrink: 0;
}

.logo-line {
    flex: 1;
    height: auto;
    max-height: 90px;
    opacity: .9;
    filter: brightness(0) invert(1) sepia(1) saturate(3) hue-rotate(5deg);
}

/* ═══════════════════════════════
   SHARED PRODUCT STYLES
═══════════════════════════════ */
.product-section {
    padding: 100px 0;
}

.product-dark {
    background: var(--gradient-dark);
}

.product-light {
    background: #fff;
}

.product-label {
    font-family: var(--font-sub);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 12px;
}

.product-label--light {
    color: var(--gold-light);
}

.product-label--dark {
    color: var(--gold-btn-1);
}

.product-title {
    font-family: var(--font-h);
    font-size: 65px;
    font-weight: 500;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 20px;
}

.product-title--dark {
    color: #111;
}

.product-desc {
    font-family: var(--font-b);
    font-size: 17px;
    color: rgba(255, 255, 255, .65);
    line-height: 1.75;
    margin-bottom: 28px;
    max-width: 460px;
}

.product-desc--dark {
    color: #444;
}

.product-spec-list {
    list-style: none;
    margin-bottom: 32px;
}

.product-spec-list li {
    display: flex;
    gap: 16px;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    font-family: var(--font-b);
    font-size: 15px;
}

.product-spec-list--dark li {
    border-bottom-color: rgba(0, 0, 0, .1);
}

.spec-key {
    color: var(--gold-dark);
    font-weight: 600;
    min-width: 80px;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: .08em;
    padding-top: 2px;
}

.spec-key--dark {
    color: var(--gold-btn-1);
}

.spec-val {
    color: rgba(255, 255, 255, .65);
}

.spec-val--dark {
    color: #555;
}

/* ═══════════════════════════════
   DRZWI D-ART
═══════════════════════════════ */

.product-section.product-dark {
    padding: 0;
    overflow: hidden;
}

.product-dart-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 12%;
    display: grid;
    grid-template-columns: 40% 1fr;
    gap: 0;
    align-items: stretch;
    min-height: 700px;
    position: relative;
}

.dart-img-col {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 0;
    margin-bottom: -40px;
}

.dart-door-img {
    height: 100%;
    max-height: 760px;
    width: auto;
    object-fit: contain;
    object-position: left bottom;
    filter: drop-shadow(20px 0 60px rgba(0, 0, 0, .8));
    display: block;
}


.dart-info-col {
    padding: 5% 12%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.dart-details {
    margin-top: 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0;
    position: relative;
}

.dart-detail-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 8px;
    position: relative;
}

/* czytnik (1) — wyżej, bardziej w prawo */
.dart-detail-row:nth-child(1) {
    margin-top: 0px;
    z-index: 3;
}

/* led (2) — niżej, w lewo (overlap z czytnikiem) */
.dart-detail-row:nth-child(2) {
    margin-top: 60px;
    margin-left: -20px;
    z-index: 2;
}

/* frez (3) — wyżej z powrotem, jak czytnik */
.dart-detail-row:nth-child(3) {
    margin-top: 0px;
    margin-left: -20px;
    z-index: 3;
}

.dart-detail-row img {
    width: 100%;
    max-width: 350px;
    height: 220px;
    object-fit: contain;
    object-position: left center;
}

.dart-detail-label {
    font-family: var(--font-sub);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 3px;
    text-align: left;
    margin-top: 8px;
}

.dart-detail-label small {
    font-weight: 400;
    color: rgba(255, 255, 255, .5);
    font-size: 13px;
    text-transform: none;
    letter-spacing: 0;
}

/* ═══════════════════════════════
   BRAMA GARAŻOWA — skośne linie, full right
═══════════════════════════════ */
.gate-wrap {
    position: relative;
    margin: 0;
    padding: 0;
        overflow: hidden;
}

.gate-wrap::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    height: 1.5px;
    background: var(--gold-dark);
    transform-origin: left center;
    transform: rotate(-1.5deg);
    z-index: 5;
    pointer-events: none;
}

.iglo-section::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 1.5px;
    background: var(--gold-dark);
    transform-origin: left center;
    transform: rotate(-1.1deg);
    z-index: 5;
    pointer-events: none;
}

.gate-wrap::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    height: 1.5px;
    background: var(--gold-dark);
    transform-origin: left center;
    transform: rotate(-1.1deg);
    z-index: 5;
    pointer-events: none;
}

.product-dart-container::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    height: 1.5px;
    background: var(--gold-dark);
    transform-origin: left center;
    transform: rotate(-1.5deg);
    z-index: 5;
    pointer-events: none;
}

.product-gate-section {
    position: relative;
    background: #0D1830;
    padding: 0;
    clip-path: polygon(0 50px,
            100% 0,
            100% calc(100% - 50px),
            0 100%);
}


.gate-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: stretch;
    padding: 0;
}


.gate-content {
    display: flex;
    align-items: center;
    flex: 1 1 auto;
    padding-left: max(60px, calc((100vw - var(--cw)) / 2 + 60px));
    padding-right: 80px;
    padding-top: 60px;
    padding-bottom: 60px;
    box-sizing: border-box;
}

.gate-info {
    max-width: 440px;
    width: 100%;
}

.gate-img-wrap {
    flex: 0 0 50%;
    position: relative;
    overflow: hidden;
    clip-path: polygon(60px 0%, 100% 0%, 100% 100%, 0% 100%);
}

.gate-img-wrap img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 0;
}

/* ═══════════════════════════════
   IGLO EDGE — tekst lewo, obrazy prawo full
═══════════════════════════════ */

.iglo-section {
    padding: 3% 0 0;
    position: relative;
}


.iglo-layout {
    display: flex;
    align-items: stretch;
    min-height: 700px;
    width: 100%;
}

.iglo-text-col {
    flex: 0 0 50%;
    display: flex;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 80px;

    padding-left: max(60px, calc((100vw - var(--cw)) / 2 + 60px));
    padding-right: 60px;
    box-sizing: border-box;
}

.iglo-text-inner {
    max-width: 480px;
    width: 100%;
}


.iglo-img-col {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}


.iglo-img-full {
    flex: 1;
    overflow: hidden;
    border-bottom: 2px solid #f2f0ed;
}

.iglo-img-full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.iglo-img-pair {
    flex: 1;
    display: flex;
    gap: 15px;
}

.iglo-img-pair img {
    flex: 1;
    width: 0;
    height: 100%;
    object-fit: cover;
    display: block;
}

.iglo-img-pair img:first-child {
    border-right: 1px solid #f2f0ed;
}

/* ═══════════════════════════════
   AKTUALNOŚCI — bez bg, bez zaokrągleń
═══════════════════════════════ */
.news-section {
    background: #fff;
    padding: 100px 0 120px;
    overflow: hidden;
    background-image: url(img/bakcground-news.png);
    background-size: cover;
    background-position: center top;
}

.news-eyebrow {
    font-family: var(--font-sub);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold-btn-1);
    margin-bottom: 12px;
}

.section-title-zm {
    font-family: var(--font-h);
    font-size: 65px;
    font-weight: 500;
    text-transform: uppercase;
    color: #111;
    line-height: 1.0;
}

.news-header {
    margin-bottom: 60px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.news-card {
    background: #000;
    border-radius: 0;
    overflow: hidden;
    transition: transform .4s ease, box-shadow .4s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .07);
    position: relative;
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .22);
}

.news-card-img {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform .5s ease;
    position: relative;
}

.news-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            transparent 30%,
            rgba(0, 0, 0, 0.55) 70%,
            rgba(0, 0, 0, 0.82) 100%);
    pointer-events: none;
}

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

.news-card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 18px 18px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    background: transparent;
    z-index: 2;
}

.news-card-body p {
    font-family: var(--font-b);
    font-size: 13px;
    color: #fff;
    line-height: 1.6;
    flex: 1;
    text-shadow: 0 1px 4px rgba(0, 0, 0, .4);
}

.news-arrow-btn {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    text-decoration: none;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    transition: background .3s ease, transform .3s ease;
}

.news-arrow-btn:hover {
    background: var(--gradient-gold);
    color: #fff;
}

/* ═══════════════════════════════
   REVEAL ANIMATIONS
═══════════════════════════════ */
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: opacity .8s cubic-bezier(.16, 1, .3, 1), transform .8s cubic-bezier(.16, 1, .3, 1);
}

.reveal-up {
    transform: translateY(50px);
}

.reveal-left {
    transform: translateX(-60px);
}

.reveal-right {
    transform: translateX(60px);
}

.revealed {
    opacity: 1 !important;
    transform: translate(0) !important;
}

.delay-1 {
    transition-delay: .12s;
}

.delay-2 {
    transition-delay: .24s;
}

.delay-3 {
    transition-delay: .36s;
}

.delay-4 {
    transition-delay: .48s;
}

/* ═══════════════════════════════
   RESPONSIVE
═══════════════════════════════ */
@media(max-width:1250px) {

    .hero-title,
    .product-title,
    .section-title-zm {
        font-size: 52px;
    }

    .gate-content {
        padding-top: 120px;
        padding-bottom: 120px;
    }

    .manifesto-title {
        font-size: 35px;
        line-height: 1.5;
    }

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

    .product-dart-container {
        padding: 0 3%;
    }

    .dart-info-col {
        padding: 6%;
    }

    .dart-img-col {
        align-items: flex-start;
    }

    .dart-details {
        margin-top: 20px;
    }

    .dart-detail-row img {
        height: 150px;
    }

    .dart-door-img {
        max-height: 960px;
    }

    .dart-detail-label small {
        font-size: 12px;
    }
}

@media(max-width:1024px) {
    .hero-title {
        font-size: 42px;
    }

    .manifesto-section {
        padding: 50px 0 0;
    }

    .dart-info-col {
        display: block;
        text-align: center;
    }

    .dart-img-col {
        margin-bottom: 20px;
    }

    .product-desc {
        max-width: 100%;
    }

    .hero-athlete img {
        height: 60vh;
    }

    .manifesto-container,
    .product-dart-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .manifesto-divider {
        display: none;
    }

    .gate-inner {
        flex-direction: column;
    }

    .gate-content,
    .gate-img-wrap {
        flex: none;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding-left: 20px;
    }

    .gate-img-wrap {
        clip-path: none;
        min-height: 300px;
    }

    .iglo-layout {
        flex-direction: column;
    }

    .iglo-text-col,
    .iglo-img-col {
        flex: none;
        width: 100%;
    }

    .iglo-img-col {
        min-height: 400px;
        padding: 0;
    }

    .iglo-img-col img:first-child,
    .iglo-img-col img:nth-child(2),
    .iglo-img-col img:nth-child(3) {
        min-height: 200px;
    }

    .dart-img-col {
        margin-left: 0;
    }

    .dart-door-img {
        max-height: 400px;
    }

    .dart-details {
        grid-template-columns: 1fr 1fr;
    }

    .dart-detail-row:nth-child(2) {
        margin-top: 30px;
        margin-left: -10px;
    }

    .dart-detail-row:nth-child(3) {
        margin-left: -10px;
    }

    .product-dart-container {
        min-height: 300px;
    }
}

@media(max-width:768px) {
    
    .dart-door-img {
        max-height: 100%;
        object-fit: cover;
        width: 320px;
        object-position: top center;
    }
    
        .gate-content, .gate-img-wrap {
        flex: none;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding-left: 0;
    }
    
    .news-header {
        text-align: center;
    }
    
    .product-label {
        letter-spacing: .2em;
    }
    
    .dart-details {
        grid-template-columns: 1fr;
    }
    
    .dart-detail-label {
        font-size: 13px;
    }
    
    .dart-detail-row {
    align-items: center;
    }
    
    .container {
        padding: 0 25px;
    }
    
    
    .gate-info {
        padding: 50px 0;
    }
    
    .hero-section {
    min-height: 100vh;
    }

    .hero-title,
    .product-title,
    .section-title-zm {
        font-size: 38px;
    }
    
    .logo-divider-img {
            height: 80px;
    }
    
    .manifesto-text, .product-desc {
    font-size: 16px;
    }

    .manifesto-title {
        font-size: 35px;
                line-height: 1.2;
    }

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

    .product-gate-section {
        padding: 50px 0 0;
    }

    .logo-divider-inner {
        padding: 0 20px;
    }

    .hero-bottom-logo {
        left: 20px;
        bottom: 24px;
    }

    .product-dart-container {
        padding: 0 20px;
    }
    
    .hero-top {
          padding: 5rem 2rem 0;  
    }
    
    .iglo-text-col {
        padding: 30px 20px;
    }
    
    .iglo-layout {
    min-height: auto;
    }
    
    .news-card-img {
        height: 340px;
    }
    .dart-detail-row:nth-child(2) {
        margin-top: 0;
        margin-left: 0;
    }
}

@media(max-width:558px) {
    
    .hero-athlete img {
        height: 50vh;
    }
    
    .hero-top {
        padding: 150px 10px 0;
    }
    
        .hero-title {
        font-size: 48px;
    }
    
    .hero-eyebrow {
        font-size: 14px;
    }
    .hero-bg {
    background-position: bottom left;
    }
        .dart-detail-row img {
        height: 180px;
    }
        .dart-detail-row:nth-child(3) {
        margin-left: 0;
    }
    
        .dart-door-img {
        max-height: 500px;
        object-fit: contain;
        margin-left: 30px;
    }
}