/* VelvetNoir Store Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --black: #0a0a0a;
    --charcoal: #1a1a1a;
    --graphite: #2a2a2a;
    --gold: #c9a96e;
    --gold-light: #dfc49a;
    --rose: #c4878e;
    --rose-muted: #9e6b70;
    --cream: #f0ebe3;
    --text: #e8e4de;
    --text-muted: #8a8580;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--black);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
    min-height: 100vh;
}

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

/* ---- NAVIGATION ---- */
.store-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 48px;
    height: 72px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10,10,10,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201,169,110,0.06);
}

.store-nav .logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    transition: opacity 0.3s;
}

.store-nav .logo:hover { opacity: 0.8; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s;
}

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

.nav-cart {
    display: flex;
    align-items: center;
    gap: 6px;
}

.cart-badge {
    background: var(--gold);
    color: var(--black);
    font-size: 0.65rem;
    font-weight: 500;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.cart-badge:empty { display: none; }

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

.nav-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--text-muted);
    transition: all 0.3s;
}

/* ---- MAIN CONTENT ---- */
main {
    padding-top: 72px;
    min-height: calc(100vh - 160px);
}

/* ---- COLLECTION HERO ---- */
.collection-hero {
    padding: 100px 48px 80px;
    position: relative;
    background:
        radial-gradient(ellipse at 70% 30%, rgba(201,169,110,0.04) 0%, transparent 60%),
        var(--black);
}

.collection-hero .section-label {
    font-size: 0.65rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--rose-muted);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.collection-hero .section-label::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--rose-muted);
}

.collection-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--cream);
    margin-bottom: 20px;
}

.collection-hero p {
    font-weight: 300;
    color: var(--text-muted);
    max-width: 560px;
    line-height: 1.8;
    font-size: 1rem;
}

.collection-count {
    margin-top: 32px;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.collection-count span {
    color: var(--gold);
}

/* ---- PRODUCT GRID ---- */
.product-grid-section {
    padding: 0 48px 120px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    display: flex;
    flex-direction: column;
    background: var(--charcoal);
    border: 1px solid rgba(201,169,110,0.06);
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.product-card:hover {
    border-color: rgba(201,169,110,0.15);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.product-card-image {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.product-card-image .brand-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: rgba(255,255,255,0.08);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
}

.product-card-image .product-icon {
    width: 80px;
    height: 80px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.product-card-image .product-icon::after {
    content: '';
    width: 20px;
    height: 20px;
    background: rgba(201,169,110,0.3);
    border-radius: 50%;
}

.product-card-body {
    padding: 28px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card .product-brand {
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.product-card .product-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 8px;
    line-height: 1.3;
}

.product-card .product-desc {
    font-size: 0.82rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 16px;
}

.product-card .product-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--cream);
}

.product-card .product-price .currency {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: 'DM Sans', sans-serif;
    margin-left: 4px;
}

/* ---- PRODUCT DETAIL ---- */
.breadcrumb {
    padding: 24px 48px;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--text-muted);
    transition: color 0.2s;
}

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

.breadcrumb .sep {
    margin: 0 10px;
    opacity: 0.4;
}

.product-detail {
    padding: 20px 48px 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-detail-image {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201,169,110,0.06);
    position: relative;
    overflow: hidden;
}

.product-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.product-detail-image:hover img {
    transform: scale(1.03);
}

.product-detail-image .brand-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 300;
    color: rgba(255,255,255,0.06);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    position: absolute;
}

.product-detail-image .product-icon-lg {
    width: 120px;
    height: 120px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.product-detail-image .product-icon-lg::after {
    content: '';
    width: 32px;
    height: 32px;
    background: rgba(201,169,110,0.3);
    border-radius: 50%;
}

.product-detail-info {
    display: flex;
    flex-direction: column;
    padding-top: 20px;
}

.product-detail-info .product-brand {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.product-detail-info h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 300;
    color: var(--cream);
    margin-bottom: 8px;
    line-height: 1.2;
}

.product-detail-info .product-tagline {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.7;
}

.product-detail-info .product-price-lg {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 32px;
}

.product-detail-info .product-price-lg .currency {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-left: 4px;
}

.product-detail-info .product-description {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 32px;
    border-top: 1px solid rgba(201,169,110,0.08);
    padding-top: 24px;
}

.product-features {
    list-style: none;
    margin-bottom: 40px;
}

.product-features li {
    font-size: 0.82rem;
    font-weight: 300;
    color: var(--text-muted);
    padding: 8px 0;
    border-bottom: 1px solid rgba(201,169,110,0.04);
    display: flex;
    align-items: center;
    gap: 12px;
}

.product-features li::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Add to Cart Button */
.btn-add-cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 48px;
    background: var(--gold);
    color: var(--black);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 16px;
    width: 100%;
}

.btn-add-cart:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

.btn-add-cart:active {
    transform: translateY(0);
}

.btn-add-cart.added {
    background: var(--graphite);
    color: var(--gold);
    border: 1px solid var(--gold);
}

.discreet-note {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-align: center;
}

/* Stock badge */
.stock-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #6abf69;
    margin-bottom: 24px;
}

