/* ==========================================
   stanica cosmetics — Design System
   Minimal, lowercase, Rhode-inspired
   ========================================== */

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

:root {
    --cream: #F8F6F3;
    --blush: #E8DDD4;
    --taupe: #8C7E74;
    --taupe-deep: #6B5F56;
    --charcoal: #3A3632;
    --charcoal-light: rgba(58, 54, 50, 0.55);
    --charcoal-faint: rgba(58, 54, 50, 0.3);
    --nude: #D4C5B9;
    --petal: #F0E8E0;
    --white: #FFFFFF;
    --max-width: 1200px;
    --nav-height: 72px;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 2px 16px rgba(58, 54, 50, 0.04);
    --shadow-lg: 0 8px 32px rgba(58, 54, 50, 0.06);
    --transition: 0.3s ease;
}

body {
    font-family: 'Jost', 'Futura', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: var(--charcoal);
    background: var(--cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.7;
    font-weight: 300;
    letter-spacing: 0.01em;
}

a { color: inherit; text-decoration: none; }

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

/* ==========================================
   NAVIGATION
   ========================================== */

nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 0 3rem;
    height: var(--nav-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(248, 246, 243, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(212, 197, 185, 0.2);
}

.logo {
    font-family: 'Jost', 'Futura', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.28em;
    color: var(--charcoal);
    text-transform: lowercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--charcoal-light);
    transition: color var(--transition);
    font-weight: 400;
}

.nav-link:hover { color: var(--charcoal); }

.cart-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.cart-badge {
    background: var(--taupe-deep);
    color: var(--white);
    font-size: 0.55rem;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
}

.nav-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-mobile-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--charcoal);
    transition: all var(--transition);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    background: var(--cream);
    border-bottom: 1px solid rgba(212, 197, 185, 0.2);
    z-index: 99;
    padding: 1.5rem;
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu.open { display: flex; }

.mobile-menu-link {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--charcoal);
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(212, 197, 185, 0.15);
    font-weight: 400;
}

/* ==========================================
   BUTTONS
   ========================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2.4rem;
    border-radius: 100px;
    font-family: 'Jost', 'Futura', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: var(--taupe-deep);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--charcoal);
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

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

.btn-secondary:hover {
    background: var(--taupe-deep);
    color: var(--white);
    border-color: var(--taupe-deep);
}

.btn-large {
    padding: 1rem 3rem;
    font-size: 0.75rem;
}

.btn-dark {
    background: var(--charcoal);
    color: var(--cream);
}

.btn-dark:hover {
    background: var(--taupe-deep);
}

/* ==========================================
   HOME PAGE
   ========================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 8rem 3rem 5rem;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 820px;
    text-align: center;
}

.hero-label {
    display: inline-block;
    font-size: 0.62rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--taupe);
    margin-bottom: 2.5rem;
    padding: 0.55rem 1.6rem;
    border: 1px solid rgba(140, 126, 116, 0.25);
    border-radius: 100px;
    font-weight: 400;
}

.hero h1 {
    font-family: 'Jost', 'Futura', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: clamp(2.8rem, 6.5vw, 5rem);
    font-weight: 200;
    line-height: 1.12;
    color: var(--charcoal);
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.hero h1 em {
    font-style: italic;
    color: var(--taupe);
}

.hero-sub {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--charcoal-light);
    max-width: 540px;
    margin: 0 auto 3rem;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.divider {
    width: 1px;
    height: 64px;
    background: linear-gradient(to bottom, transparent, var(--nude), transparent);
    margin: 0 auto;
}

/* Philosophy Section */
.philosophy {
    padding: 7rem 3rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.philosophy-text h2 {
    font-family: 'Jost', 'Futura', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 300;
    line-height: 1.25;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.philosophy-text p {
    font-size: 0.92rem;
    line-height: 1.9;
    color: var(--charcoal-light);
    font-weight: 300;
}

.philosophy-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.ingredient-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid rgba(212, 197, 185, 0.25);
    transition: transform var(--transition), box-shadow var(--transition);
    cursor: pointer;
}

.ingredient-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.ingredient-card:nth-child(2) { margin-top: 2rem; }
.ingredient-card:nth-child(3) { margin-top: -1rem; }

.ingredient-icon { font-size: 1.8rem; margin-bottom: 0.8rem; }

.ingredient-card h4 {
    font-family: 'Jost', 'Futura', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    margin-bottom: 0.3rem;
    letter-spacing: 0.02em;
}

.ingredient-card span {
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--taupe);
    font-weight: 400;
}

