:root {
    --oolee-bg: #f7f1ec;
    --oolee-panel: #fff5d9;
    --oolee-panel-deep: #d8c691;
    --oolee-text: #25313b;
    --oolee-muted: rgba(37, 49, 59, 0.72);
    --oolee-card: #ffffff;
    --oolee-shadow: 0 24px 60px rgba(79, 73, 45, 0.14);
    --oolee-radius: 28px;
    --oolee-blue: #5991cc;
    --oolee-blue-deep: #2f5f96;
    --oolee-green: #62a87c;
    --oolee-green-deep: #2f6f4a;
    --oolee-yellow: #fec240;
    --oolee-peach: #f9a978;
    --oolee-orange: #f58345;
    --oolee-orange-deep: #a74316;
    --oolee-border: #dde3e8;
    --oolee-cloud: #f7f8fa;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Noto Sans", "Segoe UI", sans-serif;
    color: var(--oolee-text);
    background: var(--oolee-bg);
}

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

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

.oolee-container {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
}

.oolee-site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(10px);
    background: rgba(247, 241, 236, 0.88);
    border-bottom: 1px solid rgba(37, 49, 59, 0.08);
}

.oolee-site-header__inner,
.oolee-site-footer__inner,
.oolee-cta-strip__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.oolee-site-header__inner {
    padding: 18px 0;
}

.oolee-logo {
    display: inline-flex;
    align-items: center;
}

.oolee-logo img {
    width: auto;
    height: 52px;
}

.oolee-primary-nav {
    display: flex;
    gap: 18px;
    align-items: center;
    font-size: 0.98rem;
}

.oolee-primary-nav a {
    padding: 10px 14px;
    border-radius: 999px;
    transition: background 0.2s ease;
}

.oolee-primary-nav a:hover {
    background: rgba(255, 255, 255, 0.72);
}

.oolee-hero {
    position: relative;
    min-height: 85vh;
    overflow: clip;
    padding: 34px 0 76px;
}

.oolee-hero__backdrop {
    position: absolute;
    inset: 18px;
    border-radius: 40px;
    background:
        radial-gradient(circle at top right, rgba(89, 145, 204, 0.18), rgba(89, 145, 204, 0) 34%),
        radial-gradient(circle at bottom left, rgba(245, 131, 69, 0.14), rgba(245, 131, 69, 0) 30%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0)),
        linear-gradient(135deg, #f7f1d8, #d9c992);
    transform: perspective(1800px) rotateX(1.4deg) rotateY(-3deg);
    box-shadow: var(--oolee-shadow);
}

.oolee-hero__inner {
    position: relative;
    z-index: 1;
    min-height: calc(85vh - 128px);
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    align-items: center;
    gap: 40px;
    padding: 76px 0 92px;
}

.oolee-hero__content {
    max-width: 720px;
    color: var(--oolee-text);
    padding-bottom: 0;
}

.oolee-hero__eyebrow,
.oolee-section-heading__eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--oolee-green-deep);
}

.oolee-hero__title {
    margin: 14px 0 16px;
    font-size: clamp(3rem, 8vw, 6.2rem);
    line-height: 0.94;
    letter-spacing: -0.06em;
}

.oolee-hero__subtitle {
    max-width: 460px;
    color: var(--oolee-text);
    font-size: 1rem;
    line-height: 1.625;
}

.oolee-hero__actions,
.oolee-modal__buttons,
.oolee-modal__secondary-links {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

.oolee-hero__actions {
    margin-top: 26px;
}

.oolee-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.oolee-button:hover {
    transform: translateY(-1px);
}

.oolee-button--primary {
    background: var(--oolee-blue-deep);
    color: #ffffff;
}

.oolee-button--secondary {
    background: var(--oolee-green-deep);
    color: #f9fff8;
}

.oolee-button--ghost {
    background: rgba(255, 255, 255, 0.42);
    border-color: rgba(37, 49, 59, 0.12);
    color: var(--oolee-text);
}

.oolee-button--action {
    background: var(--oolee-orange-deep);
    color: #ffffff;
}

.oolee-button--text {
    background: transparent;
    color: var(--oolee-muted);
    padding-left: 0;
}

.oolee-hero__floating-card {
    position: absolute;
    left: 24px;
    bottom: 18px;
    width: min(360px, calc(100% - 48px));
    background: rgba(255, 252, 242, 0.95);
    color: var(--oolee-text);
    border-radius: 26px;
    padding: 18px;
    box-shadow: var(--oolee-shadow);
    border: 1px solid rgba(37, 49, 59, 0.06);
}

.oolee-hero__floating-media {
    position: relative;
    margin-bottom: 14px;
    min-height: 120px;
}

.oolee-hero__floating-card img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 18px;
    margin: 0;
    width: 122px;
}