.stock-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #6abf69;
    border-radius: 50%;
}

/* ---- RELATED PRODUCTS ---- */
.related-section {
    padding: 80px 48px 120px;
    border-top: 1px solid rgba(201,169,110,0.06);
}

.related-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--cream);
    text-align: center;
    margin-bottom: 48px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ---- CART ---- */
.cart-page {
    padding: 60px 48px 120px;
    max-width: 900px;
    margin: 0 auto;
}

.cart-page h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 300;
    color: var(--cream);
    margin-bottom: 48px;
}

.cart-empty {
    text-align: center;
    padding: 80px 0;
}

.cart-empty p {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 300;
    margin-bottom: 32px;
}

.cart-empty a {
    display: inline-block;
    padding: 14px 40px;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: all 0.3s;
}

.cart-empty a:hover {
    background: var(--gold);
    color: var(--black);
}

.cart-items {
    border-top: 1px solid rgba(201,169,110,0.08);
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto auto;
    gap: 24px;
    align-items: center;
    padding: 28px 0;
    border-bottom: 1px solid rgba(201,169,110,0.06);
}

.cart-item-image {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201,169,110,0.06);
    overflow: hidden;
}

.cart-item-image .mini-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-image .mini-icon::after {
    content: '';
    width: 12px;
    height: 12px;
    background: rgba(201,169,110,0.3);
    border-radius: 50%;
}

.cart-item-info .item-brand {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
}

.cart-item-info .item-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    color: var(--cream);
    margin-bottom: 8px;
}

.cart-item-info .item-remove {
    font-size: 0.7rem;
    color: var(--text-muted);
    cursor: pointer;
    background: none;
    border: none;
    letter-spacing: 0.1em;
    transition: color 0.2s;
    padding: 0;
}

.cart-item-info .item-remove:hover { color: var(--rose); }

/* Quantity controls */
.qty-control {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid rgba(201,169,110,0.1);
}

.qty-control button {
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.qty-control button:hover {
    color: var(--gold);
    background: rgba(201,169,110,0.05);
}

.qty-control .qty-value {
    width: 40px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text);
    border-left: 1px solid rgba(201,169,110,0.1);
    border-right: 1px solid rgba(201,169,110,0.1);
    padding: 8px 0;
}

.cart-item-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--cream);
    text-align: right;
    min-width: 80px;
}

/* Cart summary */
.cart-summary {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(201,169,110,0.1);
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 0.88rem;
}

.cart-summary-row.label {
    color: var(--text-muted);
    font-weight: 300;
}

.cart-summary-row.total {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--cream);
    padding-top: 20px;
    margin-top: 12px;
    border-top: 1px solid rgba(201,169,110,0.1);
}

.cart-summary-row .free-shipping {
    color: #6abf69;
    font-size: 0.78rem;
}

.btn-checkout {
    display: block;
    width: 100%;
    padding: 18px;
    background: var(--gold);
    color: var(--black);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 28px;
    text-align: center;
}

.btn-checkout:hover {
    background: var(--gold-light);
}

.cart-note {
    text-align: center;
    margin-top: 16px;
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
}

/* ---- CHECKOUT ---- */
.checkout-page {
    padding: 60px 48px 120px;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
}

.checkout-page h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--cream);
    margin-bottom: 40px;
    grid-column: 1 / -1;
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(201,169,110,0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.form-group input,
.form-group select {
    padding: 14px 16px;
    background: var(--charcoal);
    border: 1px solid rgba(201,169,110,0.1);
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--gold);
}

.form-group input::placeholder {
    color: var(--text-muted);
    opacity: 0.5;
}

.form-group select {
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%238a8580' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group select option {
    background: var(--charcoal);
    color: var(--text);
}

/* Checkout order summary sidebar */
.checkout-summary {
    background: var(--charcoal);
    border: 1px solid rgba(201,169,110,0.08);
    padding: 32px;
    position: sticky;
    top: 104px;
    align-self: start;
}

.checkout-summary h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(201,169,110,0.08);
}

.checkout-summary-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid rgba(201,169,110,0.04);
}

.checkout-summary-item .item-detail {
    flex: 1;
}

.checkout-summary-item .item-detail .si-brand {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}

.checkout-summary-item .item-detail .si-name {
    font-size: 0.85rem;
    color: var(--cream);
    margin-top: 2px;
}

