:root {
    --primary-color: #0d1b3e;
    /* Deep Navy */
    --secondary-color: #c5a059;
    /* Muted Gold */
    --text-color: #333333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
}

/* Custom Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 2px;
    /* Premium boxy look */
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

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

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

/* Navigation */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color) !important;
}

.navbar-brand span {
    color: var(--secondary-color);
}

.nav-link {
    color: var(--primary-color);
    font-weight: 500;
    margin: 0 10px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 600px;
    background-color: var(--primary-color);
    /* Fallback */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: var(--white);
}

.hero-overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    font-weight: 700;
    color: var(--white) !important;
}

/* Collections / Categories */
.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    /* Circular */
    width: 150px;
    height: 150px;
    margin: 0 auto;
    border: 3px solid var(--secondary-color);
    transition: transform 0.3s ease;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.category-title {
    margin-top: 15px;
    font-weight: 600;
    text-align: center;
    color: var(--primary-color);
}

/* Product Card */
.product-card {
    border: none;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image-wrapper {
    position: relative;
    background-color: #f0f0f0;
    padding-bottom: 100%;
    /* Square aspect ratio */
    overflow: hidden;
}

.product-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-title {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.product-price {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0 30px;
}

footer h5 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--secondary-color);
}

/* Story Section */
.story-section {
    background-color: var(--light-bg);
}

.top-bar {
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 0.8rem;
    padding: 5px 0;
}

.text-dim-white {
    color: rgba(255, 255, 255, 0.75) !important;
}