.oolee-hero__floating-overlay {
    position: absolute;
    right: -6px;
    bottom: -8px;
    width: 138px;
    aspect-ratio: auto;
    object-fit: contain;
    filter: drop-shadow(0 18px 18px rgba(20, 18, 12, 0.16));
}

.oolee-hero__floating-copy h2 {
    margin: 0 0 8px;
    font-size: 1.2rem;
    line-height: 1.3;
    text-align: left;
}

.oolee-hero__floating-copy p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--oolee-muted);
    text-align: left;
}

.oolee-hero__hint {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    color: rgba(37, 49, 59, 0.75);
    font-size: 0.9rem;
}

.oolee-hero__visual {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: end;
    justify-content: center;
}

.oolee-hero__visual-glow {
    position: absolute;
    inset: 16% 8% 10%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0) 68%);
}

.oolee-hero__model-image {
    position: relative;
    z-index: 1;
    max-height: 620px;
    object-fit: contain;
    filter: drop-shadow(0 34px 26px rgba(35, 31, 17, 0.24));
}

.oolee-hero__shape-stack {
    position: relative;
    width: min(420px, 72vw);
    aspect-ratio: 1 / 1;
}

.oolee-hero__shape {
    position: absolute;
    border-radius: 36px;
    box-shadow: 0 18px 38px rgba(37, 49, 59, 0.14);
}

.oolee-hero__shape--blue {
    inset: 10% 38% 34% 4%;
    background: linear-gradient(135deg, var(--oolee-blue), #7da8d8);
    transform: rotate(-9deg);
}

.oolee-hero__shape--green {
    inset: 38% 12% 8% 26%;
    background: linear-gradient(135deg, var(--oolee-green), #8ac19e);
    transform: rotate(11deg);
}

.oolee-hero__shape--peach {
    inset: 18% 4% 24% 48%;
    background: linear-gradient(135deg, var(--oolee-peach), var(--oolee-orange));
    transform: rotate(8deg);
}

.oolee-hero--no-model .oolee-hero__inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.8fr);
}

.oolee-products {
    padding: 78px 0 40px;
}

.oolee-section-heading {
    margin-bottom: 28px;
}

.oolee-section-heading h2 {
    margin: 8px 0 0;
    font-size: clamp(2.2rem, 4vw, 3.25rem);
    line-height: 1.18;
    letter-spacing: -0.04em;
}

.oolee-product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.oolee-product-card {
    background: var(--oolee-card);
    border-radius: var(--oolee-radius);
    overflow: hidden;
    box-shadow: 0 12px 24px rgba(29, 27, 18, 0.07);
    border: 1px solid rgba(37, 49, 59, 0.06);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.oolee-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 36px rgba(29, 27, 18, 0.11);
}

.oolee-product-card__image-wrap {
    position: relative;
    padding: 14px;
}

.oolee-product-card__image-wrap img {
    width: 100%;
    aspect-ratio: 1 / 1.12;
    object-fit: cover;
    border-radius: 22px;
    background: var(--oolee-cloud);
}

.oolee-product-card__badge,
.oolee-product-card__price {
    position: absolute;
    top: 24px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    font-size: 0.9rem;
    font-weight: 700;
}

.oolee-product-card__badge {
    left: 24px;
    color: var(--oolee-orange-deep);
}

.oolee-product-card__price {
    right: 24px;
    color: var(--oolee-blue-deep);
}

.oolee-product-card__body {
    padding: 4px 18px 18px;
}

.oolee-product-card__body h3 {
    margin: 0 0 12px;
    font-size: 1.25rem;
    line-height: 1.35;
    font-weight: 600;
}

.oolee-product-card__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
}

.oolee-product-card__social {
    color: var(--oolee-muted);
    font-size: 0.93rem;
}

.oolee-expand-button {
    border: 0;
    background: var(--oolee-blue-deep);
    color: #ffffff;
    border-radius: 999px;
    padding: 10px 16px;
    font-weight: 700;
    cursor: pointer;
}

.oolee-cta-strip {
    padding: 28px 0 70px;
}

.oolee-cta-strip .oolee-button--ghost {
    color: var(--oolee-text);
    border-color: rgba(37, 49, 59, 0.14);
    background: rgba(255, 255, 255, 0.55);
}

.oolee-site-footer {
    padding: 34px 0 50px;
    border-top: 1px solid rgba(24, 22, 18, 0.08);
}

.oolee-site-footer__logo {
    width: auto;
    height: 62px;
    margin-bottom: 10px;
}

.oolee-site-footer__brand h2 {
    margin: 0 0 8px;
}

.oolee-site-footer__brand p {
    margin: 0;
    color: var(--oolee-muted);
    max-width: 240px;
}

.oolee-site-footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    justify-content: flex-end;
}

.oolee-site-footer__links a {
    color: var(--oolee-muted);
}

