:root {
    --primary-maroon: #640404;
    --accent-gold: #D4AF37;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-white: #ffffff;
    --bg-cream: #FFFAF0;
    --shadow-soft: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 40px -15px rgba(0, 0, 0, 0.2);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Mulish', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-cream);
    line-height: 1.6;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-maroon);
    color: var(--accent-gold);
    border: 1px solid var(--primary-maroon);
}

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

.btn-outline {
    background-color: transparent;
    color: var(--primary-maroon);
    border: 1px solid var(--primary-maroon);
}

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

/* Header */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 24px;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary-maroon);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

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

.header-icons button {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-dark);
    transition: var(--transition);
}

.header-icons button:hover {
    color: var(--primary-maroon);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, rgba(255, 251, 240, 0.95) 30%, rgba(255, 251, 240, 0.1) 100%), url('images/hero_banner_1765135029304.png');
    background-size: cover;
    background-position: center top;
    z-index: -1;
}

.hero-content {
    width: 100%;
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--primary-maroon);
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

/* Categories Section */
.categories {
    background-color: var(--bg-white);
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.category-card {
    position: relative;
    border-radius: 4px;
    /* Slightly squarish for premium feel */
    overflow: hidden;
    height: 350px;
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    transition: var(--transition);
    background: #fff;
    border: 1px solid rgba(212, 175, 55, 0.2);
    /* Subtle Gold border */
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-gold);
}

.cat-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.cat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 60%);
}

.cat-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px;
    color: white;
    transform: translateY(0);
    transition: var(--transition);
}

.cat-icon {
    font-size: 24px;
    margin-bottom: 8px;
    display: none;
    /* Hide for now, or keep if icons are nice */
}

.cat-info h3 {
    color: white;
    /* Override default maroon */
    font-size: 1.5rem;
    margin-bottom: 8px;
    font-weight: 400;
}

.explore-link {
    color: var(--accent-gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    opacity: 0.9;
}

.explore-link:hover {
    color: white;
    margin-left: 5px;
}

/* New Arrivals */
.new-arrivals {
    background-color: var(--bg-cream);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.product-card:hover {
    box-shadow: var(--shadow-hover);
}

.product-img {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img img {
    transform: scale(1.05);
}

.tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: var(--accent-gold);
    color: white;
    padding: 4px 12px;
    font-size: 0.75rem;
    text-transform: uppercase;
    border-radius: 20px;
    font-weight: 600;
}

.product-details {
    padding: 20px;
    text-align: center;
}

.product-details h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-family: var(--font-body);
}

.product-details .price {
    color: var(--primary-maroon);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Featured Collections */
.featured-collections {
    background-color: var(--primary-maroon);
    color: white;
}

.featured-collections .section-header h2 {
    color: var(--accent-gold);
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.collection-item {
    position: relative;
    height: 300px;
    border: 1px solid var(--accent-gold);
    display: flex;
    background: black;
    /* visual fallback */
}

.collection-item img {
    width: 50%;
    object-fit: cover;
    opacity: 0.9;
}

.collection-item .col-text {
    width: 50%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: rgba(40, 0, 0, 0.9);
    /* Dark maroon */
}

.collection-item h3 {
    color: var(--accent-gold);
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.collection-item p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.collection-item a {
    color: white;
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* Trust Badges */
.trust-badges {
    background-color: white;
}

.trust-grid {
    text-align: center;
}

.trust-item {
    padding: 30px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background-color: var(--bg-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    border: 1px solid var(--accent-gold);
}

.trust-item h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: rgba(255, 255, 255, 0.4);
    padding: 30px 0;
    text-align: center;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 900px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .nav-menu {
        display: none;
        /* simple hide for prototype */
    }

    .hero-bg {
        background-image: linear-gradient(to top, rgba(255, 251, 240, 0.95), rgba(255, 251, 240, 0.4)), url('images/hero_banner_1765135029304.png');
    }

    .collection-item {
        flex-direction: column;
        height: auto;
    }

    .collection-item img,
    .collection-item .col-text {
        width: 100%;
    }
}

/* Contact CTA */
.contact-cta {
    background-color: var(--bg-cream);
    padding-bottom: 60px;
}

.cta-box {
    background: white;
    border: 1px solid var(--accent-gold);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: var(--shadow-soft);
}

.cta-box h2 {
    margin-bottom: 30px;
    font-size: 2rem;
}

.cta-content {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    text-align: left;
}

.cta-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.cta-item h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: var(--primary-maroon);
}

.cta-item p {
    color: var(--text-light);
    font-size: 1rem;
}

.icon-circle-small {
    width: 40px;
    height: 40px;
    background-color: var(--bg-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border: 1px solid var(--accent-gold);
    flex-shrink: 0;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-cream);
    color: var(--primary-maroon);
    border: 1px solid var(--primary-maroon);
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--primary-maroon);
    color: var(--accent-gold);
    transform: translateY(-3px);
}

@media (max-width: 600px) {
    .cta-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .cta-item {
        flex-direction: column;
        align-items: center;
    }
}