﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

:root {
    --gold: #c9973a;
    --gold2: #e8bc6a;
    --gold-pale: #fdf6e9;
    --gold-border: #e8d5a3;
    --dark: #111;
    --text: #333;
    --muted: #777;
    --light: #f8f8f8;
    --white: #fff;
    --serif: 'Cormorant Garamond',Georgia,serif;
    --sans: 'DM Sans',sans-serif;
}

body {
    font-family: var(--sans);
    background: #fff;
    color: var(--text);
    overflow-x: hidden
}

.topbar {
    background: #1a1208;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #d4b47a;
    letter-spacing: 2px;
    font-weight: 300
}

.nav {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    position: sticky;
    top: 0;
    z-index: 100
}

.logo {
    font-family: var(--serif);
    font-size: 26px;
    color: #1a1208;
    font-weight: 400;
    letter-spacing: 1px
}

    .logo span {
        color: var(--gold);
        font-style: italic
    }

.nav-links {
    display: flex;
    gap: 32px
}

    .nav-links a {
        font-size: 13px;
        color: var(--text);
        text-decoration: none;
        letter-spacing: .5px;
        font-weight: 400;
        transition: color .2s
    }

        .nav-links a:hover {
            color: var(--gold)
        }

.nav-right {
    display: flex;
    gap: 20px;
    align-items: center
}

    .nav-right svg {
        width: 20px;
        height: 20px;
        stroke: var(--text);
        fill: none;
        stroke-width: 1.5;
        cursor: pointer;
        transition: stroke .2s
    }

        .nav-right svg:hover {
            stroke: var(--gold)
        }

.cart-wrap {
    position: relative
}

.badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--gold);
    color: #fff;
    font-size: 9px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500
}

.slider {
    position: relative;
    overflow: hidden;
    height: 480px
}

.slides {
    display: flex;
    transition: transform .6s cubic-bezier(.4,0,.2,1)
}

.slide {
    min-width: 100%;
    height: 480px;
    position: relative;
    flex-shrink: 0
}

    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover
    }

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,rgba(10,8,4,.65) 0%,rgba(10,8,4,.1) 60%)
}

.slide-text {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%)
}

    .slide-text .eyebrow {
        color: var(--gold2);
        font-size: 11px;
        letter-spacing: 4px;
        text-transform: uppercase;
        margin-bottom: 14px
    }

    .slide-text h1 {
        font-family: var(--serif);
        font-size: 54px;
        color: #fff;
        font-weight: 300;
        line-height: 1.1;
        margin-bottom: 14px
    }

        .slide-text h1 em {
            color: var(--gold2);
            font-style: italic
        }

    .slide-text p {
        color: rgba(255,255,255,.75);
        font-size: 14px;
        letter-spacing: .5px;
        margin-bottom: 28px;
        font-weight: 300
    }

.btn-primary {
    background: var(--gold);
    color: #fff;
    padding: 13px 34px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    font-family: var(--sans);
    font-weight: 500;
    margin-right: 12px;
    transition: background .2s
}

    .btn-primary:hover {
        background: #b8832a
    }

.btn-ghost {
    background: transparent;
    color: #fff;
    padding: 12px 34px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,.5);
    cursor: pointer;
    font-family: var(--sans);
    transition: border-color .2s
}

    .btn-ghost:hover {
        border-color: #fff
    }

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.4);
    cursor: pointer;
    transition: all .3s
}

    .dot.active {
        background: var(--gold);
        width: 24px;
        border-radius: 4px
    }

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.3);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s
}

    .slider-arrow:hover {
        background: rgba(255,255,255,.3)
    }

    .slider-arrow svg {
        width: 18px;
        height: 18px;
        stroke: #fff;
        fill: none;
        stroke-width: 2
    }

.arrow-prev {
    left: 20px
}

.arrow-next {
    right: 20px
}

.sec-head {
    text-align: center;
    padding: 48px 20px 32px
}

    .sec-head h2 {
        font-family: var(--serif);
        font-size: 36px;
        font-weight: 400;
        color: #1a1208
    }

        .sec-head h2 em {
            color: var(--gold);
            font-style: italic
        }

    .sec-head p {
        color: var(--muted);
        font-size: 14px;
        margin-top: 8px;
        letter-spacing: .3px
    }

.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 12px auto 0;
    width: 180px
}

.dline {
    flex: 1;
    height: 1px;
    background: var(--gold-border)
}

.ddot {
    width: 5px;
    height: 5px;
    background: var(--gold);
    transform: rotate(45deg)
}

.cat-section {
    padding: 0 40px 40px;
    background: #fff
}

