/* ============================
   MettaWear — Design System
   ============================ */

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

:root {
    --warm-cream: #F5F0E8;
    --deep-rust: #A0522D;
    --soft-terracotta: #C4724E;
    --earth-dark: #2C1810;
    --muted-sage: #8B9A7B;
    --linen: #FAF7F2;
    --text-primary: #2C1810;
    --text-secondary: #6B5A4E;
    --dusty-rose: #B07D82;
    --cloud: #D5CEC5;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--linen);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ---- NAVIGATION ---- */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(250, 247, 242, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(44, 24, 16, 0.06);
    transition: background 0.3s;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 5px;
    text-decoration: none;
    color: var(--earth-dark);
}

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

.nav-links a {
    font-size: 14px;
    color: var(--text-secondary);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--earth-dark);
}

.nav-cta {
    background: var(--earth-dark) !important;
    color: var(--warm-cream) !important;
    padding: 10px 24px !important;
    border-radius: 2px;
    font-weight: 500 !important;
    letter-spacing: 1px !important;
    font-size: 12px !important;
    text-transform: uppercase;
    transition: opacity 0.2s !important;
}

.nav-cta:hover {
    opacity: 0.85;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 28px;
    height: 20px;
    position: relative;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--earth-dark);
    position: absolute;
    left: 0;
    transition: all 0.3s;
}

.nav-toggle span:first-child { top: 4px; }
.nav-toggle span:last-child { bottom: 4px; }

.nav-toggle.active span:first-child {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.nav-toggle.active span:last-child {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

@media (max-width: 768px) {
    .nav-toggle { display: block; }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(250, 247, 242, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid rgba(44, 24, 16, 0.06);
    }
    .nav-links.open { display: flex; }
}

/* ---- BUTTONS ---- */
.btn {
    display: inline-block;
    text-decoration: none;
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 16px 36px;
    border-radius: 2px;
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--earth-dark);
    color: var(--warm-cream);
}

.btn-primary:hover {
    background: #3D261B;
    transform: translateY(-1px);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid rgba(44, 24, 16, 0.15);
}

.btn-ghost:hover {
    border-color: var(--earth-dark);
    color: var(--earth-dark);
}

.btn-lg {
    padding: 20px 48px;
    font-size: 14px;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 11px;
    letter-spacing: 1.5px;
}

.btn-accent {
    background: var(--deep-rust);
    color: #fff;
}

.btn-accent:hover {
    background: #8B4323;
    transform: translateY(-1px);
}

/* ---- SECTION LABEL ---- */
.section-label {
    font-family: 'Syne', sans-serif;
    font-size: 12px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--soft-terracotta);
    margin-bottom: 40px;
}

/* ---- HERO ---- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 100px 24px 60px;
    position: relative;
    background: linear-gradient(170deg, var(--linen) 0%, var(--warm-cream) 50%, #E8DDD0 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(196, 114, 78, 0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 80%, rgba(139, 154, 123, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.hero > * { position: relative; z-index: 1; }

.hero-brand-label {
    font-family: 'Syne', sans-serif;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--soft-terracotta);
    margin-bottom: 48px;
}

.hero h1 {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(40px, 7vw, 84px);
    line-height: 1.05;
    color: var(--earth-dark);
    max-width: 800px;
    margin-bottom: 32px;
}

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

.hero-sub {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 520px;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 48px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 64px;
}

.hero-days-strip {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.hero-days-strip span {
    font-family: 'Syne', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dc, #A0522D);
    color: #fff;
    opacity: 0.8;
    transition: opacity 0.2s, transform 0.2s;
}

.hero-days-strip span:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* ---- RITUAL ---- */
.ritual {
    padding: 120px 24px;
    background: var(--earth-dark);
    color: var(--warm-cream);
}

.ritual-inner {
    max-width: 900px;
    margin: 0 auto;
}

.ritual .section-label {
    color: var(--soft-terracotta);
}

.ritual h2 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.2;
    margin-bottom: 48px;
    color: var(--warm-cream);
}

.ritual-steps {
    display: grid;
    gap: 40px;
}

.ritual-step {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 24px;
    align-items: start;
}

.step-number {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 36px;
    color: var(--soft-terracotta);
    opacity: 0.6;
    line-height: 1;
}

