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

:root {
    --overlay: rgba(0, 0, 0, .55);
}

* {
    font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    letter-spacing: 0.1px;
}

.hero-title {
    font-weight: 700;
}

.hero-subtitle {
    font-weight: 500;
}

/* Header layout: brand (left), nav (center), search (right) */
.site-header {
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(8px);
}

.site-header .container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
    min-height: 72px;
}

.center-nav {
    justify-self: center;
}

.center-nav .nav-link {
    font-weight: 600;
    color: #444;
}

.center-nav .nav-link:hover,
.center-nav .nav-link.active {
    color: #000;
}

/* SECTION 1 — Backdrop landing */
.hero-backdrop {
    position: relative;
    min-height: 85vh;
    display: grid;
    place-items: center;
    color: #fff;
    text-align: center;
    background-size: cover;
    background-position: center;
}

.hero-backdrop::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, var(--overlay), rgba(0, 0, 0, .45), rgba(0, 0, 0, .65));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 1rem 1.25rem;
    max-width: 900px;
}

.hero-title {
    font-weight: 800;
    letter-spacing: .2px;
}

.hero-subtitle {
    opacity: .9;
}

/* Collections / cards */
.card-img-top {
    aspect-ratio: 4/3;
    object-fit: cover;
}

.clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hover-lift {
    transition: transform .2s ease, box-shadow .2s ease;
}

.hover-lift:hover {
    transform: translateY(-2px);
    box-shadow: 0 .5rem 1.25rem rgba(0, 0, 0, .08);
}

/* SECTION 3 — Featured product spotlight */
.spotlight {
    background: linear-gradient(135deg, #fff 0%, #fff 40%, #faf7ef 40%, #faf7ef 100%);
    border-top: 1px solid rgba(0, 0, 0, .06);
    border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.spotlight-img {
    border-radius: 1rem;
    border: 1px solid rgba(0, 0, 0, .06);
    width: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .06);
}

.qty {
    width: 120px !important;
}

/* Utilities */
.brand-square {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: #f2a74a;
    color: #fff;
    font-weight: 800;
}

.hover-bg:hover {
    background: rgba(0, 0, 0, .035);
}

.breadcrumb a {
    text-decoration: none;
}

.product-media {
    position: sticky;
    top: 88px;
}

.product-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 1rem;
    border: 1px solid rgba(0, 0, 0, .06);
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .06);
}

.thumbs img {
    width: 90px;
    height: 72px;
    object-fit: cover;
    border-radius: .5rem;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, .08);
    transition: transform .15s ease, box-shadow .15s ease;
}

.thumbs img:hover {
    transform: translateY(-2px);
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .08);
}

.price-line {
    font-size: 1.25rem;
}

.kicker {
    text-transform: uppercase;
    letter-spacing: .8px;
    font-weight: 600;
    color: #777;
}


.hover-lift {
    transition: transform .2s ease, box-shadow .2s ease;
}

.hover-lift:hover {
    transform: translateY(-2px);
    box-shadow: 0 .5rem 1.25rem rgba(0, 0, 0, .08);
}

.badge-tag {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .08);
}

/* About section */
.about-img {
    border-radius: 1rem;
    border: 1px solid rgba(0, 0, 0, .06);
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .06);
}

/* Contact layout */
.map-embed {
    width: 100%;
    height: 520px;
    border: 0;
    border-radius: 1rem;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .06);
}

.card-soft {
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 1rem;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .06);
}