/* ========== Reset & base ========== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #0d0608;
    color: #f5e9ec;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

:root {
    --burgundy-900: #4a0f1f;
    --burgundy-800: #5d1428;
    --burgundy-700: #7a1832;
    --burgundy-600: #971e3f;
    --burgundy-500: #b8294e;
    --pink-accent: #e8244c;
    --gold: #d4a86a;
    --cream: #f5e9ec;
    --dark: #0d0608;
    --dark-2: #1a0a0e;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== Promo bar ========== */
.promo-bar {
    background: linear-gradient(90deg, var(--burgundy-700), var(--burgundy-500), var(--burgundy-700));
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 16px;
    text-align: center;
}
.promo-bar a {
    color: #fff;
    text-decoration: underline;
    margin-left: 8px;
    font-weight: 600;
}

/* ========== Header ========== */
.header {
    background: var(--dark);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.header__inner {
    display: flex;
    align-items: center;
    gap: 20px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.logo__mark {
    width: 40px;
    height: 40px;
    display: block;
}
.logo__mark svg { width: 100%; height: 100%; }
.logo__text {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.5px;
}
.catalog-btn {
    background: var(--pink-accent);
    color: #fff;
    padding: 10px 20px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s, background 0.2s;
}
.catalog-btn:hover {
    background: #c01f40;
    transform: translateY(-1px);
}
.search {
    flex: 1;
    background: #1f1216;
    border-radius: 999px;
    padding: 12px 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 540px;
    margin: 0 auto;
}
.search input {
    background: none;
    border: none;
    outline: none;
    color: #fff;
    flex: 1;
    font-size: 15px;
    font-family: inherit;
}
.search input::placeholder { color: #888; }
.header__actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-left: auto;
}
.delivery-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    font-size: 12px;
    text-align: right;
    margin-right: 4px;
}
.delivery-info__time { color: #888; }
.delivery-info__address { color: #fff; font-weight: 600; }
.icon-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #1f1216;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
}
.icon-btn:hover { background: #2a181e; transform: translateY(-1px); }
.icon-btn--cart { background: var(--pink-accent); }
.icon-btn--cart:hover { background: #c01f40; }

/* ========== Buttons ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    font-family: inherit;
    text-align: center;
}
.btn--primary {
    background: var(--pink-accent);
    color: #fff;
    box-shadow: 0 8px 24px rgba(232,36,76,0.35);
}
.btn--primary:hover {
    background: #c01f40;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(232,36,76,0.45);
}
.btn--ghost {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
}
.btn--ghost:hover { background: rgba(255,255,255,0.15); }
.btn--small {
    padding: 8px 18px;
    font-size: 14px;
}
.btn--full { width: 100%; }

/* ========== Hero ========== */
.hero { padding: 32px 0 16px; background: var(--dark); }
.hero__card {
    background: linear-gradient(135deg, var(--burgundy-900) 0%, var(--burgundy-700) 50%, var(--burgundy-800) 100%);
    border-radius: 32px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    min-height: 560px;
    position: relative;
}
.hero__card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212,168,106,0.15), transparent 70%);
    pointer-events: none;
}
.hero__content {
    padding: 70px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}
.hero__eyebrow {
    display: inline-block;
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.hero__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    color: #fff;
    line-height: 1.05;
    margin: 0 0 24px;
    letter-spacing: -1.5px;
}
.hero__title span {
    color: var(--gold);
    font-style: italic;
    font-weight: 600;
}
.hero__subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    max-width: 520px;
    margin: 0 0 36px;
}
.hero__buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.hero__stats {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}
.stat {
    display: flex;
    flex-direction: column;
}
.stat strong {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #fff;
    line-height: 1;
}
.stat span {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin-top: 4px;
}
.hero__image {
    position: relative;
    overflow: hidden;
}
.hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero__image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(74,15,31,0.4), transparent 30%);
}

