/* Color Variables */
:root {
    --brand-dark: #020202;
    --brand-gold: #eb5e5e;
    --brand-light: #f9f7f2;
    --brand-text: #4a4a4a;
    --brand-white: #ffffff;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--brand-text);
    background-color: var(--brand-light);
    line-height: 1.7;
}
.navbar-brand img {
    max-height: 60px;
}

/* Typography */
.font-serif {
    font-family: 'Playfair Display', serif;
}

h1, h2, h3, h4, h5 {
    color: var(--brand-dark);
}

.letter-spacing-2 {
    letter-spacing: 2px;
    font-size: 0.85rem;
    font-weight: 600;
}

.text-brand-gold {
    color: var(--brand-gold) !important;
}

.bg-brand-dark {
    background-color: var(--brand-dark);
}

.bg-brand-light {
    background-color: #f4f1ea;
}

/* Navigation */
.navbar-brand {
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 1.5rem;
}

.nav-link {
    color: var(--brand-dark) !important;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
}

/* Hero Section */
.hero-section {
    padding-top: 100px;
    padding-bottom: 60px;
    min-height: 85vh;
}

.hero-img {
    border-radius: 0 50px 0 50px !important;
}

/* Buttons */
.btn-primary {
    background-color: var(--brand-dark);
    border-color: var(--brand-dark);
    padding: 12px 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    border-radius: 0;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: var(--brand-gold);
    border-color: var(--brand-gold);
}

/* Utilities */
.section-padding {
    padding: 80px 0;
}

.border-start-md {
    border-left: none;
}

@media (min-width: 768px) {
    .border-start-md {
        border-left: 1px solid rgba(0,0,0,0.1);
    }
}

/* Product Cards */
.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08) !important;
}

.card-img-top-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-img-top {
    max-height: 90%;
    width: auto;
    max-width: 100%;
}

.card-body {
    padding: 1.5rem;
}

/* Lists in content */
.lead-text ul, .text-muted ul {
    margin-top: 10px;
    padding-left: 20px;
}

.lead-text li {
    margin-bottom: 5px;
}