.step-content h3 {
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--warm-cream);
}

.step-content p {
    font-size: 16px;
    color: rgba(245, 240, 232, 0.65);
    line-height: 1.8;
    font-weight: 300;
}

/* ---- DAYS GRID (LANDING) ---- */
.days {
    padding: 120px 24px;
    background: var(--warm-cream);
}

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

.days-header {
    text-align: center;
    margin-bottom: 64px;
}

.days-header h2 {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(28px, 4vw, 48px);
    color: var(--earth-dark);
    margin-bottom: 16px;
}

.days-header p {
    color: var(--text-secondary);
    font-size: 17px;
    font-weight: 300;
}

.days-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2px;
    margin-bottom: 48px;
}

.day-card {
    padding: 32px 28px;
    background: var(--linen);
    text-decoration: none;
    color: inherit;
    position: relative;
    transition: all 0.3s ease;
    display: block;
}

.day-card:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(44, 24, 16, 0.08);
}

.day-swatch {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-bottom: 16px;
}

.day-name {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--soft-terracotta);
    margin-bottom: 8px;
}

.day-shirt-name {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--earth-dark);
    margin-bottom: 8px;
}

.day-mantra {
    font-style: italic;
    font-size: 15px;
    line-height: 1.5;
    color: var(--text-secondary);
    font-weight: 300;
    margin-bottom: 8px;
}

.day-theme {
    font-size: 12px;
    color: var(--text-secondary);
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.7;
}

.days-cta {
    text-align: center;
    margin-top: 48px;
}

/* ---- PHILOSOPHY ---- */
.philosophy {
    padding: 120px 24px;
    background: var(--linen);
}

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

.philosophy blockquote {
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: clamp(22px, 3.5vw, 32px);
    line-height: 1.5;
    color: var(--earth-dark);
    margin-bottom: 32px;
}

.philosophy p {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.9;
    font-weight: 300;
}

/* ---- THE SET (LANDING) ---- */
.the-set {
    padding: 100px 24px;
    background: linear-gradient(180deg, var(--warm-cream) 0%, #E2D5C5 100%);
    text-align: center;
}

.the-set-inner {
    max-width: 600px;
    margin: 0 auto;
}

.set-colors {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 32px;
}

.set-colors span {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-block;
}

.the-set h2 {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(28px, 4vw, 42px);
    color: var(--earth-dark);
    margin-bottom: 24px;
}

.the-set p {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 8px;
}

.set-pricing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 32px 0;
}

.price-was {
    font-size: 18px;
    color: var(--text-secondary);
    text-decoration: line-through;
    opacity: 0.6;
}

.price-now {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 32px;
    color: var(--earth-dark);
}

.price-save {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted-sage);
    font-weight: 600;
    background: rgba(139, 154, 123, 0.15);
    padding: 4px 12px;
    border-radius: 2px;
}

/* ---- CLOSING ---- */
.closing {
    padding: 120px 24px;
    background: var(--earth-dark);
    text-align: center;
}

.closing-inner {
    max-width: 600px;
    margin: 0 auto;
}

.closing h2 {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(28px, 5vw, 52px);
    color: var(--warm-cream);
    line-height: 1.15;
    margin-bottom: 24px;
}

.closing p {
    font-size: 17px;
    color: rgba(245, 240, 232, 0.55);
    line-height: 1.8;
    font-weight: 300;
}

/* ---- FOOTER ---- */
.site-footer {
    padding: 60px 24px 32px;
    background: var(--earth-dark);
    border-top: 1px solid rgba(245, 240, 232, 0.08);
}

.footer-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 40px;
}

.footer-logo {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 5px;
    color: var(--warm-cream);
    margin-bottom: 8px;
}