/* ========== Marquee ========== */
.marquee {
    background: var(--pink-accent);
    color: #fff;
    overflow: hidden;
    padding: 14px 0;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
}
.marquee__track {
    display: flex;
    gap: 40px;
    white-space: nowrap;
    animation: scroll 30s linear infinite;
}
@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ========== Sections ========== */
.section { padding: 100px 0; background: var(--dark); }
.section--dark { background: var(--dark-2); }
.section__head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.section__eyebrow {
    display: inline-block;
    color: var(--pink-accent);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.section__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin: 0 0 20px;
    letter-spacing: -1px;
}
.section__lead {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    margin: 0;
}

/* ========== Categories ========== */
.categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 280px 280px;
    gap: 20px;
}
.category-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    transition: transform 0.4s;
    grid-column: span 1;
}
.category-card--lg { grid-column: span 2; }
.category-card:hover { transform: translateY(-4px); }
.category-card__overlay {
    position: relative;
    padding: 32px;
    background: linear-gradient(180deg, transparent, rgba(13,6,8,0.95));
    width: 100%;
    color: #fff;
}
.category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13,6,8,0.1) 0%, rgba(13,6,8,0.85) 100%);
    transition: background 0.3s;
}
.category-card:hover::before {
    background: linear-gradient(180deg, rgba(74,15,31,0.3) 0%, rgba(13,6,8,0.9) 100%);
}
.category-card__overlay { z-index: 1; }
.category-card__tag {
    display: inline-block;
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.category-card__overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 8px;
}
.category-card__overlay p {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    margin: 0 0 16px;
    max-width: 380px;
}
.category-card__cta {
    color: var(--pink-accent);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
}

/* ========== Lifestyle ========== */
.lifestyle { padding: 60px 0; background: var(--dark); }
.lifestyle__grid {
    background: linear-gradient(135deg, var(--burgundy-900), var(--burgundy-700));
    border-radius: 32px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}
.lifestyle__image img { width: 100%; height: 100%; object-fit: cover; min-height: 420px; }
.lifestyle__text { padding: 64px; display: flex; flex-direction: column; justify-content: center; }
.lifestyle__text .section__title { text-align: left; margin-bottom: 16px; }
.lifestyle__text p { color: rgba(255,255,255,0.85); font-size: 17px; margin-bottom: 32px; }
.lifestyle__text .btn { align-self: flex-start; }

/* ========== Benefits ========== */
.benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.benefit {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 24px;
    padding: 36px;
    transition: border-color 0.3s, transform 0.3s;
}
.benefit:hover {
    border-color: var(--burgundy-500);
    transform: translateY(-4px);
}
.benefit__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--burgundy-700), var(--pink-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #fff;
}
.benefit__icon svg { width: 26px; height: 26px; }
.benefit h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #fff;
    margin: 0 0 12px;
    font-weight: 700;
}
.benefit p { color: rgba(255,255,255,0.7); margin: 0; font-size: 15px; }

