:root {
    --dark: #171414;
    --dark-2: #242020;
    --cream: #faf7f2;
    --cream-2: #f3eee7;
    --gold: #b9955b;
    --gold-dark: #927441;
    --text: #292424;
    --muted: #77706d;
    --white: #ffffff;
    --border: #e8e0d7;
    --container: 1200px;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Cairo", sans-serif;
    color: var(--text);
    background: var(--cream);
    line-height: 1.8;
}

button,
input,
select {
    font-family: inherit;
}

button {
    cursor: pointer;
}

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

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

.container {
    width: min(92%, var(--container));
    margin: auto;
}

.section {
    padding: 100px 0;
}

/* HEADER */

.header {
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 247, 242, 0.94);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-inner {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    text-align: center;
}

.logo span {
    font-family: "Playfair Display", serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo small {
    font-size: 8px;
    letter-spacing: 4px;
    color: var(--gold-dark);
    margin-top: 6px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.nav a {
    position: relative;
    font-size: 14px;
    font-weight: 600;
}

.nav a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -6px;
    right: 0;
    background: var(--gold);
    transition: var(--transition);
}

.nav a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.icon-btn,
.menu-btn {
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    position: relative;
    font-size: 19px;
}

.icon-btn:hover {
    color: var(--gold-dark);
}

.counter {
    position: absolute;
    top: 1px;
    left: 1px;
    background: var(--dark);
    color: white;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    font-size: 9px;
    display: grid;
    place-items: center;
}

.menu-btn {
    display: none;
}

/* HERO */

.hero {
    height: 90vh;
    min-height: 650px;
    margin-top: 82px;
    position: relative;
    background:
        linear-gradient(
            90deg,
            rgba(20, 15, 15, 0.88),
            rgba(20, 15, 15, 0.38)
        ),
        url("https://images.unsplash.com/photo-1566174053879-31528523f8ae?auto=format&fit=crop&w=1800&q=85")
        center/cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    max-width: 1200px;
}

.hero-small {
    color: #d7b978;
    letter-spacing: 5px;
    font-size: 12px;
    margin-bottom: 18px;
}

.hero h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(55px, 7vw, 100px);
    line-height: 1.05;
    font-weight: 500;
    margin-bottom: 25px;
}

.hero h1 strong {
    color: #d4b272;
    font-weight: 500;
}

.hero p {
    max-width: 530px;
    color: #eee;
    margin-bottom: 35px;
    font-size: 16px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
}

.btn {
    border: 1px solid transparent;
    padding: 13px 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    transition: var(--transition);
}

.btn-primary {
    background: var(--gold);
    color: white;
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
}

.btn-outline {
    border-color: white;
    color: white;
}

.btn-outline:hover {
    background: white;
    color: var(--dark);
}

/* FEATURES */

.features {
    background: var(--dark);
    color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.feature {
    padding: 30px 20px;
    display: flex;
    gap: 15px;
    align-items: center;
    border-left: 1px solid rgba(255,255,255,.08);
}

.feature:last-child {
    border-left: 0;
}

.feature-icon {
    font-size: 27px;
    color: var(--gold);
}

.feature h3 {
    font-size: 14px;
}

.feature p {
    color: #a8a2a0;
    font-size: 12px;
}

/* CATEGORIES */

.category-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 270px 270px;
    gap: 20px;
}

.category-card {
    border: 0;
    text-align: right;
    color: white;
    padding: 35px;
    display: flex;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    transition: .5s;
}

.category-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        transparent 15%,
        rgba(0,0,0,.75)
    );
}

.category-card > div {
    position: relative;
    z-index: 2;
}

.category-card span {
    font-size: 12px;
    color: #d9bc86;
}

.category-card h3 {
    font-family: "Playfair Display", serif;
    font-size: 34px;
    margin: 3px 0;
}

.category-card p {
    font-size: 13px;
    opacity: .85;
}

.category-card:hover {
    transform: scale(.985);
}

/* PRODUCTS */

.products {
    background: white;
}

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

.product-card {
    position: relative;
    background: white;
}

.product-image {
    height: 390px;
    position: relative;
    overflow: hidden;
    background: #eee;
}

.product-image img {
    height: 100%;
    object-fit: cover;
    transition: .6s;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: abs