.cat-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 8px;
    justify-content: center;
    flex-wrap: wrap
}

.cat-card {
    flex: 0 0 auto;
    width: 110px;
    text-align: center;
    cursor: pointer;
    text-decoration: none
}

.cat-circle {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 10px;
    border: 2px solid var(--gold-border);
    transition: border-color .3s,transform .3s
}

.cat-card:hover .cat-circle {
    border-color: var(--gold);
    transform: scale(1.06)
}

.cat-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.cat-card span {
    font-size: 12px;
    color: var(--text);
    letter-spacing: .5px;
    font-weight: 400
}

.prod-section {
    padding: 0 40px 48px;
    background: var(--light)
}

.prod-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px
}

    .prod-header h3 {
        font-family: var(--serif);
        font-size: 28px;
        font-weight: 400;
        color: #1a1208
    }

        .prod-header h3 em {
            color: var(--gold);
            font-style: italic
        }

.view-all {
    font-size: 12px;
    color: var(--gold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1px solid var(--gold-border);
    padding-bottom: 2px
}

.prod-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px
}

.prod-card {
    background: #fff;
    border: 1px solid #eee;
    overflow: hidden;
    transition: transform .3s,box-shadow .3s;
    cursor: pointer
}

    .prod-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 40px rgba(0,0,0,.1)
    }

.prod-img-wrap {
    position: relative;
    overflow: hidden;
    height: 220px;
    background: var(--gold-pale)
}

    .prod-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .4s
    }

.prod-card:hover .prod-img-wrap img {
    transform: scale(1.06)
}

.prod-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #1a1208;
    color: var(--gold2);
    font-size: 9px;
    letter-spacing: 1px;
    padding: 4px 8px;
    font-weight: 400
}

.wish-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,.9);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer
}

    .wish-btn svg {
        width: 14px;
        height: 14px;
        stroke: #999;
        fill: none;
        stroke-width: 2;
        transition: stroke .2s
    }

    .wish-btn:hover svg {
        stroke: #e74c3c;
        fill: #e74c3c
    }

.prod-body {
    padding: 14px 16px 10px
}

.prod-cat {
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 4px
}

.prod-name {
    font-family: var(--serif);
    font-size: 16px;
    color: #1a1208;
    font-weight: 400;
    line-height: 1.3
}

.prod-footer {
    padding: 10px 16px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #f0e8d8
}

.price-new {
    font-size: 16px;
    font-weight: 500;
    color: #1a1208
}

.price-old {
    font-size: 12px;
    color: var(--muted);
    text-decoration: line-through;
    margin-left: 6px
}

.cart-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #1a1208;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s
}

    .cart-btn:hover {
        background: var(--gold)
    }

    .cart-btn svg {
        width: 15px;
        height: 15px;
        stroke: #fff;
        fill: none;
        stroke-width: 1.8
    }

.ad-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 0 40px 48px;
    gap: 12px
}

.ad-panel {
    position: relative;
    height: 200px;
    overflow: hidden;
    cursor: pointer
}

    .ad-panel img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .5s
    }

    .ad-panel:hover img {
        transform: scale(1.05)
    }

.ad-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,rgba(10,8,4,.7) 0%,rgba(10,8,4,.2) 100%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 28px 32px
}

.ad-tag {
    color: var(--gold2);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 8px
}

.ad-title {
    font-family: var(--serif);
    color: #fff;
    font-size: 26px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 12px
}

.ad-btn {
    background: var(--gold);
    color: #fff;
    padding: 8px 20px;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    font-weight: 500
}

.trending-section {
    padding: 0 40px 48px;
    background: #fff
}

.cart-strip {
    background: #1a1208;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px
}

.cart-strip-info h4 {
    font-family: var(--serif);
    font-size: 20px;
    color: var(--gold2);
    font-weight: 300
}

.cart-strip-info p {
    font-size: 12px;
    color: #888;
    margin-top: 3px;
    letter-spacing: .5px
}

.cart-strip-btn {
    background: var(--gold);
    color: #fff;
    padding: 12px 32px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    font-weight: 500
}

.trust {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin: 0 40px 40px
}

.trust-item {
    padding: 20px;
    text-align: center;
    border-right: 1px solid #eee
}

    .trust-item:last-child {
        border-right: none
    }

    .trust-item svg {
        width: 28px;
        height: 28px;
        stroke: var(--gold);
        fill: none;
        stroke-width: 1.5;
        margin-bottom: 8px
    }

    .trust-item h5 {
        font-size: 13px;
        font-weight: 500;
        color: #1a1208;
        margin-bottom: 3px
    }

    .trust-item p {
        font-size: 11px;
        color: var(--muted)
    }