/* ========== Products ========== */
.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.product {
    background: #15080c;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255,255,255,0.05);
}
.product:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(122,24,50,0.4);
}
.product__image {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: linear-gradient(135deg, var(--burgundy-900), var(--burgundy-700));
}
.product__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}
.product:hover .product__image img { transform: scale(1.08); }
.product__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--pink-accent);
    color: #fff;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 2;
}
.product__badge--gold { background: var(--gold); color: #4a0f1f; }
.product__body { padding: 24px; }
.product__cat {
    color: var(--gold);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.product__body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #fff;
    margin: 8px 0 10px;
    font-weight: 700;
    line-height: 1.2;
}
.product__body p { color: rgba(255,255,255,0.6); font-size: 14px; margin: 0 0 20px; }
.product__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.price {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}

/* ========== Reviews ========== */
.reviews {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
.review {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 24px;
    padding: 36px;
}
.review__stars { color: var(--gold); font-size: 18px; letter-spacing: 4px; margin-bottom: 20px; }
.review p {
    font-size: 17px;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    margin: 0 0 28px;
    font-style: italic;
}
.review__author { display: flex; align-items: center; gap: 14px; }
.review__author img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
}
.review__author strong { display: block; color: #fff; font-size: 15px; }
.review__author span { color: rgba(255,255,255,0.5); font-size: 13px; }

/* ========== CTA Form ========== */
.cta { padding: 100px 0; background: var(--dark); }
.cta__card {
    background: linear-gradient(135deg, var(--burgundy-900) 0%, var(--burgundy-700) 100%);
    border-radius: 32px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
}
.cta__card::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212,168,106,0.2), transparent 70%);
}
.cta__left {
    padding: 64px;
    color: #fff;
    position: relative;
    z-index: 1;
}
.cta__left h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 3.5vw, 44px);
    font-weight: 700;
    margin: 16px 0 20px;
    line-height: 1.1;
}
.cta__left > p { color: rgba(255,255,255,0.85); font-size: 17px; margin-bottom: 32px; }
.cta__list li {
    padding: 10px 0;
    color: #fff;
    font-size: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.cta__list li:last-child { border: none; }
.cta__form {
    background: #fff;
    padding: 48px;
    color: #1a0a0e;
    position: relative;
    z-index: 1;
}
.cta__form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin: 0 0 24px;
    color: var(--burgundy-800);
}
.field { margin-bottom: 18px; }
.field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #4a0f1f;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.field input, .field select, .field textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e0d0d4;
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    color: #1a0a0e;
    background: #faf5f6;
    transition: border-color 0.2s, background 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none;
    border-color: var(--pink-accent);
    background: #fff;
}
.field textarea { resize: vertical; }
.cta__small {
    font-size: 12px;
    color: #888;
    margin-top: 16px;
    text-align: center;
}

/* ========== Footer ========== */
.footer {
    background: #080304;
    color: rgba(255,255,255,0.7);
    padding: 80px 0 32px;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer__brand p { margin-top: 20px; max-width: 320px; font-size: 14px; }
.footer h4 {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 0 20px;
}
.footer ul li { margin-bottom: 10px; font-size: 14px; }
.footer ul li a { transition: color 0.2s; }
.footer ul li a:hover { color: var(--pink-accent); }
.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

/* ========== Responsive ========== */
@media (max-width: 1100px) {
    .hero__card { grid-template-columns: 1fr; min-height: auto; }
    .hero__image { min-height: 320px; order: -1; }
    .hero__content { padding: 48px 32px; }
    .categories { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
    .category-card--lg { grid-column: span 2; }
    .benefits { grid-template-columns: repeat(2, 1fr); }
    .products { grid-template-columns: repeat(2, 1fr); }
    .lifestyle__grid, .cta__card { grid-template-columns: 1fr; }
    .lifestyle__text, .cta__left, .cta__form { padding: 40px 32px; }
    .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .container { padding: 0 16px; }
    .header__inner { flex-wrap: wrap; gap: 12px; }
    .search { order: 10; flex-basis: 100%; max-width: none; }
    .delivery-info { display: none; }
    .header__actions { gap: 8px; }
    .hero__content { padding: 40px 24px; }
    .hero__title { font-size: 36px; }
    .hero__stats { gap: 24px; }
    .stat strong { font-size: 24px; }
    .section { padding: 60px 0; }
    .section__head { margin-bottom: 40px; }
    .categories { grid-template-columns: 1fr; }
    .category-card--lg, .category-card { grid-column: span 1; }
    .benefits { grid-template-columns: 1fr; }
    .products { grid-template-columns: 1fr 1fr; gap: 16px; }
    .product__body { padding: 16px; }
    .product__body h3 { font-size: 16px; }
    .reviews { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr; gap: 32px; }
    .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
}
@media (max-width: 480px) {
    .products { grid-template-columns: 1fr; }
    .hero__buttons { flex-direction: column; }
    .hero__buttons .btn { width: 100%; }
    .promo-bar { font-size: 12px; }
    .catalog-btn { padding: 8px 14px; font-size: 13px; }
    .logo__text { font-size: 20px; }
}