.checkout-summary-item .item-detail .si-qty {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.checkout-summary-item .item-price {
    font-size: 0.88rem;
    color: var(--text);
    white-space: nowrap;
    margin-left: 16px;
}

.payment-secure-note {
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 20px;
    padding: 14px 16px;
    background: rgba(201,169,110,0.03);
    border: 1px solid rgba(201,169,110,0.06);
    text-align: center;
}

.btn-place-order {
    display: block;
    width: 100%;
    padding: 18px;
    background: var(--gold);
    color: var(--black);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 16px;
}

.btn-place-order:hover {
    background: var(--gold-light);
}

.btn-place-order:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.checkout-discreet {
    margin-top: 16px;
    padding: 16px;
    background: rgba(201,169,110,0.03);
    border: 1px solid rgba(201,169,110,0.06);
}

.checkout-discreet p {
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.checkout-discreet strong {
    color: var(--gold);
    font-weight: 400;
}

/* ---- ORDER CONFIRMATION ---- */
.order-confirmation {
    padding: 80px 48px 120px;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.order-confirmation .check-icon {
    width: 64px;
    height: 64px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    color: var(--gold);
    font-size: 1.5rem;
}

.order-confirmation h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 300;
    color: var(--cream);
    margin-bottom: 16px;
}

.order-confirmation .order-number {
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}

.order-confirmation .order-message {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 48px;
}

.order-details {
    text-align: left;
    border: 1px solid rgba(201,169,110,0.08);
    padding: 32px;
    margin-bottom: 40px;
}

.order-details h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 20px;
}

.order-detail-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(201,169,110,0.04);
}

.order-detail-row .label { color: var(--text-muted); }
.order-detail-row .value { color: var(--cream); }

.order-detail-row.total {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    border-bottom: none;
    padding-top: 16px;
    margin-top: 8px;
    border-top: 1px solid rgba(201,169,110,0.08);
}

.btn-continue {
    display: inline-block;
    padding: 16px 48px;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: all 0.3s;
}

.btn-continue:hover {
    background: var(--gold);
    color: var(--black);
}

/* ---- NOT FOUND / ERROR ---- */
.error-page {
    padding: 120px 48px;
    text-align: center;
}

.error-page h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    color: var(--cream);
    margin-bottom: 16px;
}

.error-page p {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 300;
    margin-bottom: 32px;
}

/* ---- FOOTER ---- */
.store-footer {
    padding: 60px 48px;
    border-top: 1px solid rgba(201,169,110,0.08);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 32px;
}

.store-footer .footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
}

.footer-nav {
    display: flex;
    gap: 28px;
}

.footer-nav a {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color 0.2s;
}

.footer-nav a:hover { color: var(--gold); }

.store-footer .footer-text {
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-align: right;
}

/* ---- DIVIDER ---- */
.divider {
    width: 100%;
    padding: 0 48px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--graphite), transparent);
}

.divider-diamond {
    width: 6px;
    height: 6px;
    background: var(--gold);
    transform: rotate(45deg);
}

/* ---- TOAST NOTIFICATION ---- */
.toast {
    position: fixed;
    bottom: 32px;
    right: 32px;
    background: var(--charcoal);
    border: 1px solid rgba(201,169,110,0.15);
    padding: 16px 24px;
    font-size: 0.82rem;
    color: var(--cream);
    z-index: 200;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

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

.toast .toast-gold { color: var(--gold); }

/* ---- LOADING SPINNER ---- */
.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px;
}

.spinner {
    width: 32px;
    height: 32px;
    border: 2px solid rgba(201,169,110,0.1);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .related-grid { grid-template-columns: repeat(2, 1fr); }
    .product-detail { gap: 40px; }
    .checkout-page { grid-template-columns: 1fr; }
    .checkout-summary { position: static; }
}

@media (max-width: 768px) {
    .store-nav { padding: 0 24px; }

    .nav-links {
        display: none;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(10,10,10,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 32px 24px;
        gap: 24px;
        border-bottom: 1px solid rgba(201,169,110,0.08);
    }

    .nav-links.open { display: flex; }
    .nav-toggle { display: flex; }

    .collection-hero { padding: 80px 24px 60px; }
    .product-grid-section { padding: 0 24px 80px; }
    .product-grid { grid-template-columns: 1fr; }

    .breadcrumb { padding: 16px 24px; }

    .product-detail {
        padding: 20px 24px 80px;
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-detail-image { max-height: 400px; }

    .related-section { padding: 60px 24px 80px; }
    .related-grid { grid-template-columns: 1fr; }

    .cart-page { padding: 40px 24px 80px; }

    .cart-item {
        grid-template-columns: 80px 1fr;
        gap: 16px;
    }

    .cart-item-image { width: 80px; height: 80px; }

    .qty-control { grid-column: 1 / -1; justify-self: start; }
    .cart-item-price { grid-column: 1 / -1; text-align: left; }

    .checkout-page {
        padding: 40px 24px 80px;
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .order-confirmation { padding: 60px 24px 80px; }

    .store-footer { padding: 40px 24px; }
    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 16px;
    }
    .footer-nav { justify-content: center; }
    .store-footer .footer-text { text-align: center; }

    .toast { left: 24px; right: 24px; bottom: 24px; }
}

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