@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700;800&family=Cormorant+Garamond:wght@600;700&display=swap');

:root {
    --bg: #f7ece8;
    --ink: #2c181c;
    --rose: #9a4a56;
    --blush: #e8b4b8;
    --card: #fffdfb;
    --line: #ead8d4;
    --muted: #7a5a5e;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: 'Cairo', Tahoma, sans-serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.75;
    padding-bottom: 78px;
}
img { max-width: 100%; display: block; }
a { color: var(--rose); text-decoration: none; }
.wrap { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }

.header { position: sticky; top: 0; z-index: 50; background: #fffdfb; border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; gap: 12px; min-height: 74px; }
.logo { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; letter-spacing: .12em; color: var(--rose); }
.nav-links { display: flex; gap: 16px; margin-inline-start: auto; align-items: center; }
.nav-links a { color: var(--ink); font-weight: 700; white-space: nowrap; }
.nav-links a:hover { color: var(--rose); }
.lang { border: 1px solid var(--rose); color: var(--rose); padding: 2px 8px; font-size: .8rem; }
.nav > .lang { display: none; }
.chip { font-weight: 800; color: var(--rose); }

.hero {
    position: relative;
    min-height: 74vh;
    display: grid;
    align-items: end;
    overflow: hidden;
    color: #fff;
}
.hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; animation: drift 16s ease-in-out infinite alternate; }
@keyframes drift { to { transform: scale(1.07); } }
.hero-veil { position: absolute; inset: 0; background: linear-gradient(transparent, rgba(44,24,28,.72)); }
.hero-copy { position: relative; z-index: 1; padding: 8vh 0 6vh; }
.hero-copy h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.6rem, 7vw, 5rem); }

.section { padding: 46px 0; }
.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.card { background: var(--card); border: 1px solid var(--line); overflow: hidden; animation: fadeup .5s ease both; }
@keyframes fadeup { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.card img { width: 100%; height: 230px; object-fit: cover; }
.card .pad { padding: 12px; }
.price { color: var(--rose); font-weight: 800; }
.cats { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0 18px; }
.cats a { border: 1px solid var(--line); background: #fff; padding: 6px 12px; }
.cats a.on { background: var(--rose); color: #fff; }

.btn { display: inline-block; background: var(--rose); color: #fff; border: 0; padding: 10px 16px; font-family: inherit; font-weight: 800; cursor: pointer; }
.btn.line { background: transparent; color: var(--rose); border: 1px solid var(--rose); }
.form { display: grid; gap: 10px; max-width: 440px; }
label { display: grid; gap: 4px; font-weight: 700; }
input, select, textarea { width: 100%; border: 1px solid var(--line); padding: 10px; font-family: inherit; background: #fff; }
.alert { padding: 10px 14px; margin: 10px 0; background: #f3ddd9; }
.product { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.product img { width: 100%; max-height: 500px; object-fit: cover; }
.sizes { display: flex; gap: 8px; margin: 10px 0; }
.sizes label { border: 1px solid var(--line); padding: 6px 12px; cursor: pointer; }
.sizes input { display: none; }
.sizes input:checked + span { font-weight: 800; color: var(--rose); }
.line-item { display: flex; gap: 10px; align-items: center; background: #fff; border: 1px solid var(--line); padding: 10px; margin-bottom: 8px; }
.line-item img { width: 68px; height: 68px; object-fit: cover; }
table { width: 100%; border-collapse: collapse; background: #fff; }
th, td { padding: 8px; border-bottom: 1px solid var(--line); text-align: start; }

.footer { background: #2c181c; color: #f3ddd9; padding: 26px 0 90px; }
.m-foot { position: fixed; bottom: 0; inset-inline: 0; display: flex; background: #fffdfb; border-top: 1px solid var(--line); z-index: 55; }
.m-foot a { flex: 1; text-align: center; font-size: .66rem; padding: 8px 0 10px; color: var(--ink); }
.m-foot span { display: block; font-size: 1.05rem; }

@media (min-width: 961px) {
    body { padding-bottom: 0; }
    .m-foot { display: none; }
    .footer { padding-bottom: 26px; }
}
@media (max-width: 960px) {
    .nav-links { display: none; }
    .nav > .lang { display: inline-block; margin-inline-start: auto; }
    .grid, .product { grid-template-columns: 1fr; }
}