/* Features Band */
.features {
    background: var(--charcoal);
    padding: 6rem 3rem;
    color: var(--cream);
}

.features-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.features-header {
    text-align: center;
    margin-bottom: 4rem;
}

.features-header h2 {
    font-family: 'Jost', 'Futura', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 200;
    color: var(--petal);
    letter-spacing: -0.01em;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.feature {
    padding: 2rem;
    border-radius: var(--radius);
    background: rgba(248, 246, 243, 0.04);
    border: 1px solid rgba(248, 246, 243, 0.06);
}

.feature-num {
    font-family: 'Jost', 'Futura', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 2rem;
    font-weight: 200;
    color: var(--nude);
    margin-bottom: 1rem;
    line-height: 1;
    letter-spacing: 0.05em;
}

.feature h3 {
    font-size: 0.85rem;
    font-weight: 400;
    margin-bottom: 0.8rem;
    color: var(--petal);
    letter-spacing: 0.04em;
}

.feature p {
    font-size: 0.82rem;
    line-height: 1.75;
    color: rgba(240, 232, 224, 0.5);
    font-weight: 300;
}

/* Featured Products */
.featured-products {
    padding: 7rem 3rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    font-size: 0.62rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--taupe);
    margin-bottom: 1rem;
    display: block;
    font-weight: 400;
}

.section-header h2 {
    font-family: 'Jost', 'Futura', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 300;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

/* Origin Story */
.origin {
    padding: 8rem 3rem;
    text-align: center;
    position: relative;
}

.origin-content {
    position: relative;
    z-index: 1;
    max-width: 660px;
    margin: 0 auto;
}

.origin-label {
    font-size: 0.62rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--taupe);
    margin-bottom: 2rem;
    display: block;
    font-weight: 400;
}

.origin h2 {
    font-family: 'Jost', 'Futura', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: clamp(1.8rem, 4.5vw, 3rem);
    font-weight: 300;
    line-height: 1.25;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.origin p {
    font-size: 0.95rem;
    line-height: 1.9;
    color: var(--charcoal-light);
    font-weight: 300;
    max-width: 520px;
    margin: 0 auto 2rem;
}

/* Closing CTA */
.closing {
    padding: 5rem 3rem 6rem;
    background: linear-gradient(180deg, var(--cream) 0%, var(--petal) 100%);
}

.closing-inner {
    max-width: 660px;
    margin: 0 auto;
    text-align: center;
}

.closing h2 {
    font-family: 'Jost', 'Futura', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 300;
    line-height: 1.35;
    margin-bottom: 1.5rem;
    color: var(--charcoal);
    letter-spacing: -0.01em;
}

.closing h2 em {
    font-style: italic;
    color: var(--taupe);
}

.closing p {
    font-size: 0.9rem;
    line-height: 1.85;
    color: var(--charcoal-faint);
    font-weight: 300;
    margin-bottom: 2rem;
}

/* ==========================================
   SHOP PAGE
   ========================================== */

.page-header {
    padding: calc(var(--nav-height) + 5rem) 3rem 3rem;
    text-align: center;
    position: relative;
}

.page-header h1 {
    font-family: 'Jost', 'Futura', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 200;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.page-header p {
    font-size: 0.95rem;
    color: var(--charcoal-light);
    font-weight: 300;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.75;
}

.products-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 3rem 6rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(212, 197, 185, 0.2);
    transition: transform var(--transition), box-shadow var(--transition);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.product-card-image {
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--petal) 0%, var(--cream) 100%);
    font-size: 5rem;
    position: relative;
}

