/* Base Reset & Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #fafafa; /* Slight off-white for a softer, premium feel */
    color: #111111;
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
}

/* Smooth Fade-In Animation */
.fade-in {
    animation: fadeIn 1.2s ease-in-out;
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

h1, h2, .logo {
    font-family: 'Playfair Display', serif;
}

/* Promo Bar */
.promo-bar {
    background-color: #111111;
    color: #ffffff;
    text-align: center;
    font-size: 9px;
    letter-spacing: 2px;
    padding: 10px;
    font-weight: 300;
}

/* Header */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: rgba(250, 250, 250, 0.95);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(5px);
}

.logo {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.header-icon {
    font-size: 16px;
    cursor: pointer;
}

.header-icons {
    display: flex;
    gap: 20px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 85vh;
    background-color: #222; /* Placeholder for your hero image */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    padding: 20px;
}

.subtitle {
    font-size: 11px;
    letter-spacing: 3px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 42px;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-block;
    background-color: #ffffff;
    color: #111111;
    text-decoration: none;
    padding: 14px 35px;
    font-size: 11px;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
}

/* Product Section */
.product-section {
    padding: 60px 25px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 35px;
}

.section-header h2 {
    font-size: 24px;
    font-weight: 400;
}

.view-all {
    font-size: 11px;
    text-decoration: none;
    color: #111;
    border-bottom: 1px solid #111;
    padding-bottom: 2px;
}

/* 2-Column Mobile Grid */
.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Image Placeholders */
.product-image {
    width: 100%;
    aspect-ratio: 3 / 4;
    background-color: #eaeaea;
    margin-bottom: 15px;
}

.product-info {
    text-align: center;
}

.product-name {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    color: #555;
    text-transform: uppercase;
}

.product-price {
    font-size: 12px;
    font-weight: 400;
    color: #111;
}