.footer-tagline {
    font-size: 14px;
    color: rgba(245, 240, 232, 0.4);
    font-weight: 300;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(245, 240, 232, 0.5);
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-copy {
    text-align: center;
    font-size: 12px;
    color: rgba(245, 240, 232, 0.2);
    letter-spacing: 1px;
}

@media (max-width: 600px) {
    .footer-inner { flex-direction: column; gap: 24px; }
    .footer-links { flex-wrap: wrap; gap: 16px; }
}

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

.shop-hero {
    padding: 140px 24px 60px;
    text-align: center;
    background: linear-gradient(170deg, var(--linen) 0%, var(--warm-cream) 100%);
}

.shop-hero h1 {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(32px, 5vw, 56px);
    color: var(--earth-dark);
    margin-bottom: 16px;
}

.shop-hero p {
    font-size: 18px;
    color: var(--text-secondary);
    font-weight: 300;
    max-width: 500px;
    margin: 0 auto;
}

/* Product Grid */
.shop-grid-section {
    padding: 80px 24px;
    background: var(--linen);
}

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

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.product-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    display: block;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(44, 24, 16, 0.1);
}

.product-card-visual {
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-card-visual .shirt-mock {
    width: 120px;
    height: 150px;
    border-radius: 4px 4px 40px 40px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.product-card-visual .shirt-mock::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 12px;
    border-radius: 0 0 15px 15px;
    background: rgba(0,0,0,0.08);
}

.shirt-mock-text {
    font-family: 'Syne', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    text-align: center;
    padding: 0 12px;
}

.product-card-info {
    padding: 24px;
}

.product-card-day {
    font-family: 'Syne', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--soft-terracotta);
    margin-bottom: 8px;
}

.product-card-name {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: var(--earth-dark);
    margin-bottom: 8px;
}

.product-card-mantra {
    font-style: italic;
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 16px;
}

.product-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-card-price {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--earth-dark);
}

.product-card-theme {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-secondary);
    opacity: 0.7;
}

/* Full Set Card */
.full-set-card {
    background: var(--earth-dark);
    border-radius: 4px;
    padding: 60px 48px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.full-set-card h2 {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 32px;
    color: var(--warm-cream);
    margin-bottom: 16px;
}

.full-set-card p {
    font-size: 16px;
    color: rgba(245, 240, 232, 0.6);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 8px;
}

.full-set-colors {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
}

.full-set-colors span {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-block;
}

.full-set-pricing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 24px 0 32px;
}

.full-set-pricing .price-was {
    font-size: 18px;
    color: rgba(245, 240, 232, 0.4);
    text-decoration: line-through;
}

.full-set-pricing .price-now {
    font-size: 36px;
    color: var(--warm-cream);
}

.full-set-pricing .price-save {
    background: rgba(139, 154, 123, 0.25);
    color: var(--muted-sage);
}

.full-set-card .btn-primary {
    background: var(--soft-terracotta);
}

.full-set-card .btn-primary:hover {
    background: var(--deep-rust);
}

/* ============================
   SHIRT DETAIL PAGE
   ============================ */

.detail-page {
    padding-top: 80px;
}

.detail-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
}

@media (max-width: 768px) {
    .detail-hero { grid-template-columns: 1fr; }
}

.detail-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.detail-shirt-mock {
    width: 240px;
    height: 300px;
    border-radius: 8px 8px 80px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    position: relative;
}

.detail-shirt-mock::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 24px;
    border-radius: 0 0 30px 30px;
    background: rgba(0,0,0,0.08);
}

.detail-shirt-text {
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    text-align: center;
    padding: 0 24px;
}

.detail-info {
    padding: 80px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 768px) {
    .detail-info { padding: 40px 24px 60px; }
    .detail-visual { padding: 40px 24px; min-height: 400px; }
}

.detail-day-label {
    font-family: 'Syne', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--soft-terracotta);
    margin-bottom: 12px;
}

.detail-name {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(32px, 5vw, 48px);
    line-height: 1.1;
    color: var(--earth-dark);
    margin-bottom: 16px;
}

.detail-mantra {
    font-style: italic;
    font-size: 20px;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 24px;
}

.detail-theme-badge {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 2px;
    color: var(--text-secondary);
    border: 1px solid rgba(44, 24, 16, 0.12);
    margin-bottom: 32px;
}

.detail-price {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 28px;
    color: var(--earth-dark);
    margin-bottom: 24px;
}

.detail-sizes {
    margin-bottom: 24px;
}

.detail-sizes label {
    display: block;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 12px;
    font-weight: 500;
}

.size-options {
    display: flex;
    gap: 8px;
}