.product-card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 0.58rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    background: var(--taupe-deep);
    color: var(--white);
    padding: 0.35rem 0.8rem;
    border-radius: 100px;
    font-weight: 400;
}

.product-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card-category {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--taupe);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.product-card-name {
    font-family: 'Jost', 'Futura', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    line-height: 1.35;
    letter-spacing: 0.01em;
}

.product-card-tagline {
    font-size: 0.82rem;
    color: var(--charcoal-light);
    font-weight: 300;
    line-height: 1.65;
    flex: 1;
    margin-bottom: 1rem;
}

.product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid rgba(212, 197, 185, 0.2);
}

.product-card-price {
    font-family: 'Jost', 'Futura', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--charcoal);
    letter-spacing: 0.02em;
}

.product-card-price .compare-price {
    font-size: 0.85rem;
    color: var(--charcoal-faint);
    text-decoration: line-through;
    margin-left: 0.5rem;
    font-weight: 300;
}

.product-card-size {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    color: var(--charcoal-faint);
    text-transform: uppercase;
}

/* ==========================================
   PRODUCT DETAIL PAGE
   ========================================== */

.product-detail {
    padding: calc(var(--nav-height) + 3rem) 3rem 6rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.product-image-area {
    background: linear-gradient(135deg, var(--petal) 0%, var(--cream) 100%);
    border-radius: var(--radius);
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    position: sticky;
    top: calc(var(--nav-height) + 2rem);
}

.product-info {
    padding-top: 1rem;
}

.product-breadcrumb {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--charcoal-faint);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.product-breadcrumb a {
    color: var(--taupe);
    transition: color var(--transition);
}

.product-breadcrumb a:hover { color: var(--charcoal); }

.product-info h1 {
    font-family: 'Jost', 'Futura', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 300;
    line-height: 1.25;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.product-tagline {
    font-size: 0.95rem;
    color: var(--charcoal-light);
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.75;
}

.product-price-row {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(212, 197, 185, 0.25);
}

.product-price {
    font-family: 'Jost', 'Futura', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.product-compare-price {
    font-size: 1rem;
    color: var(--charcoal-faint);
    text-decoration: line-through;
}

.product-size-info {
    font-size: 0.78rem;
    color: var(--charcoal-light);
}

.product-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.product-actions .btn {
    flex: 1;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid rgba(212, 197, 185, 0.35);
    border-radius: 100px;
    overflow: hidden;
}

.quantity-btn {
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--charcoal);
    transition: background var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover { background: var(--petal); }

.quantity-value {
    width: 40px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 400;
}

.product-section {
    margin-bottom: 0;
}

.product-section-title {
    font-family: 'Jost', 'Futura', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 1.2rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    border-bottom: 1px solid rgba(212, 197, 185, 0.2);
}

.product-section-title::after {
    content: '+';
    font-size: 1rem;
    color: var(--taupe);
    margin-left: auto;
    transition: transform var(--transition);
    font-weight: 300;
}

.product-section.open .product-section-title::after {
    transform: rotate(45deg);
}

.product-section-content {
    display: none;
    font-size: 0.88rem;
    line-height: 1.85;
    color: var(--charcoal-light);
    font-weight: 300;
    padding: 1rem 0 1.5rem;
}

.product-section.open .product-section-content {
    display: block;
}

/* ==========================================
   ABOUT PAGE
   ========================================== */

.about-hero {
    padding: calc(var(--nav-height) + 6rem) 3rem 5rem;
    text-align: center;
    position: relative;
}

.about-hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.about-hero h1 {
    font-family: 'Jost', 'Futura', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    font-weight: 200;
    line-height: 1.15;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.about-hero h1 em {
    font-style: italic;
    color: var(--taupe);
}

.about-hero p {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--charcoal-light);
    font-weight: 300;
    max-width: 560px;
    margin: 0 auto;
}

.about-section {
    padding: 5rem 3rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.about-section-alt {
    background: var(--white);
    max-width: 100%;
    padding: 5rem 3rem;
}

.about-section-alt .about-section-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.about-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-two-col h2 {
    font-family: 'Jost', 'Futura', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.about-two-col p {
    font-size: 0.92rem;
    line-height: 1.9;
    color: var(--charcoal-light);
    font-weight: 300;
    margin-bottom: 1rem;
}

.about-visual-card {
    background: linear-gradient(135deg, var(--petal) 0%, var(--cream) 100%);
    border-radius: var(--radius);
    padding: 3rem;
    text-align: center;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 197, 185, 0.2);
}

.about-visual-card .emoji-large {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.about-visual-card h3 {
    font-family: 'Jost', 'Futura', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

.about-visual-card p {
    font-size: 0.82rem;
    color: var(--charcoal-light);
    font-weight: 300;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.about-value {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid rgba(212, 197, 185, 0.2);
}

.about-value .value-icon {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.about-value h3 {
    font-family: 'Jost', 'Futura', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

.about-value p {
    font-size: 0.82rem;
    line-height: 1.75;
    color: var(--charcoal-light);
    font-weight: 300;
}

/* Moldova Map / Stats */
.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 4rem 0;
}

.about-stat {
    text-align: center;
}

.about-stat .stat-number {
    font-family: 'Jost', 'Futura', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 2.5rem;
    font-weight: 200;
    color: var(--taupe-deep);
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

.about-stat .stat-label {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--charcoal-faint);
    font-weight: 400;
}

/* ==========================================
   CART PAGE
   ========================================== */

.cart-page {
    padding: calc(var(--nav-height) + 3rem) 3rem 6rem;
    max-width: 900px;
    margin: 0 auto;
}

.cart-page h1 {
    font-family: 'Jost', 'Futura', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 200;
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: -0.01em;
}

.cart-empty {
    text-align: center;
    padding: 4rem 2rem;
}

.cart-empty .empty-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    opacity: 0.35;
}

.cart-empty p {
    font-size: 0.95rem;
    color: var(--charcoal-light);
    margin-bottom: 2rem;
    font-weight: 300;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.cart-item {
    display: grid;
    grid-template-columns: 80px 1fr auto auto;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid rgba(212, 197, 185, 0.2);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--petal) 0%, var(--cream) 100%);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.cart-item-info h3 {
    font-family: 'Jost', 'Futura', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 0.25rem;
    letter-spacing: 0.01em;
}

.cart-item-info p {
    font-size: 0.78rem;
    color: var(--charcoal-faint);
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-qty-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(212, 197, 185, 0.35);
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--charcoal);
    transition: all var(--transition);
}

.cart-qty-btn:hover {
    background: var(--taupe-deep);
    color: var(--white);
    border-color: var(--taupe-deep);
}

.cart-item-price {
    font-family: 'Jost', 'Futura', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1.15rem;
    font-weight: 400;
    min-width: 80px;
    text-align: right;
    letter-spacing: 0.02em;
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--charcoal-faint);
    cursor: pointer;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color var(--transition);
    padding: 0.25rem;
    font-weight: 400;
}

.cart-item-remove:hover { color: #c44; }

.cart-summary {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    border: 1px solid rgba(212, 197, 185, 0.2);
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    font-size: 0.88rem;
}

.cart-summary-row.total {
    border-top: 1px solid var(--charcoal);
    margin-top: 0.5rem;
    padding-top: 1rem;
    font-weight: 400;
    font-size: 1rem;
}

.cart-summary-row.total .total-price {
    font-family: 'Jost', 'Futura', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.cart-checkout-btn {
    width: 100%;
    margin-top: 1.5rem;
}

.cart-continue {
    display: block;
    text-align: center;
    margin-top: 1rem;
    font-size: 0.72rem;
    color: var(--taupe);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 400;
}

.cart-continue:hover { color: var(--charcoal); }

/* ==========================================
   TOAST NOTIFICATIONS
   ========================================== */

.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--charcoal);
    color: var(--cream);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    z-index: 1000;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-lg);
    max-width: 350px;
    font-weight: 300;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast .toast-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.toast .toast-icon { font-size: 1.1rem; }

/* ==========================================
   LOADING STATE
   ========================================== */

.loading-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    flex-direction: column;
    gap: 1rem;
}

.loading-spinner {
    width: 32px;
    height: 32px;
    border: 1.5px solid rgba(212, 197, 185, 0.3);
    border-top-color: var(--taupe-deep);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-text {
    font-size: 0.72rem;
    color: var(--charcoal-faint);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 400;
}

/* ==========================================
   FOOTER
   ========================================== */

footer {
    background: var(--charcoal);
    color: var(--cream);
    padding: 4rem 3rem 2rem;
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    font-family: 'Jost', 'Futura', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1rem;
    letter-spacing: 0.25em;
    text-transform: lowercase;
    margin-bottom: 0.75rem;
    font-weight: 300;
}

.footer-tagline {
    font-size: 0.82rem;
    line-height: 1.75;
    color: rgba(240, 232, 224, 0.45);
    font-weight: 300;
}

.footer-col h4 {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--nude);
    margin-bottom: 1rem;
    font-weight: 400;
}

.footer-col a {
    display: block;
    font-size: 0.82rem;
    color: rgba(240, 232, 224, 0.5);
    margin-bottom: 0.6rem;
    transition: color var(--transition);
    font-weight: 300;
}

.footer-col a:hover { color: var(--cream); }

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(240, 232, 224, 0.08);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.68rem;
    color: rgba(240, 232, 224, 0.3);
    letter-spacing: 0.08em;
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 768px) {
    nav {
        padding: 0 1.5rem;
    }

    .nav-links { display: none; }
    .nav-mobile-toggle { display: flex; }

    .hero { padding: 7rem 1.5rem 3rem; }
    .hero-actions { flex-direction: column; align-items: center; }

    .philosophy { padding: 4rem 1.5rem; }
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .philosophy-visual {
        max-width: 320px;
        margin: 0 auto;
    }

    .features { padding: 4rem 1.5rem; }
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .origin { padding: 5rem 1.5rem; }
    .closing { padding: 4rem 1.5rem 5rem; }

    .ingredient-card:nth-child(2) { margin-top: 0; }
    .ingredient-card:nth-child(3) { margin-top: 0; }

    .page-header { padding: calc(var(--nav-height) + 2.5rem) 1.5rem 2rem; }
    .products-grid {
        padding: 0 1.5rem 4rem;
        grid-template-columns: 1fr;
    }

    .product-detail { padding: calc(var(--nav-height) + 1.5rem) 1.5rem 4rem; }
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .product-image-area {
        height: 300px;
        position: static;
    }

    .about-hero { padding: calc(var(--nav-height) + 3rem) 1.5rem 3rem; }
    .about-two-col {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .about-values-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .about-section { padding: 3rem 1.5rem; }
    .about-section-alt { padding: 3rem 1.5rem; }

    .cart-page { padding: calc(var(--nav-height) + 2rem) 1.5rem 4rem; }
    .cart-item {
        grid-template-columns: 60px 1fr;
        gap: 1rem;
    }
    .cart-item-quantity { grid-column: 1 / -1; justify-self: start; }
    .cart-item-price { grid-column: 1 / -1; text-align: left; }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .featured-products { padding: 4rem 1.5rem; }
    .section-header { margin-bottom: 2.5rem; }

    .toast {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-card-image { height: 220px; font-size: 4rem; }
    .product-image-area { height: 250px; font-size: 6rem; }
}

/* ==========================================
   PROMO BANNER
   ========================================== */

.promo-banner {
    padding: 1rem 3rem;
    text-align: center;
}

.promo-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--white);
    padding: 0.85rem 2rem;
    border-radius: 100px;
    border: 1px solid rgba(212, 197, 185, 0.25);
}

.promo-icon {
    font-size: 1.2rem;
}

.promo-inner p {
    font-size: 0.78rem;
    color: var(--charcoal);
    letter-spacing: 0.04em;
    font-weight: 300;
}

.promo-inner p strong {
    font-weight: 500;
}

/* ==========================================
   PRODUCT META BADGE
   ========================================== */

.product-meta-badge {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.product-meta-badge span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    color: var(--taupe-deep);
    background: var(--petal);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-weight: 400;
}
