/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* GLOBAL */
:root {
    --accent: linear-gradient(45deg, #FF7300, #E5C500);
    --accent-solid: #E5C500;
    --yellow: #E5C500;
    --text-muted: #aaa;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
}

/* BACKGROUND LOGO */
body::before {
    content: "";
    position: fixed;
    top: 50%;
    left: 50%;

    width: 700px;
    height: 700px;

    background: url("slike/TrizajnLogoSajt.png") no-repeat center;
    background-size: contain;

    opacity: 0.08;
    pointer-events: none;
    z-index: 0;

    transform: translate(-50%, -50%);

    filter:
        drop-shadow(0 0 20px rgba(255,115,0,0.5))
        drop-shadow(0 0 40px rgba(229,197,0,0.4))
        drop-shadow(0 0 80px rgba(255,115,0,0.3));

    animation: logoGlow 10s ease-in-out infinite;
}

body.home-page::before {
    opacity: 0.035;
}

body.catalog-page::before {
    opacity: 0.025;
}

/* COMMON LAYERS */
header,
.trizajn-home,
.products-editorial,
footer {
    position: relative;
    z-index: 1;
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 20px 40px;

    background: rgba(0,0,0,0.9);
    border-bottom: 1px solid rgba(255,115,0,0.15);
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}

.logo-img {
    height: 57px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    margin-top: 6px;

    color: var(--yellow);
    font-size: 18px;
    letter-spacing: 1px;
    opacity: 0.75;
}

/* NAVIGATION */
nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

nav a {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
    font-weight: 500;

    transition: 0.2s ease;
}

nav a:hover {
    color: var(--accent-solid);
    opacity: 1;
}

/* LANGUAGE BUTTON */
.lang-btn {
    padding: 8px 14px;

    border-radius: 999px;
    border: 1px solid rgba(229,197,0,0.35);

    background: rgba(255,255,255,0.035);
    color: #fff;

    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;

    cursor: pointer;

    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease,
        color 0.22s ease;
}

.lang-btn:hover {
    transform: translateY(-2px);
    color: var(--yellow);
    border-color: rgba(255,115,0,0.8);

    box-shadow:
        0 0 18px rgba(255,115,0,0.28),
        0 0 38px rgba(229,197,0,0.12);
}

.lang-btn:active {
    transform: scale(0.96);
}

/* BUTTONS */
.btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 15px;

    border-radius: 20px;
    border: none;

    background: var(--accent);
    color: #000;

    text-decoration: none;
    font-weight: 600;
    cursor: pointer;

    transition: 0.2s ease;
}

.btn:hover {
    transform: scale(1.04);
}

.ghost-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 18px;

    border-radius: 22px;
    border: 1px solid rgba(229,197,0,0.35);

    background: rgba(255,255,255,0.03);
    color: #fff;
    text-decoration: none;

    transition: 0.25s ease;
}

.ghost-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(255,115,0,0.8);
    box-shadow: 0 0 20px rgba(255,115,0,0.25);
}