.size-btn {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(44, 24, 16, 0.15);
    background: transparent;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 2px;
}

.size-btn:hover, .size-btn.active {
    background: var(--earth-dark);
    color: var(--warm-cream);
    border-color: var(--earth-dark);
}

.detail-buy-section {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
}

.detail-description {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(44, 24, 16, 0.08);
}

.detail-description p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    font-weight: 300;
}

/* Ritual Section on Detail Page */
.detail-ritual {
    padding: 80px 24px;
    background: var(--earth-dark);
    color: var(--warm-cream);
}

.detail-ritual-inner {
    max-width: 700px;
    margin: 0 auto;
}

.detail-ritual .section-label {
    color: var(--soft-terracotta);
}

.detail-ritual h2 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: clamp(24px, 3vw, 36px);
    color: var(--warm-cream);
    margin-bottom: 32px;
}

.detail-ritual-text {
    font-size: 17px;
    color: rgba(245, 240, 232, 0.7);
    line-height: 2;
    font-weight: 300;
}

/* Other shirts navigation */
.other-shirts {
    padding: 80px 24px;
    background: var(--warm-cream);
}

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

.other-shirts h2 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: var(--earth-dark);
    margin-bottom: 32px;
    text-align: center;
}

.other-shirts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
}

.other-shirt-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    padding: 20px 16px;
    background: var(--linen);
    border-radius: 4px;
    transition: all 0.2s;
}

.other-shirt-link:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(44, 24, 16, 0.08);
}

.other-shirt-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    margin-bottom: 12px;
}

.other-shirt-day {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.other-shirt-name {
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--earth-dark);
}

/* ============================
   CHECKOUT MODAL
   ============================ */
.checkout-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(44, 24, 16, 0.6);
    backdrop-filter: blur(4px);
    z-index: 200;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.checkout-overlay.active {
    display: flex;
}

.checkout-modal {
    background: var(--linen);
    max-width: 460px;
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
}

.checkout-header {
    background: var(--earth-dark);
    padding: 24px 32px;
    color: var(--warm-cream);
}

.checkout-header h3 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 20px;
}

.checkout-header p {
    font-size: 14px;
    color: rgba(245, 240, 232, 0.5);
    margin-top: 4px;
}

.checkout-body {
    padding: 32px;
}

.checkout-field {
    margin-bottom: 20px;
}

.checkout-field label {
    display: block;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 8px;
    font-weight: 500;
}

.checkout-field input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(44, 24, 16, 0.12);
    background: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: var(--text-primary);
    border-radius: 2px;
    transition: border-color 0.2s;
    outline: none;
}

.checkout-field input:focus {
    border-color: var(--soft-terracotta);
}

.checkout-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-top: 1px solid rgba(44, 24, 16, 0.08);
    margin-bottom: 24px;
}

.checkout-total span:first-child {
    font-size: 14px;
    color: var(--text-secondary);
}

.checkout-total span:last-child {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 24px;
    color: var(--earth-dark);
}

.checkout-actions {
    display: flex;
    gap: 12px;
}

.checkout-actions .btn {
    flex: 1;
    text-align: center;
}

/* ---- PENDING BANNER ---- */
.pending-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 150;
    background: var(--earth-dark);
    color: var(--warm-cream);
}

.pending-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.pending-inner p {
    font-size: 14px;
}

.pending-inner.success {
    background: var(--muted-sage);
    justify-content: center;
}

.pending-actions {
    display: flex;
    gap: 8px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 600px) {
    .hero { padding: 100px 20px 60px; min-height: 90vh; }
    .ritual { padding: 80px 20px; }
    .ritual-step { grid-template-columns: 40px 1fr; gap: 16px; }
    .step-number { font-size: 28px; }
    .days { padding: 80px 20px; }
    .days-grid { grid-template-columns: 1fr; }
    .philosophy { padding: 80px 20px; }
    .the-set { padding: 80px 20px; }
    .closing { padding: 80px 20px; }
    .shop-grid { grid-template-columns: 1fr; }
    .full-set-card { padding: 40px 24px; }
    .detail-hero { grid-template-columns: 1fr; }
    .hero-days-strip span { width: 36px; height: 36px; font-size: 9px; }
}