.oolee-modal[hidden] {
    display: none;
}

.oolee-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
}

.oolee-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 14, 11, 0.45);
}

.oolee-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - 24px));
    max-height: calc(100vh - 24px);
    margin: 12px auto;
    background: #fff;
    border-radius: 28px;
    overflow: auto;
    box-shadow: var(--oolee-shadow);
}

.oolee-modal__close-top {
    position: absolute;
    top: 14px;
    left: 14px;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    background: rgba(24, 22, 18, 0.08);
    cursor: pointer;
    font-size: 1.6rem;
}

.oolee-modal__content {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr;
    gap: 28px;
    padding: 56px 28px 28px;
}

.oolee-modal__gallery {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 16px;
}

.oolee-modal__thumbs {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.oolee-modal__thumbs button {
    border: 1px solid rgba(24, 22, 18, 0.12);
    background: transparent;
    padding: 0;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
}

.oolee-modal__thumbs img,
.oolee-modal__main-image-wrap img {
    width: 100%;
    display: block;
}

.oolee-modal__main-image-wrap {
    background: #faf7ee;
    border-radius: 22px;
    overflow: hidden;
}

.oolee-modal__details h2 {
    margin: 0 0 10px;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    letter-spacing: -0.04em;
}

.oolee-modal__price {
    margin-bottom: 12px;
    font-size: 1.2rem;
    font-weight: 700;
}

.oolee-modal__description {
    margin-bottom: 18px;
    color: var(--oolee-muted);
    line-height: 1.7;
}

.oolee-modal__field {
    margin-bottom: 18px;
}

.oolee-modal__field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.oolee-modal__field select {
    width: 100%;
    padding: 14px;
    border-radius: 14px;
    border: 1px solid rgba(24, 22, 18, 0.18);
}

.oolee-accordion {
    margin: 24px 0 8px;
}

.oolee-accordion details {
    border-top: 1px solid rgba(24, 22, 18, 0.1);
    padding: 16px 0;
}

.oolee-accordion summary {
    cursor: pointer;
    font-weight: 700;
}

.oolee-accordion details div {
    margin-top: 12px;
    color: var(--oolee-muted);
    line-height: 1.7;
}

.oolee-default-page {
    padding: 40px 0 80px;
}

@media (max-width: 980px) {
    .oolee-product-grid,
    .oolee-modal__content {
        grid-template-columns: 1fr;
    }

    .oolee-hero__inner {
        grid-template-columns: 1fr;
        gap: 18px;
        padding-top: 54px;
        padding-bottom: 96px;
    }

    .oolee-hero__content {
        padding-bottom: 140px;
        max-width: 100%;
    }

    .oolee-hero__visual {
        order: -1;
        min-height: 220px;
    }

    .oolee-hero__model-image {
        max-height: 360px;
    }

    .oolee-hero--no-model .oolee-hero__visual {
        min-height: 160px;
    }

    .oolee-modal__gallery {
        grid-template-columns: 1fr;
    }

    .oolee-modal__thumbs {
        order: 2;
        flex-direction: row;
        overflow-x: auto;
    }
}

@media (max-width: 720px) {
    .oolee-site-header__inner,
    .oolee-site-footer__inner,
    .oolee-cta-strip__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .oolee-primary-nav {
        flex-wrap: wrap;
    }

    .oolee-hero {
        padding-bottom: 88px;
    }

    .oolee-hero__backdrop {
        inset: 10px;
        transform: none;
        border-radius: 28px;
    }

    .oolee-hero__floating-card {
        left: 50%;
        right: auto;
        bottom: 14px;
        transform: translateX(-50%);
        width: min(360px, calc(100% - 36px));
    }

    .oolee-hero__floating-media {
        min-height: 96px;
    }

    .oolee-hero__floating-card img {
        width: 108px;
    }

    .oolee-hero__floating-overlay {
        width: 98px;
        right: 0;
        bottom: -4px;
    }

    .oolee-product-grid {
        grid-template-columns: 1fr;
    }

    .oolee-site-footer__links {
        justify-content: flex-start;
    }
}

@media (max-width: 540px) {
    .oolee-site-header__inner {
        padding: 14px 0;
    }

    .oolee-logo img {
        height: 42px;
    }

    .oolee-primary-nav {
        gap: 6px;
        font-size: 0.92rem;
    }

    .oolee-primary-nav a {
        padding: 8px 10px;
    }

    .oolee-hero__title {
        font-size: clamp(2.8rem, 14vw, 4rem);
    }

    .oolee-hero__subtitle {
        font-size: 1rem;
    }

    .oolee-hero__content {
        padding-bottom: 170px;
    }

    .oolee-hero__floating-card {
        padding: 16px;
    }

    .oolee-hero__floating-card img {
        width: 96px;
    }

    .oolee-hero__hint {
        font-size: 0.82rem;
    }
}