/* PRICE */
.price {
    font-size: 20px;
    font-weight: 600;

    background: var(--accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 30px;
    color: #4d4d4d;
}

/* HOME PAGE */
.trizajn-home {
    min-height: calc(100vh - 120px);
    overflow: hidden;
}

.trizajn-home::before,
.trizajn-home::after {
    content: "";
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.trizajn-home::before {
    width: 650px;
    height: 650px;
    right: -180px;
    top: 40px;

    background:
        radial-gradient(circle, rgba(255,115,0,0.35), transparent 60%),
        radial-gradient(circle, rgba(229,197,0,0.2), transparent 65%);

    filter: blur(45px);
}

.trizajn-home::after {
    width: 500px;
    height: 500px;
    left: -160px;
    bottom: -160px;

    background:
        radial-gradient(circle, rgba(229,197,0,0.18), transparent 65%),
        radial-gradient(circle, rgba(255,115,0,0.18), transparent 70%);

    filter: blur(55px);
}

.trizajn-hero {
    min-height: calc(100vh - 120px);
    max-width: 1400px;
    margin: 0 auto;
    padding: 70px 70px 40px;

    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 40px;

    position: relative;
    z-index: 1;
}

.hero-copy {
    max-width: 560px;
}

.eyebrow {
    margin-bottom: 25px;

    color: var(--yellow);
    font-size: 12px;
    letter-spacing: 4px;
    opacity: 0.9;
}

.hero-copy h1 {
    margin-bottom: 25px;

    font-size: clamp(46px, 6vw, 86px);
    line-height: 1.03;
    font-weight: 600;
}

.hero-copy h1 span {
    display: block;

    background: var(--accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    max-width: 520px;
    margin-bottom: 30px;

    color: #b8b8b8;
    font-size: 17px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-bottom: 45px;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.hero-stats div {
    min-width: 80px;
}

.hero-stats strong {
    display: block;
    margin-bottom: 4px;

    color: #fff;
    font-size: 22px;
}

.hero-stats span {
    color: #999;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* HOME 3D VISUAL */
.hero-visual {
    min-height: 620px;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
    isolation: isolate;
}

.model-glow-shell {
    width: min(680px, 100%);
    height: 620px;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
    isolation: isolate;
}

.model-glow-shell::before {
    content: "";
    position: absolute;

    width: 560px;
    height: 560px;
    border-radius: 50%;

    background:
        radial-gradient(circle at 35% 35%, rgba(229,197,0,0.65), transparent 28%),
        radial-gradient(circle at 65% 45%, rgba(255,115,0,0.75), transparent 38%),
        radial-gradient(circle at 50% 70%, rgba(255,180,0,0.4), transparent 45%),
        radial-gradient(circle, rgba(255,115,0,0.25), transparent 70%);

    filter: blur(42px);
    opacity: 0.85;
    z-index: -2;

    animation: modelGlowPulse 6s ease-in-out infinite;
}

.model-glow-shell::after {
    content: "";
    position: absolute;

    width: 430px;
    height: 430px;
    border-radius: 50%;

    border: 1px solid rgba(229,197,0,0.22);

    box-shadow:
        0 0 35px rgba(255,115,0,0.35),
        inset 0 0 40px rgba(229,197,0,0.12);

    z-index: -1;

    animation: slowRotate 18s linear infinite;
}

.glow-model {
    width: 100%;
    height: 620px;

    background: transparent;

    filter:
        drop-shadow(0 0 18px rgba(255,115,0,0.35))
        drop-shadow(0 0 35px rgba(229,197,0,0.25));
}

/* HOME FLOATING CARDS */
.floating-card {
    position: absolute;
    min-width: 160px;
    padding: 16px 18px;

    border-radius: 18px;
    border: 1px solid rgba(229,197,0,0.18);

    background: rgba(10,10,10,0.62);
    backdrop-filter: blur(18px);

    box-shadow:
        0 0 25px rgba(255,115,0,0.12),
        inset 0 0 18px rgba(255,255,255,0.03);

    z-index: 4;
}

.floating-card span {
    display: block;
    margin-bottom: 7px;

    color: var(--yellow);
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.floating-card strong {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}

.card-top {
    top: 95px;
    right: 40px;
}

.card-middle {
    left: 20px;
    top: 260px;
}

.card-bottom {
    right: 95px;
    bottom: 105px;
}

/* HOME ORBIT LINES */
.orbit-line {
    position: absolute;
    border: 1px solid rgba(229,197,0,0.13);
    border-radius: 50%;
    z-index: -1;
}

.orbit-one {
    width: 620px;
    height: 300px;
    transform: rotate(-18deg);
}

.orbit-two {
    width: 470px;
    height: 220px;
    transform: rotate(28deg);
    border-color: rgba(255,115,0,0.16);
}

/* HOME MINI INFO */
.mini-info {
    max-width: 900px;
    margin: 0 auto 70px;
    padding: 0 30px;

    position: relative;
    z-index: 1;

    text-align: center;
}

.mini-info p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.8;
}

/* PRODUCT PAGE BACKGROUND */
.catalog-page {
    background:
        radial-gradient(circle at 20% 10%, rgba(255,115,0,0.13), transparent 32%),
        radial-gradient(circle at 80% 30%, rgba(229,197,0,0.08), transparent 30%),
        #020202;
}

.products-editorial {
    overflow: visible;
}

/* PRODUCT HERO */
/* PRODUCT OFFERS PAGE */
.product-offers-page {
    max-width: 1500px;
    margin: 0 auto;
    padding: 70px 50px 90px;

    overflow: visible;
}

/* PRODUCT OFFERS INTRO */
.offers-intro {
    max-width: 900px;
    margin-bottom: 55px;
}

.offers-intro h1 {
    margin-bottom: 25px;

    font-size: clamp(48px, 7vw, 112px);
    line-height: 0.88;
    letter-spacing: -5px;
    font-weight: 700;
}

.offers-intro h1 span {
    display: block;

    background: var(--accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.offers-intro p:not(.catalog-label) {
    max-width: 760px;

    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.8;
}

/* PRODUCT OFFER ROWS */
.offers-list {
    display: flex;
    flex-direction: column;
    gap: 38px;
}

.offer-row {
    min-height: 650px;
    padding: 34px;

    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    align-items: center;
    gap: 34px;

    position: relative;
    overflow: hidden;

    border-radius: 38px;
    border: 1px solid rgba(229,197,0,0.15);

    background:
        radial-gradient(circle at 18% 45%, rgba(255,115,0,0.13), transparent 38%),
        radial-gradient(circle at 82% 35%, rgba(229,197,0,0.08), transparent 34%),
        linear-gradient(180deg, rgba(255,255,255,0.052), rgba(255,255,255,0.014)),
        rgba(0,0,0,0.42);

    box-shadow:
        0 0 26px rgba(255,115,0,0.08),
        inset 0 0 35px rgba(255,255,255,0.018);

    isolation: isolate;

    transition:
        transform 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease;
}

.offer-row:hover {
    transform: translateY(-6px);
    border-color: rgba(255,115,0,0.42);

    box-shadow:
        0 0 28px rgba(255,115,0,0.22),
        0 0 90px rgba(229,197,0,0.08),
        inset 0 0 35px rgba(255,255,255,0.02);
}

.bundle-offer {
    border-color: rgba(229,197,0,0.28);

    background:
        radial-gradient(circle at 18% 45%, rgba(255,115,0,0.18), transparent 40%),
        radial-gradient(circle at 82% 35%, rgba(229,197,0,0.14), transparent 36%),
        linear-gradient(180deg, rgba(255,255,255,0.065), rgba(255,255,255,0.016)),
        rgba(0,0,0,0.48);
}

/* OFFER VISUAL */
.offer-visual {
    min-height: 570px;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
    overflow: visible;
}

.offer-glow {
    position: absolute;

    width: 560px;
    height: 610px;
    border-radius: 50%;

    background:
        radial-gradient(circle at 48% 35%, rgba(255,115,0,0.30), transparent 38%),
        radial-gradient(circle at 54% 62%, rgba(229,197,0,0.18), transparent 52%),
        radial-gradient(circle, rgba(255,115,0,0.10), transparent 74%);

    filter: blur(58px);
    opacity: 0.85;

    z-index: -1;
    pointer-events: none;

    animation: showcaseGlowPulse 7s ease-in-out infinite;
}

.offer-3d-card {
    width: min(850px, 125%);
    height: 570px;
    margin-left: -90px;

    position: relative;
    overflow: visible;
    z-index: 3;

    border: none;
    outline: none;
    background: transparent;
}

.offer-3d-label {
    position: absolute;
    top: 24px;
    left: 80px;
    right: 80px;
    z-index: 5;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;

    pointer-events: none;
}

.offer-3d-label span {
    color: var(--yellow);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.offer-3d-label small {
    color: #9a9a9a;
    font-size: 11px;
}

.offer-glb-model {
    width: 100%;
    height: 100%;

    position: relative;
    z-index: 4;

    border: none;
    outline: none;
    background: transparent;

    --poster-color: transparent;
    --progress-bar-color: transparent;
    --progress-mask: transparent;

    filter:
        drop-shadow(0 0 18px rgba(255,115,0,0.32))
        drop-shadow(0 0 38px rgba(229,197,0,0.16));
}

.offer-glb-model:focus,
.offer-glb-model:focus-visible,
.offer-glb-model:active,
model-viewer:focus,
model-viewer:focus-visible,
model-viewer:active {
    border: none;
    outline: none;
}

/* OFFER TEXT */
.offer-copy {
    position: relative;
    z-index: 4;
}

.offer-kicker {
    margin-bottom: 12px;

    color: var(--yellow);
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.offer-copy h2 {
    margin-bottom: 18px;

    font-size: clamp(42px, 5.6vw, 92px);
    line-height: 0.9;
    letter-spacing: -4px;
    font-weight: 700;
}

.offer-price {
    display: inline-block;
    margin-bottom: 20px;

    font-size: clamp(26px, 3vw, 42px);
}

.offer-copy p:not(.offer-kicker):not(.price) {
    max-width: 520px;
    margin-bottom: 18px;

    color: var(--text-muted);
    line-height: 1.75;
}

/* PRODUCT TAGS */
.product-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;

    margin: 22px 0 20px;
}

.product-highlights span {
    padding: 8px 12px;

    border-radius: 999px;
    border: 1px solid rgba(229,197,0,0.16);

    background: rgba(255,255,255,0.045);
    color: #d8d8d8;

    font-size: 12px;
}

/* PRODUCT INFO GRID */
.product-info-grid {
    max-width: 470px;
    margin: 0 0 24px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.product-info-grid div {
    padding: 14px 15px;

    border-radius: 18px;
    border: 1px solid rgba(229,197,0,0.14);

    background:
        linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015)),
        rgba(0,0,0,0.32);

    box-shadow:
        inset 0 0 18px rgba(255,255,255,0.022),
        0 0 18px rgba(255,115,0,0.06);
}

.product-info-grid strong {
    display: block;
    margin-bottom: 6px;

    color: var(--yellow);
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.product-info-grid span {
    color: #fff;
    font-size: 13px;
}

/* ORDER NOTE */
.offer-order-note {
    max-width: 850px;
    margin: 48px auto 0;
    padding: 28px 30px;

    border-radius: 28px;
    border: 1px solid rgba(229,197,0,0.16);

    background:
        linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.012)),
        rgba(0,0,0,0.38);

    text-align: center;
}

.offer-order-note p {
    color: #8e8e8e;
    font-size: 13px;
    line-height: 1.7;
}

.offer-order-note p + p {
    margin-top: 12px;
}

/* ANIMATIONS */
@keyframes logoGlow {
    0%, 100% {
        opacity: 0.12;
        filter:
            drop-shadow(0 0 15px rgba(255,115,0,0.4))
            drop-shadow(0 0 30px rgba(229,197,0,0.3));
    }

    50% {
        opacity: 0.17;
        filter:
            drop-shadow(0 0 30px rgba(255,115,0,0.8))
            drop-shadow(0 0 60px rgba(229,197,0,0.7))
            drop-shadow(0 0 120px rgba(255,115,0,0.5));
    }
}

@keyframes modelGlowPulse {
    0%, 100% {
        transform: scale(0.95);
        opacity: 0.65;
    }

    50% {
        transform: scale(1.08);
        opacity: 0.95;
    }
}

@keyframes slowRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes showcaseGlowPulse {
    0%, 100% {
        opacity: 0.72;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.06);
    }
}

/* RESPONSIVE */
@media (max-width: 1050px) {
    .product-offers-page {
        padding: 55px 30px 80px;
    }

    .offers-intro {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .offers-intro p:not(.catalog-label) {
        margin-left: auto;
        margin-right: auto;
    }

    .offer-row {
        grid-template-columns: 1fr;
        text-align: center;

        min-height: auto;
        padding: 30px;
        gap: 10px;
    }

    .offer-visual {
        min-height: 560px;
    }

    .offer-3d-card {
        width: min(760px, 100vw);
        height: 560px;
        margin-left: 0;
    }

    .offer-copy p:not(.offer-kicker):not(.price),
    .product-info-grid {
        margin-left: auto;
        margin-right: auto;
    }

    .product-highlights {
        justify-content: center;
    }
}

@media (max-width: 1000px) {
    .trizajn-hero {
        grid-template-columns: 1fr;
        text-align: center;

        padding: 55px 25px 30px;
    }

    .hero-copy {
        max-width: 760px;
        margin: 0 auto;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions,
    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        min-height: 520px;
    }

    .model-glow-shell,
    .glow-model {
        height: 520px;
    }

    .card-middle {
        left: 5px;
    }

    .card-top {
        right: 5px;
    }
}

@media (max-width: 650px) {
    header {
        flex-direction: column;
        gap: 14px;

        padding: 18px 20px;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px;
    }

    .lang-btn {
        padding: 7px 13px;
        font-size: 12px;
    }

    .trizajn-hero {
        padding-top: 40px;
    }

    .hero-copy h1 {
        font-size: 42px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-stats {
        gap: 22px;
        justify-content: center;
    }

    .hero-visual {
        min-height: 420px;
    }

    .model-glow-shell,
    .glow-model {
        height: 410px;
    }

    .model-glow-shell::before {
        width: 360px;
        height: 360px;
    }

    .model-glow-shell::after {
        width: 300px;
        height: 300px;
    }

    .floating-card {
        display: none;
    }

    .orbit-one,
    .orbit-two {
        width: 340px;
        height: 170px;
    }

    .product-offers-page {
        padding: 45px 20px 70px;
    }

    .offers-intro h1 {
        letter-spacing: -3px;
    }

    .offer-row {
        padding: 20px;
        border-radius: 28px;
    }

    .offer-visual {
        min-height: 430px;
    }

    .offer-3d-card {
        width: 112vw;
        height: 430px;
    }

    .offer-3d-label {
        top: 6px;
        left: 22px;
        right: 22px;

        flex-direction: column;
        justify-content: center;
        gap: 4px;

        text-align: center;
    }

    .offer-copy h2 {
        letter-spacing: -2px;
    }

    .product-info-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
    }

    .offer-order-note {
        padding: 22px 20px;
        border-radius: 22px;
    }
}

/* ACCESSIBILITY */
@media (prefers-reduced-motion: reduce) {
    body::before,
    .model-glow-shell::before,
    .model-glow-shell::after,
    .offer-glow {
        animation: none;
    }

    .offer-row,
    .product-3d-card,
    .btn,
    .ghost-btn,
    .lang-btn {
        transition: none;
    }

    .offer-row:hover,
    .product-3d-card:hover,
    .btn:hover,
    .ghost-btn:hover,
    .lang-btn:hover {
        transform: none;
    }
}







/* FINAL RESPONSIVE FIXES */

/* Fix clipped headings on all screen sizes */
.offers-intro h1,
.offer-copy h2 {
    line-height: 1.04;
    overflow: visible;
    padding-bottom: 0.08em;
}

.offers-intro h1 {
    letter-spacing: -3px;
}

.offer-copy h2 {
    letter-spacing: -3px;
}

.offer-price,
.price {
    line-height: 1.25;
    padding-bottom: 0.05em;
}

/* Prevent 3D sections from being cut too aggressively */
.offer-row {
    overflow: visible;
}

.offer-visual {
    overflow: visible;
}

.offer-3d-card {
    max-width: 100%;
}

.offer-glb-model {
    max-width: 100%;
}

/* TABLET */
@media (max-width: 1050px) {
    .product-offers-page {
        padding: 55px 28px 80px;
    }

    .offers-intro {
        max-width: 820px;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 42px;
    }

    .offers-intro h1 {
        font-size: clamp(44px, 8vw, 78px);
        line-height: 1.05;
        letter-spacing: -3px;
    }

    .offers-intro p:not(.catalog-label) {
        max-width: 680px;
        margin-left: auto;
        margin-right: auto;
        font-size: 15px;
    }

    .offer-row {
        grid-template-columns: 1fr;
        text-align: center;

        min-height: auto;
        padding: 30px;
        gap: 8px;

        overflow: hidden;
    }

    .offer-visual {
        min-height: 500px;
        width: 100%;
        overflow: hidden;
    }

    .offer-3d-card {
        width: 100%;
        max-width: 720px;
        height: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .offer-3d-label {
        top: 18px;
        left: 45px;
        right: 45px;
    }

    .offer-copy {
        max-width: 680px;
        margin-left: auto;
        margin-right: auto;
    }

    .offer-copy h2 {
        font-size: clamp(42px, 8vw, 72px);
        line-height: 1.06;
        letter-spacing: -3px;
    }

    .offer-copy p:not(.offer-kicker):not(.price),
    .product-info-grid {
        margin-left: auto;
        margin-right: auto;
    }

    .product-highlights {
        justify-content: center;
    }
}

/* SMALL TABLET / LARGE PHONE */
@media (max-width: 768px) {
    .product-offers-page {
        padding: 45px 22px 70px;
    }

    .offers-intro h1 {
        font-size: clamp(40px, 10vw, 62px);
        line-height: 1.08;
        letter-spacing: -2px;
    }

    .offer-row {
        padding: 24px;
        border-radius: 30px;
    }

    .offer-visual {
        min-height: 430px;
    }

    .offer-3d-card {
        height: 430px;
        max-width: 620px;
    }

    .offer-copy h2 {
        font-size: clamp(38px, 9vw, 58px);
        line-height: 1.08;
        letter-spacing: -2px;
    }

    .offer-price {
        font-size: 30px;
    }

    .product-info-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
    }
}

/* PHONE */
@media (max-width: 650px) {
    .product-offers-page {
        padding: 38px 16px 65px;
    }

    .offers-intro {
        margin-bottom: 32px;
    }

    .offers-intro h1 {
        font-size: 40px;
        line-height: 1.1;
        letter-spacing: -1.5px;
        padding-bottom: 0.12em;
    }

    .offers-intro p:not(.catalog-label) {
        font-size: 14px;
        line-height: 1.75;
    }

    .catalog-label {
        font-size: 10px;
        letter-spacing: 2.5px;
    }

    .offers-list {
        gap: 26px;
    }

    .offer-row {
        padding: 18px;
        border-radius: 26px;
        gap: 0;
        overflow: hidden;
    }

    .offer-visual {
        min-height: 350px;
        margin-left: -8px;
        margin-right: -8px;
    }

    .offer-glow {
        width: 330px;
        height: 380px;
        filter: blur(42px);
    }

    .offer-3d-card {
        width: 100%;
        height: 350px;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .offer-3d-label {
        top: 6px;
        left: 12px;
        right: 12px;

        flex-direction: column;
        gap: 3px;

        text-align: center;
    }

    .offer-3d-label span {
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .offer-3d-label small {
        font-size: 10px;
    }

    .offer-copy {
        padding-top: 4px;
    }

    .offer-kicker {
        font-size: 10px;
        letter-spacing: 2px;
        margin-bottom: 8px;
    }

    .offer-copy h2 {
        font-size: 36px;
        line-height: 1.12;
        letter-spacing: -1px;
        padding-bottom: 0.08em;
        margin-bottom: 12px;
    }

    .offer-price {
        font-size: 27px;
        line-height: 1.25;
        margin-bottom: 14px;
    }

    .offer-copy p:not(.offer-kicker):not(.price) {
        font-size: 13px;
        line-height: 1.7;
        margin-bottom: 15px;
    }

    .product-highlights {
        gap: 8px;
        margin: 18px 0 18px;
    }

    .product-highlights span {
        font-size: 11px;
        padding: 7px 10px;
    }

    .product-info-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        gap: 9px;
    }

    .product-info-grid div {
        padding: 12px 13px;
        border-radius: 15px;
    }

    .btn {
        padding: 10px 14px;
        font-size: 13px;
        border-radius: 18px;
    }

    .offer-order-note {
        margin-top: 34px;
        padding: 20px 16px;
        border-radius: 22px;
    }

    .offer-order-note p {
        font-size: 12px;
    }
}

/* VERY SMALL PHONES */
@media (max-width: 390px) {
    .offers-intro h1 {
        font-size: 35px;
    }

    .offer-copy h2 {
        font-size: 32px;
    }

    .offer-price {
        font-size: 24px;
    }

    .offer-visual {
        min-height: 315px;
    }

    .offer-3d-card {
        height: 315px;
    }

    .product-offers-page {
        padding-left: 12px;
        padding-right: 12px;
    }

    .offer-row {
        padding: 15px;
    }
}











/* PRODUCT IMAGE PREVIEW — REPLACEMENT FOR GLB MODEL VIEWER */

.offer-image-card {
    width: min(850px, 125%);
    height: 570px;
    margin-left: -90px;

    position: relative;
    overflow: hidden;
    z-index: 3;

    border-radius: 34px;
    border: 1px solid rgba(229,197,0,0.16);

    background:
        radial-gradient(circle at 50% 32%, rgba(255,115,0,0.18), transparent 42%),
        radial-gradient(circle at 50% 70%, rgba(229,197,0,0.11), transparent 50%),
        linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.015)),
        rgba(0,0,0,0.38);

    box-shadow:
        0 0 35px rgba(255,115,0,0.11),
        inset 0 0 28px rgba(255,255,255,0.025);

    isolation: isolate;
}

.offer-image-card::before {
    content: "";
    position: absolute;
    inset: 18px;

    border-radius: 28px;
    border: 1px solid rgba(229,197,0,0.10);

    pointer-events: none;
    z-index: 2;
}

.offer-image-card::after {
    content: "";
    position: absolute;
    inset: auto -20% -35% -20%;

    height: 45%;

    background:
        radial-gradient(circle at 50% 0%, rgba(255,115,0,0.26), transparent 62%),
        radial-gradient(circle at 50% 10%, rgba(229,197,0,0.16), transparent 58%);

    filter: blur(35px);
    pointer-events: none;
    z-index: 1;
}

.offer-image-label {
    position: absolute;
    top: 24px;
    left: 80px;
    right: 80px;
    z-index: 5;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;

    pointer-events: none;
}

.offer-image-label span {
    color: var(--yellow);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.offer-image-label small {
    color: #9a9a9a;
    font-size: 11px;
}

.offer-product-img {
    width: 100%;
    height: 100%;

    display: block;
    position: relative;
    z-index: 3;

    object-fit: contain;
    object-position: center;

    padding: 72px 46px 42px;

    border: none;
    outline: none;

    filter:
        drop-shadow(0 0 18px rgba(255,115,0,0.30))
        drop-shadow(0 0 35px rgba(229,197,0,0.14));

    transform: scale(1);
    transition:
        transform 0.35s ease,
        filter 0.35s ease;
}

.offer-row:hover .offer-product-img {
    transform: scale(1.035);

    filter:
        drop-shadow(0 0 22px rgba(255,115,0,0.38))
        drop-shadow(0 0 42px rgba(229,197,0,0.18));
}

.offer-product-img:focus,
.offer-product-img:focus-visible,
.offer-product-img:active {
    border: none;
    outline: none;
}

/* TABLET IMAGE FIX */
@media (max-width: 1050px) {
    .offer-image-card {
        width: 100%;
        max-width: 720px;
        height: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .offer-product-img {
        padding: 72px 38px 40px;
    }
}

/* SMALL TABLET IMAGE FIX */
@media (max-width: 768px) {
    .offer-image-card {
        height: 430px;
        max-width: 620px;
    }

    .offer-product-img {
        padding: 68px 30px 34px;
    }
}

/* PHONE IMAGE FIX */
@media (max-width: 650px) {
    .offer-image-card {
        width: 100%;
        height: 350px;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;

        border-radius: 24px;
    }

    .offer-image-card::before {
        inset: 10px;
        border-radius: 20px;
    }

    .offer-image-label {
        top: 10px;
        left: 12px;
        right: 12px;

        flex-direction: column;
        gap: 3px;

        text-align: center;
    }

    .offer-image-label span {
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .offer-image-label small {
        font-size: 10px;
    }

    .offer-product-img {
        padding: 56px 18px 24px;
    }
}

/* VERY SMALL PHONES IMAGE FIX */
@media (max-width: 390px) {
    .offer-image-card {
        height: 315px;
    }

    .offer-product-img {
        padding: 52px 14px 22px;
    }
}