/** Shopify CDN: Minification failed

Line 26:0 All "@import" rules must come first

**/
:root {
    --color-primary: #303030;
    /* Charcoal */
    --color-secondary: #F8F6F2;
    /* Ivory */
    --color-accent: #C9B59A;
    /* Champagne Gold */
    --color-rose-gold: #D9AFA3;
    /* Soft Rose Gold */
    --color-white: #FFFFFF;
    /* Warm White */
    --color-background: #F8F6F2;
    --color-text: #303030;
    --color-light-grey: #F0F0F0;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

/* Import Fonts (Google Fonts) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-background);
    margin: 0;
    padding: 0;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    margin-top: 0;
    margin-bottom: 0.7em;
    font-weight: 400;
    letter-spacing: 0.02em;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.2rem;
}

h3 {
    font-size: 1.5rem;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--color-accent);
}

.container {
    max-width: 1400px;
    /* Generous width */
    margin: 0 auto;
    padding: 0 40px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    background-color: var(--color-primary);
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--color-primary);
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    border-radius: 0;
    /* Sharp edges for luxury feel */
}

.btn:hover {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

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

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

/* Header */
.site-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background-color: var(--color-white);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 20px 0;
}

.header-nav ul li a {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
    font-weight: 500;
    color: var(--color-primary);
}

.header-nav ul li a:hover {
    color: var(--color-accent);
}

/* Hero Section */
.hero-section {
    background-color: var(--color-secondary);
    position: relative;
}

.hero-headline {
    font-size: 4rem;
    line-height: 1.1;
    font-style: italic;
}

.hero-subheadline {
    font-family: var(--font-body);
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Product Cards */
.product-card {
    transition: all 0.4s ease;
    background-color: var(--color-white);
    padding: 20px;
    border: 1px solid transparent;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: var(--color-accent);
}

.product-card h3 {
    font-family: var(--font-heading);
    font-weight: 400;
    letter-spacing: 0.5px;
    font-size: 1.1rem;
    margin-top: 15px;
}

.product-card .price {
    color: var(--color-accent);
    font-weight: 500;
}

/* Footer */
.site-footer {
    background-color: #252525;
    /* Darker charcoal */
    color: #ccc;
    padding-top: 80px;
    padding-bottom: 40px;
}

.site-footer h4 {
    color: var(--color-white);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.site-footer a {
    color: #999;
    font-weight: 300;
}

.site-footer a:hover {
    color: var(--color-accent);
}

/* Forms */
input[type="text"],
input[type="email"],
input[type="number"],
textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    font-family: var(--font-body);
    box-sizing: border-box;
    background-color: var(--color-white);
    transition: border-color 0.3s ease;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--color-accent);
}

/* USP Strip */
.usp-strip {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.usp-item h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-accent);
}