/* ===== COMMON ===== */
:root {
  --red: #C1272D; --ochre: #D4870A; --gold: #E8A820;
  --green: #2D6A4F; --black: #1A0A00; --cream: #FDF6E3; --warm: #F5E6C8;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--black); overflow-x: hidden; }

.pattern-border { height: 12px; background: repeating-linear-gradient(90deg, var(--red) 0px, var(--red) 8px, var(--gold) 8px, var(--gold) 16px, var(--green) 16px, var(--green) 24px, var(--ochre) 24px, var(--ochre) 32px); }

nav { background: var(--black); padding: 0 60px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 100; border-bottom: 3px solid var(--ochre); }
.logo { display: flex; flex-direction: column; padding: 8px 0; text-decoration: none; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { color: var(--warm); text-decoration: none; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 500; transition: color 0.2s; opacity: 0.85; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); opacity: 1; }
.cart-btn { background: var(--red); color: white; border: none; padding: 10px 20px; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; font-family: 'DM Sans', sans-serif; font-weight: 500; }
.cart-btn:hover { background: var(--ochre); }

footer { background: #0D0500; padding: 60px 60px 0; border-top: 3px solid var(--red); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-family: 'Cormorant Garamond', serif; font-size: 16px; color: var(--warm); opacity: 0.6; line-height: 1.7; margin: 16px 0 24px; max-width: 260px; }
.social-links { display: flex; gap: 12px; }
.social-btn { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--warm); text-decoration: none; transition: all 0.2s; }
.social-btn:hover { background: var(--red); border-color: var(--red); }
.footer-col h4 { font-family: 'Playfair Display', serif; font-size: 15px; color: var(--gold); font-weight: 700; margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13px; color: var(--warm); opacity: 0.6; text-decoration: none; transition: opacity 0.2s; }
.footer-col ul li a:hover { opacity: 1; color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p { font-size: 12px; color: var(--warm); opacity: 0.4; }

/* ===== INDEX.CSS ===== */
:root {
  --red: #C1272D;
  --ochre: #D4870A;
  --gold: #E8A820;
  --green: #2D6A4F;
  --black: #1A0A00;
  --cream: #FDF6E3;
  --warm: #F5E6C8;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--black); overflow-x: hidden; }

/* PATTERN BORDER */
.pattern-border {
  height: 12px;
  background: repeating-linear-gradient(90deg, var(--red) 0px, var(--red) 8px, var(--gold) 8px, var(--gold) 16px, var(--green) 16px, var(--green) 24px, var(--ochre) 24px, var(--ochre) 32px);
}

/* NAV */
nav {
  background: var(--black);
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--ochre);
}
.logo { display: flex; flex-direction: column; padding: 14px 0; text-decoration: none; }
.logo-main { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 900; color: var(--gold); letter-spacing: 2px; line-height: 1; }
.logo-sub { font-family: 'Cormorant Garamond', serif; font-size: 11px; color: var(--warm); letter-spacing: 4px; text-transform: uppercase; opacity: 0.7; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { color: var(--warm); text-decoration: none; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 500; transition: color 0.2s; opacity: 0.85; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); opacity: 1; }
.cart-btn { background: var(--red); color: white; border: none; padding: 10px 20px; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; font-family: 'DM Sans', sans-serif; font-weight: 500; transition: background 0.2s; }
.cart-btn:hover { background: var(--ochre); }

/* HERO */
.hero { min-height: 90vh; background: var(--black); display: grid; grid-template-columns: 1fr 1fr; position: relative; overflow: hidden; }
.hero-left { padding: 80px 60px; display: flex; flex-direction: column; justify-content: center; position: relative; z-index: 2; }
.hero-tag { display: inline-block; background: var(--red); color: white; font-size: 10px; letter-spacing: 3px; text-transform: uppercase; padding: 6px 14px; margin-bottom: 28px; width: fit-content; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(48px, 5.5vw, 78px); color: var(--cream); line-height: 1.05; font-weight: 900; margin-bottom: 12px; }
.hero h1 em { color: var(--gold); font-style: italic; }
.hero-desc { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: var(--warm); opacity: 0.75; line-height: 1.7; max-width: 420px; margin: 20px 0 40px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary { background: var(--red); color: white; border: none; padding: 16px 36px; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; font-family: 'DM Sans', sans-serif; font-weight: 500; transition: all 0.2s; text-decoration: none; display: inline-block; }
.btn-primary:hover { background: var(--ochre); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--gold); border: 1.5px solid var(--gold); padding: 16px 36px; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; font-family: 'DM Sans', sans-serif; font-weight: 500; transition: all 0.2s; text-decoration: none; display: inline-block; }
.btn-outline:hover { background: var(--gold); color: var(--black); }
.hero-right { position: relative; overflow: hidden; }
.hero-art-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, var(--black) 0%, transparent 40%); }
.madhubani-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 50%, rgba(193,39,45,0.15) 0%, transparent 60%), radial-gradient(ellipse at 70% 30%, rgba(232,168,32,0.1) 0%, transparent 50%); }
.hero-svg { width: 100%; height: 100%; position: absolute; inset: 0; }
.hero-stats { display: flex; gap: 40px; margin-top: 48px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1); }
.stat-num { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: var(--gold); }
.stat-label { font-size: 11px; color: var(--warm); opacity: 0.6; letter-spacing: 1px; text-transform: uppercase; }

/* MARQUEE */
.marquee-strip { background: var(--red); padding: 12px 0; overflow: hidden; white-space: nowrap; }
.marquee-inner { display: inline-block; animation: marquee 20s linear infinite; }
.marquee-inner span { font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: white; font-weight: 500; padding: 0 32px; }
.marquee-inner span::after { content: "✦"; margin-left: 32px; opacity: 0.7; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* CATEGORIES */
.section { padding: 80px 60px; }
.section-tag { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--red); font-weight: 600; margin-bottom: 8px; }
.section-title { font-family: 'Playfair Display', serif; font-size: 42px; font-weight: 900; color: var(--black); line-height: 1.1; }
.section-title span { color: var(--red); }
.section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; }
.section-subtitle { font-family: 'Cormorant Garamond', serif; font-size: 16px; color: var(--black); opacity: 0.5; max-width: 320px; text-align: right; line-height: 1.6; }

.categories-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cat-card { position: relative; overflow: hidden; cursor: pointer; border: 2px solid transparent; transition: border-color 0.2s; text-decoration: none; }
.cat-card:hover { border-color: var(--red); }
.cat-visual { height: 220px; display: flex; align-items: center; justify-content: center; font-size: 64px; position: relative; overflow: hidden; }
.cat-card:nth-child(1) .cat-visual { background: linear-gradient(135deg, #FDF0E0, #F5D5A0); }
.cat-card:nth-child(2) .cat-visual { background: linear-gradient(135deg, #E8F5E9, #C8E6C9); }
.cat-card:nth-child(3) .cat-visual { background: linear-gradient(135deg, #FFF3E0, #FFE0B2); }
.cat-card:nth-child(4) .cat-visual { background: linear-gradient(135deg, #FCE4EC, #F8BBD0); }
.cat-pattern { position: absolute; inset: 0; opacity: 0.08; background-image: repeating-linear-gradient(45deg, var(--red) 0px, var(--red) 1px, transparent 1px, transparent 10px); }
.cat-info { background: var(--black); padding: 16px 20px; }
.cat-name { font-family: 'Playfair Display', serif; font-size: 17px; color: var(--cream); font-weight: 700; }
.cat-count { font-size: 11px; color: var(--gold); letter-spacing: 1px; margin-top: 2px; }

/* FEATURED PRODUCTS */
.products-section { background: var(--warm); padding: 80px 60px; }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.product-card { background: white; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; cursor: pointer; }
.product-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.12); }
.product-img { height: 260px; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; font-size: 80px; }
.product-card:nth-child(1) .product-img { background: linear-gradient(135deg, #FDEBD0, #F0D0A0); }
.product-card:nth-child(2) .product-img { background: linear-gradient(135deg, #D5E8D4, #B8D4B7); }
.product-card:nth-child(3) .product-img { background: linear-gradient(135deg, #FDE8D8, #F5C9A8); }
.product-badge { position: absolute; top: 16px; left: 16px; background: var(--red); color: white; font-size: 9px; letter-spacing: 2px; text-transform: uppercase; padding: 4px 10px; font-weight: 600; }
.product-info { padding: 20px 24px 24px; }
.product-cat { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--ochre); font-weight: 600; margin-bottom: 6px; }
.product-name { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--black); margin-bottom: 8px; line-height: 1.3; }
.product-desc { font-size: 13px; color: #666; line-height: 1.5; margin-bottom: 16px; }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.price { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--black); }
.price span { font-size: 13px; color: #999; text-decoration: line-through; font-family: 'DM Sans', sans-serif; font-weight: 400; margin-left: 6px; }
.add-cart { background: var(--black); color: var(--gold); border: none; padding: 10px 18px; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer; font-family: 'DM Sans', sans-serif; font-weight: 600; transition: all 0.2s; }
.add-cart:hover { background: var(--red); color: white; }

/* ABOUT STRIP */
.about-strip { background: var(--black); padding: 80px 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-frame { border: 3px solid var(--ochre); padding: 40px; position: relative; text-align: center; }
.about-frame::before { content: ''; position: absolute; inset: -8px; border: 1px solid rgba(232,168,32,0.3); }
.about-emoji-art { font-size: 120px; display: block; line-height: 1; filter: drop-shadow(0 0 20px rgba(232,168,32,0.3)); }
.about-corner { position: absolute; font-size: 20px; color: var(--gold); }
.about-corner.tl { top: -12px; left: -12px; } .about-corner.tr { top: -12px; right: -12px; }
.about-corner.bl { bottom: -12px; left: -12px; } .about-corner.br { bottom: -12px; right: -12px; }
.about-tag { display: inline-block; background: var(--red); color: white; font-size: 10px; letter-spacing: 3px; text-transform: uppercase; padding: 5px 12px; margin-bottom: 20px; }
.about-title { font-family: 'Playfair Display', serif; font-size: 40px; color: var(--cream); font-weight: 900; line-height: 1.15; margin-bottom: 20px; }
.about-title em { color: var(--gold); font-style: italic; }
.about-text { font-family: 'Cormorant Garamond', serif; font-size: 18px; color: var(--warm); opacity: 0.8; line-height: 1.8; margin-bottom: 32px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 36px; }
.feature-item { display: flex; align-items: center; gap: 10px; }
.feature-dot { width: 6px; height: 6px; background: var(--gold); flex-shrink: 0; }
.feature-text { font-size: 13px; color: var(--warm); opacity: 0.75; }

/* TESTIMONIALS */
.testimonials { padding: 80px 60px; background: var(--cream); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.testi-card { border: 2px solid rgba(193,39,45,0.15); padding: 32px; position: relative; background: white; }
.testi-card::before { content: '"'; font-family: 'Playfair Display', serif; font-size: 80px; color: var(--red); position: absolute; top: 10px; left: 24px; line-height: 1; opacity: 0.3; }
.stars { color: var(--gold); font-size: 14px; letter-spacing: 3px; margin-bottom: 16px; }
.testi-text { font-family: 'Cormorant Garamond', serif; font-size: 17px; color: var(--black); opacity: 0.75; line-height: 1.7; margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 40px; height: 40px; background: var(--red); display: flex; align-items: center; justify-content: center; font-size: 16px; color: white; font-family: 'Playfair Display', serif; font-weight: 700; flex-shrink: 0; }
.author-name { font-size: 14px; font-weight: 600; color: var(--black); }
.author-loc { font-size: 11px; color: #888; }

/* FOOTER */
footer { background: #0D0500; padding: 60px 60px 0; border-top: 3px solid var(--red); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-family: 'Cormorant Garamond', serif; font-size: 16px; color: var(--warm); opacity: 0.6; line-height: 1.7; margin: 16px 0 24px; max-width: 260px; }
.social-links { display: flex; gap: 12px; }
.social-btn { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--warm); text-decoration: none; transition: all 0.2s; }
.social-btn:hover { background: var(--red); border-color: var(--red); }
.footer-col h4 { font-family: 'Playfair Display', serif; font-size: 15px; color: var(--gold); font-weight: 700; margin-bottom: 20px; letter-spacing: 1px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13px; color: var(--warm); opacity: 0.6; text-decoration: none; transition: opacity 0.2s; }
.footer-col ul li a:hover { opacity: 1; color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p { font-size: 12px; color: var(--warm); opacity: 0.4; }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.hero-left > * { animation: fadeUp 0.8s ease forwards; opacity: 0; }
.hero-left > *:nth-child(1) { animation-delay: 0.1s; }
.hero-left > *:nth-child(2) { animation-delay: 0.2s; }
.hero-left > *:nth-child(3) { animation-delay: 0.3s; }
.hero-left > *:nth-child(4) { animation-delay: 0.4s; }
.hero-left > *:nth-child(5) { animation-delay: 0.5s; }

/* ===== SHOP.CSS ===== */
:root {
  --red: #C1272D; --ochre: #D4870A; --gold: #E8A820;
  --green: #2D6A4F; --black: #1A0A00; --cream: #FDF6E3; --warm: #F5E6C8;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--black); overflow-x: hidden; }

.pattern-border { height: 12px; background: repeating-linear-gradient(90deg, var(--red) 0px, var(--red) 8px, var(--gold) 8px, var(--gold) 16px, var(--green) 16px, var(--green) 24px, var(--ochre) 24px, var(--ochre) 32px); }

nav { background: var(--black); padding: 0 60px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 100; border-bottom: 3px solid var(--ochre); }
.logo { display: flex; flex-direction: column; padding: 14px 0; text-decoration: none; }
.logo-main { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 900; color: var(--gold); letter-spacing: 2px; line-height: 1; }
.logo-sub { font-family: 'Cormorant Garamond', serif; font-size: 11px; color: var(--warm); letter-spacing: 4px; text-transform: uppercase; opacity: 0.7; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { color: var(--warm); text-decoration: none; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 500; transition: color 0.2s; opacity: 0.85; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); opacity: 1; }
.cart-btn { background: var(--red); color: white; border: none; padding: 10px 20px; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; font-family: 'DM Sans', sans-serif; font-weight: 500; position: relative; }
.cart-btn:hover { background: var(--ochre); }
.cart-count { background: var(--gold); color: var(--black); border-radius: 50%; width: 18px; height: 18px; font-size: 10px; font-weight: 700; display: inline-flex; align-items: center; justify-content: center; margin-left: 4px; }

/* PAGE HERO */
.page-hero { background: var(--black); padding: 60px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 80% 50%, rgba(193,39,45,0.1) 0%, transparent 60%); }
.breadcrumb { font-size: 12px; color: var(--warm); opacity: 0.5; letter-spacing: 1px; margin-bottom: 16px; }
.breadcrumb a { color: var(--warm); opacity: 0.5; text-decoration: none; }
.breadcrumb a:hover { opacity: 1; }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: 52px; color: var(--cream); font-weight: 900; line-height: 1.1; }
.page-hero h1 em { color: var(--gold); font-style: italic; }
.page-hero p { font-family: 'Cormorant Garamond', serif; font-size: 18px; color: var(--warm); opacity: 0.65; margin-top: 12px; max-width: 500px; line-height: 1.6; }

/* SHOP LAYOUT */
.shop-layout { display: grid; grid-template-columns: 260px 1fr; gap: 0; min-height: 80vh; }

/* SIDEBAR */
.sidebar { background: white; padding: 40px 32px; border-right: 1px solid rgba(0,0,0,0.08); position: sticky; top: 64px; height: fit-content; }

.sidebar-section { margin-bottom: 36px; padding-bottom: 36px; border-bottom: 1px solid rgba(0,0,0,0.08); }
.sidebar-section:last-child { border-bottom: none; margin-bottom: 0; }

.sidebar-title { font-family: 'Playfair Display', serif; font-size: 15px; font-weight: 700; color: var(--black); margin-bottom: 16px; letter-spacing: 0.5px; }

.cat-filter { list-style: none; }
.cat-filter li { margin-bottom: 4px; }
.cat-filter a { display: flex; align-items: center; justify-content: space-between; padding: 9px 12px; font-size: 13px; color: var(--black); text-decoration: none; transition: all 0.2s; border-left: 3px solid transparent; }
.cat-filter a:hover, .cat-filter a.active { background: var(--warm); border-left-color: var(--red); color: var(--red); font-weight: 600; }
.cat-filter .count { font-size: 11px; background: rgba(0,0,0,0.07); padding: 2px 7px; border-radius: 20px; color: #888; }

.price-range { display: flex; flex-direction: column; gap: 12px; }
.price-inputs { display: flex; gap: 8px; align-items: center; }
.price-input { flex: 1; border: 1.5px solid rgba(0,0,0,0.15); padding: 8px 12px; font-size: 13px; font-family: 'DM Sans', sans-serif; outline: none; }
.price-input:focus { border-color: var(--red); }
.price-sep { font-size: 13px; color: #888; }
.price-slider { width: 100%; accent-color: var(--red); }
.apply-price { background: var(--black); color: var(--gold); border: none; padding: 9px 20px; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer; font-family: 'DM Sans', sans-serif; font-weight: 600; width: 100%; margin-top: 4px; }
.apply-price:hover { background: var(--red); color: white; }

.sort-select { width: 100%; border: 1.5px solid rgba(0,0,0,0.15); padding: 10px 12px; font-size: 13px; font-family: 'DM Sans', sans-serif; outline: none; background: white; cursor: pointer; }
.sort-select:focus { border-color: var(--red); }

.tag-filters { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-btn { background: var(--warm); border: 1.5px solid transparent; color: var(--black); padding: 6px 12px; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; font-family: 'DM Sans', sans-serif; font-weight: 500; transition: all 0.2s; }
.tag-btn:hover, .tag-btn.active { background: var(--red); color: white; border-color: var(--red); }

/* PRODUCTS AREA */
.products-area { padding: 32px 40px; }

.shop-topbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid rgba(0,0,0,0.08); }
.results-count { font-size: 13px; color: #888; }
.results-count strong { color: var(--black); }
.view-toggle { display: flex; gap: 8px; }
.view-btn { width: 36px; height: 36px; border: 1.5px solid rgba(0,0,0,0.15); background: transparent; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 14px; transition: all 0.2s; }
.view-btn.active, .view-btn:hover { background: var(--black); color: white; border-color: var(--black); }

.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.products-grid.list-view { grid-template-columns: 1fr; }

/* PRODUCT CARD */
.product-card { background: white; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; position: relative; }
.product-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }

.product-img { height: 260px; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; font-size: 72px; cursor: pointer; }
.product-card:nth-child(1) .product-img { background: linear-gradient(135deg, #FDEBD0, #F0D0A0); }
.product-card:nth-child(2) .product-img { background: linear-gradient(135deg, #D5E8D4, #B8D4B7); }
.product-card:nth-child(3) .product-img { background: linear-gradient(135deg, #FDE8D8, #F5C9A8); }
.product-card:nth-child(4) .product-img { background: linear-gradient(135deg, #E8DEFC, #D4C4F0); }
.product-card:nth-child(5) .product-img { background: linear-gradient(135deg, #FCF0DE, #F5DEB3); }
.product-card:nth-child(6) .product-img { background: linear-gradient(135deg, #D4ECD4, #B0D4B0); }
.product-card:nth-child(7) .product-img { background: linear-gradient(135deg, #FDE8E8, #F5C0C0); }
.product-card:nth-child(8) .product-img { background: linear-gradient(135deg, #E8F0FD, #C0D4F5); }
.product-card:nth-child(9) .product-img { background: linear-gradient(135deg, #FDF8D4, #F5EEB3); }

.product-badge { position: absolute; top: 14px; left: 14px; background: var(--red); color: white; font-size: 9px; letter-spacing: 2px; text-transform: uppercase; padding: 4px 10px; font-weight: 600; z-index: 2; }
.product-badge.new { background: var(--green); }
.product-badge.sale { background: var(--ochre); }

.wishlist-btn { position: absolute; top: 14px; right: 14px; width: 34px; height: 34px; background: white; border: none; cursor: pointer; font-size: 16px; display: flex; align-items: center; justify-content: center; transition: all 0.2s; opacity: 0; z-index: 2; }
.product-card:hover .wishlist-btn { opacity: 1; }
.wishlist-btn:hover { background: var(--red); }

.quick-view { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(26,10,0,0.88); color: var(--gold); border: none; padding: 12px; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; font-family: 'DM Sans', sans-serif; font-weight: 600; transform: translateY(100%); transition: transform 0.3s; }
.product-card:hover .quick-view { transform: translateY(0); }

.product-info { padding: 18px 20px 20px; }
.product-cat { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--ochre); font-weight: 600; margin-bottom: 5px; }
.product-name { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; color: var(--black); margin-bottom: 6px; line-height: 1.3; }
.product-desc { font-size: 12px; color: #888; line-height: 1.5; margin-bottom: 14px; }
.product-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 12px; }
.stars-small { color: var(--gold); font-size: 11px; letter-spacing: 2px; }
.rating-count { font-size: 11px; color: #aaa; }

.product-footer { display: flex; align-items: center; justify-content: space-between; }
.price { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--black); }
.price-original { font-size: 13px; color: #bbb; text-decoration: line-through; font-family: 'DM Sans', sans-serif; font-weight: 400; margin-left: 5px; }
.add-cart { background: var(--black); color: var(--gold); border: none; padding: 9px 16px; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer; font-family: 'DM Sans', sans-serif; font-weight: 600; transition: all 0.2s; }
.add-cart:hover { background: var(--red); color: white; }
.add-cart.added { background: var(--green); color: white; letter-spacing: 0; font-size: 16px; padding: 9px 12px; display: flex; align-items: center; gap: 12px; }
.add-cart.added span { font-size: 18px; font-weight: 700; cursor: pointer; padding: 0 4px; }
.add-cart.added span:hover { color: var(--gold); }

/* LIST VIEW PRODUCT */
.products-grid.list-view .product-card { display: grid; grid-template-columns: 200px 1fr; }
.products-grid.list-view .product-img { height: 200px; }
.products-grid.list-view .product-info { padding: 24px 28px; display: flex; flex-direction: column; justify-content: space-between; }

/* PROMO BANNER */
.promo-banner {
  background: var(--red);
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.promo-text { font-family: 'Playfair Display', serif; font-size: 18px; color: white; font-weight: 700; }
.promo-text span { font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 400; opacity: 0.85; margin-left: 12px; }
.promo-code { background: var(--gold); color: var(--black); padding: 8px 18px; font-size: 13px; font-weight: 700; letter-spacing: 2px; font-family: 'DM Sans', sans-serif; }

/* PAGINATION */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 48px; padding-top: 32px; border-top: 1px solid rgba(0,0,0,0.08); }
.page-btn { width: 40px; height: 40px; border: 1.5px solid rgba(0,0,0,0.15); background: transparent; cursor: pointer; font-size: 13px; font-family: 'DM Sans', sans-serif; transition: all 0.2s; display: flex; align-items: center; justify-content: center; }
.page-btn:hover, .page-btn.active { background: var(--red); border-color: var(--red); color: white; }

/* CART TOAST */
.toast {
  position: fixed; bottom: 32px; right: 32px;
  background: var(--black); color: white;
  padding: 16px 24px; font-size: 13px;
  letter-spacing: 0.5px; z-index: 999;
  transform: translateY(100px); opacity: 0;
  transition: all 0.3s; display: flex; align-items: center; gap: 12px;
  border-left: 4px solid var(--gold);
}
.toast.show { transform: translateY(0); opacity: 1; }

/* FOOTER */
footer { background: #0D0500; padding: 60px 60px 0; border-top: 3px solid var(--red); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-family: 'Cormorant Garamond', serif; font-size: 16px; color: var(--warm); opacity: 0.6; line-height: 1.7; margin: 16px 0 24px; max-width: 260px; }
.social-links { display: flex; gap: 12px; }
.social-btn { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--warm); text-decoration: none; transition: all 0.2s; }
.social-btn:hover { background: var(--red); border-color: var(--red); }
.footer-col h4 { font-family: 'Playfair Display', serif; font-size: 15px; color: var(--gold); font-weight: 700; margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13px; color: var(--warm); opacity: 0.6; text-decoration: none; transition: opacity 0.2s; }
.footer-col ul li a:hover { opacity: 1; color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p { font-size: 12px; color: var(--warm); opacity: 0.4; }

/* ===== CART.CSS ===== */
:root { --red: #C1272D; --ochre: #D4870A; --gold: #E8A820; --green: #2D6A4F; --black: #1A0A00; --cream: #FDF6E3; --warm: #F5E6C8; }
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--black); }

.pattern-border { height: 12px; background: repeating-linear-gradient(90deg, var(--red) 0px, var(--red) 8px, var(--gold) 8px, var(--gold) 16px, var(--green) 16px, var(--green) 24px, var(--ochre) 24px, var(--ochre) 32px); }

nav { background: var(--black); padding: 0 60px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 100; border-bottom: 3px solid var(--ochre); }
.logo { display: flex; flex-direction: column; padding: 8px 0; text-decoration: none; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { color: var(--warm); text-decoration: none; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 500; opacity: 0.85; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); opacity: 1; }
.cart-btn { background: var(--red); color: white; border: none; padding: 10px 20px; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; font-family: 'DM Sans', sans-serif; font-weight: 500; }
.cart-btn:hover { background: var(--ochre); }

/* PAGE HERO */
.page-hero { background: var(--black); padding: 48px 60px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 80% 50%, rgba(193,39,45,0.08) 0%, transparent 60%); }
.breadcrumb { font-size: 12px; color: var(--warm); opacity: 0.5; letter-spacing: 1px; margin-bottom: 12px; }
.breadcrumb a { color: var(--warm); opacity: 0.5; text-decoration: none; }
.breadcrumb a:hover { opacity: 1; }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: 48px; color: var(--cream); font-weight: 900; }
.page-hero h1 em { color: var(--gold); font-style: italic; }
.page-hero p { font-family: 'Cormorant Garamond', serif; font-size: 17px; color: var(--warm); opacity: 0.6; margin-top: 8px; }

/* CART LAYOUT */
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 32px; padding: 48px 60px; align-items: start; }

/* CART ITEMS */
.cart-items { background: white; }
.cart-header { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 40px; gap: 16px; padding: 16px 24px; background: var(--black); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--warm); opacity: 0.7; font-weight: 600; }
.cart-item { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 40px; gap: 16px; padding: 20px 24px; border-bottom: 1px solid rgba(0,0,0,0.06); align-items: center; transition: background 0.2s; }
.cart-item:hover { background: #FAFAFA; }
.item-info { display: flex; gap: 16px; align-items: center; }
.item-img { width: 70px; height: 70px; display: flex; align-items: center; justify-content: center; font-size: 32px; flex-shrink: 0; }
.item-img.bag { background: linear-gradient(135deg, #FDEBD0, #F0D0A0); }
.item-img.mug { background: linear-gradient(135deg, #D5E8D4, #B8D4B7); }
.item-img.saree { background: linear-gradient(135deg, #FDE8D8, #F5C9A8); }
.item-img.tshirt { background: linear-gradient(135deg, #E8DEFC, #D4C4F0); }
.item-cat { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ochre); font-weight: 600; margin-bottom: 3px; }
.item-name { font-family: 'Playfair Display', serif; font-size: 15px; font-weight: 700; color: var(--black); margin-bottom: 4px; }
.item-variant { font-size: 11px; color: #999; }
.item-price { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; color: var(--black); }
.qty-control { display: flex; align-items: center; gap: 0; border: 1.5px solid rgba(0,0,0,0.12); width: fit-content; }
.qty-btn { width: 32px; height: 32px; background: transparent; border: none; cursor: pointer; font-size: 16px; color: var(--black); transition: background 0.2s; display: flex; align-items: center; justify-content: center; }
.qty-btn:hover { background: var(--warm); }
.qty-num { width: 36px; height: 32px; text-align: center; font-size: 14px; font-weight: 600; border: none; outline: none; font-family: 'DM Sans', sans-serif; }
.item-total { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; color: var(--red); }
.remove-btn { width: 32px; height: 32px; background: transparent; border: none; cursor: pointer; font-size: 16px; color: #ccc; transition: color 0.2s; display: flex; align-items: center; justify-content: center; }
.remove-btn:hover { color: var(--red); }

/* EMPTY CART */
.empty-cart { display: none; text-align: center; padding: 80px 40px; }
.empty-icon { font-size: 72px; display: block; margin-bottom: 20px; }
.empty-title { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: var(--black); margin-bottom: 10px; }
.empty-desc { font-size: 15px; color: #888; margin-bottom: 28px; }

/* COUPON */
.coupon-row { display: flex; gap: 0; padding: 20px 24px; border-top: 1px solid rgba(0,0,0,0.06); }
.coupon-input { flex: 1; border: 1.5px solid rgba(0,0,0,0.15); padding: 11px 16px; font-size: 13px; font-family: 'DM Sans', sans-serif; outline: none; }
.coupon-input:focus { border-color: var(--red); }
.coupon-btn { background: var(--black); color: var(--gold); border: none; padding: 11px 24px; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer; font-family: 'DM Sans', sans-serif; font-weight: 600; transition: all 0.2s; }
.coupon-btn:hover { background: var(--red); color: white; }
.coupon-success { display: none; padding: 12px 24px; background: rgba(45,106,79,0.08); border-top: 1px solid rgba(45,106,79,0.15); font-size: 13px; color: var(--green); font-weight: 600; }

.cart-actions { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; border-top: 1px solid rgba(0,0,0,0.06); }
.btn-continue { background: transparent; border: 1.5px solid rgba(0,0,0,0.2); color: var(--black); padding: 11px 24px; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer; font-family: 'DM Sans', sans-serif; font-weight: 600; text-decoration: none; display: inline-block; transition: all 0.2s; }
.btn-continue:hover { border-color: var(--black); background: var(--warm); }
.btn-update { background: transparent; border: 1.5px solid rgba(0,0,0,0.2); color: var(--black); padding: 11px 24px; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer; font-family: 'DM Sans', sans-serif; font-weight: 600; transition: all 0.2s; }
.btn-update:hover { background: var(--warm); }

/* ORDER SUMMARY */
.order-summary { background: var(--black); padding: 36px; position: sticky; top: 80px; }
.os-title { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--gold); font-weight: 700; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.os-row { display: flex; justify-content: space-between; margin-bottom: 14px; }
.os-label { font-size: 13px; color: var(--warm); opacity: 0.65; }
.os-val { font-size: 13px; color: var(--cream); font-weight: 500; }
.os-val.green { color: #5DBD8A; }
.os-divider { height: 1px; background: rgba(255,255,255,0.08); margin: 16px 0; }
.os-total-row { display: flex; justify-content: space-between; margin-bottom: 24px; }
.os-total-label { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--gold); font-weight: 700; }
.os-total-val { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--gold); font-weight: 900; }

.checkout-btn { width: 100%; background: var(--red); color: white; border: none; padding: 16px; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; font-family: 'DM Sans', sans-serif; font-weight: 700; transition: all 0.2s; margin-bottom: 12px; }
.checkout-btn:hover { background: var(--ochre); }
.razorpay-btn { width: 100%; background: #528FF0; color: white; border: none; padding: 14px; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; font-family: 'DM Sans', sans-serif; font-weight: 600; transition: all 0.2s; margin-bottom: 16px; }
.razorpay-btn:hover { background: #3A7FE0; }

.payment-icons { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
.pay-icon { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); padding: 5px 10px; font-size: 10px; letter-spacing: 1px; text-transform: uppercase; color: var(--warm); opacity: 0.6; }

.os-note { font-size: 11px; color: var(--warm); opacity: 0.5; text-align: center; line-height: 1.6; }
.os-note span { color: var(--gold); opacity: 0.8; }

/* YOU MAY ALSO LIKE */
.related-section { padding: 60px; background: var(--warm); }
.related-title { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--red); font-weight: 600; margin-bottom: 8px; }
.related-h2 { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 900; color: var(--black); margin-bottom: 36px; }
.related-h2 span { color: var(--red); }
.related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.related-card { background: white; overflow: hidden; cursor: pointer; transition: transform 0.3s, box-shadow 0.3s; }
.related-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.1); }
.related-img { height: 180px; display: flex; align-items: center; justify-content: center; font-size: 56px; }
.related-card:nth-child(1) .related-img { background: linear-gradient(135deg, #FCF0DE, #F5DEB3); }
.related-card:nth-child(2) .related-img { background: linear-gradient(135deg, #D4ECD4, #B0D4B0); }
.related-card:nth-child(3) .related-img { background: linear-gradient(135deg, #FDE8E8, #F5C0C0); }
.related-card:nth-child(4) .related-img { background: linear-gradient(135deg, #E8F0FD, #C0D4F5); }
.related-info { padding: 14px 16px; }
.related-cat { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ochre); font-weight: 600; margin-bottom: 4px; }
.related-name { font-family: 'Playfair Display', serif; font-size: 14px; font-weight: 700; color: var(--black); margin-bottom: 10px; }
.related-footer { display: flex; align-items: center; justify-content: space-between; }
.related-price { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; color: var(--black); }
.add-btn { background: var(--black); color: var(--gold); border: none; padding: 7px 12px; font-size: 10px; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; font-family: 'DM Sans', sans-serif; font-weight: 600; transition: all 0.2s; }
.add-btn:hover { background: var(--red); color: white; }

/* TOAST */
.toast { position: fixed; bottom: 32px; right: 32px; background: var(--black); color: white; padding: 16px 24px; font-size: 13px; z-index: 999; transform: translateY(100px); opacity: 0; transition: all 0.3s; border-left: 4px solid var(--gold); }
.toast.show { transform: translateY(0); opacity: 1; }

/* FOOTER */
footer { background: #0D0500; padding: 60px 60px 0; border-top: 3px solid var(--red); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-family: 'Cormorant Garamond', serif; font-size: 16px; color: var(--warm); opacity: 0.6; line-height: 1.7; margin: 16px 0 24px; max-width: 260px; }
.social-links { display: flex; gap: 12px; }
.social-btn { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--warm); text-decoration: none; transition: all 0.2s; }
.social-btn:hover { background: var(--red); border-color: var(--red); }
.footer-col h4 { font-family: 'Playfair Display', serif; font-size: 15px; color: var(--gold); font-weight: 700; margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13px; color: var(--warm); opacity: 0.6; text-decoration: none; transition: opacity 0.2s; }
.footer-col ul li a:hover { opacity: 1; color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p { font-size: 12px; color: var(--warm); opacity: 0.4; }

/* ===== GALLERY.CSS ===== */
:root {
  --red: #C1272D; --ochre: #D4870A; --gold: #E8A820;
  --green: #2D6A4F; --black: #1A0A00; --cream: #FDF6E3; --warm: #F5E6C8;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--black); overflow-x: hidden; }

.pattern-border { height: 12px; background: repeating-linear-gradient(90deg, var(--red) 0px, var(--red) 8px, var(--gold) 8px, var(--gold) 16px, var(--green) 16px, var(--green) 24px, var(--ochre) 24px, var(--ochre) 32px); }

nav { background: var(--black); padding: 0 60px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 100; border-bottom: 3px solid var(--ochre); }
.logo { display: flex; flex-direction: column; padding: 14px 0; text-decoration: none; }
.logo-main { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 900; color: var(--gold); letter-spacing: 2px; line-height: 1; }
.logo-sub { font-family: 'Cormorant Garamond', serif; font-size: 11px; color: var(--warm); letter-spacing: 4px; text-transform: uppercase; opacity: 0.7; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { color: var(--warm); text-decoration: none; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 500; transition: color 0.2s; opacity: 0.85; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); opacity: 1; }
.cart-btn { background: var(--red); color: white; border: none; padding: 10px 20px; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; font-family: 'DM Sans', sans-serif; font-weight: 500; }
.cart-btn:hover { background: var(--ochre); }

/* PAGE HERO */
.page-hero {
  background: var(--black);
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(193,39,45,0.12) 0%, transparent 70%);
}
.page-hero-tag { display: inline-block; background: var(--red); color: white; font-size: 10px; letter-spacing: 3px; text-transform: uppercase; padding: 6px 14px; margin-bottom: 20px; }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(40px, 6vw, 72px); color: var(--cream); font-weight: 900; line-height: 1.1; margin-bottom: 16px; }
.page-hero h1 em { color: var(--gold); font-style: italic; }
.page-hero p { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: var(--warm); opacity: 0.7; max-width: 560px; margin: 0 auto; line-height: 1.7; }

/* DECORATIVE SVG STRIP */
.art-divider {
  background: var(--black);
  padding: 0 60px 40px;
  display: flex;
  justify-content: center;
  gap: 40px;
  align-items: center;
}
.art-divider span {
  font-size: 28px;
  opacity: 0.5;
}
.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ochre), transparent);
  max-width: 200px;
}

/* FILTER TABS */
.filter-section {
  padding: 40px 60px 0;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.filter-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--black);
  opacity: 0.5;
  margin-right: 8px;
}
.filter-btn {
  background: transparent;
  border: 1.5px solid rgba(0,0,0,0.2);
  color: var(--black);
  padding: 8px 20px;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: white;
}

/* MASONRY GALLERY */
.gallery-section { padding: 40px 60px 80px; }

.masonry-grid {
  columns: 3;
  column-gap: 20px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: block;
}

.gallery-visual {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-visual { transform: scale(1.03); }

/* Different heights for masonry effect */
.gallery-item:nth-child(1) .gallery-visual { height: 340px; background: linear-gradient(135deg, #8B1A1A 0%, #C1272D 50%, #8B1A1A 100%); }
.gallery-item:nth-child(2) .gallery-visual { height: 240px; background: linear-gradient(135deg, #1A4A2E, #2D6A4F); }
.gallery-item:nth-child(3) .gallery-visual { height: 280px; background: linear-gradient(135deg, #4A2800, #D4870A); }
.gallery-item:nth-child(4) .gallery-visual { height: 260px; background: linear-gradient(135deg, #3A1A5A, #8B44AC); }
.gallery-item:nth-child(5) .gallery-visual { height: 380px; background: linear-gradient(135deg, #1A3060, #2A5AAC); }
.gallery-item:nth-child(6) .gallery-visual { height: 220px; background: linear-gradient(135deg, #5A1A1A, #C1272D); }
.gallery-item:nth-child(7) .gallery-visual { height: 300px; background: linear-gradient(135deg, #0A3A1A, #2D6A4F); }
.gallery-item:nth-child(8) .gallery-visual { height: 250px; background: linear-gradient(135deg, #5A3A00, #D4870A); }
.gallery-item:nth-child(9) .gallery-visual { height: 320px; background: linear-gradient(135deg, #2A0A4A, #8B44AC); }
.gallery-item:nth-child(10) .gallery-visual { height: 280px; background: linear-gradient(135deg, #1A1A5A, #4A6AAC); }
.gallery-item:nth-child(11) .gallery-visual { height: 360px; background: linear-gradient(135deg, #6A0A0A, #C1272D); }
.gallery-item:nth-child(12) .gallery-visual { height: 240px; background: linear-gradient(135deg, #0A4A2A, #2D8A4F); }

.gallery-emoji { font-size: 72px; z-index: 1; }
.gallery-item:nth-child(5) .gallery-emoji, .gallery-item:nth-child(11) .gallery-emoji { font-size: 100px; }

/* SVG patterns inside gallery items */
.gallery-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.15;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: white;
  font-weight: 700;
  margin-bottom: 4px;
}
.gallery-subtitle {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.gallery-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--red);
  color: white;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-tag { opacity: 1; }

/* FEATURED ART SECTION */
.featured-section {
  background: var(--black);
  padding: 80px 60px;
}
.featured-title {
  font-family: 'Playfair Display', serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 8px;
}
.featured-h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  color: var(--cream);
  font-weight: 900;
  margin-bottom: 48px;
}
.featured-h2 span { color: var(--gold); }

.featured-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 16px;
}

.feat-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.feat-item.large { grid-row: 1 / 3; }

.feat-visual {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 80px;
  transition: transform 0.4s;
}
.feat-item.large .feat-visual { font-size: 120px; }
.feat-item:hover .feat-visual { transform: scale(1.05); }

.feat-item:nth-child(1) .feat-visual { background: linear-gradient(135deg, #6A0A0A, #C1272D, #8B1A1A); }
.feat-item:nth-child(2) .feat-visual { background: linear-gradient(135deg, #0A3A1A, #2D6A4F); }
.feat-item:nth-child(3) .feat-visual { background: linear-gradient(135deg, #4A2800, #D4870A); }
.feat-item:nth-child(4) .feat-visual { background: linear-gradient(135deg, #1A1A5A, #4A6AAC); }
.feat-item:nth-child(5) .feat-visual { background: linear-gradient(135deg, #3A0A5A, #8B44AC); }

.feat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px;
}

.feat-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px; color: white; font-weight: 700; margin-bottom: 4px;
}
.feat-large .feat-name { font-size: 28px; }
.feat-meta {
  display: flex; align-items: center; justify-content: space-between;
}
.feat-type {
  font-size: 11px; color: var(--gold); letter-spacing: 2px; text-transform: uppercase;
}
.feat-price {
  font-family: 'Playfair Display', serif;
  font-size: 18px; color: white; font-weight: 700;
}
.feat-btn {
  margin-top: 14px;
  display: inline-block;
  background: var(--red);
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
  width: fit-content;
}
.feat-btn:hover { background: var(--ochre); }

/* MOTIF GUIDE */
.motif-section { padding: 80px 60px; background: var(--warm); }
.motif-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; margin-top: 48px; }
.motif-card { text-align: center; padding: 32px 20px; background: white; border: 2px solid transparent; transition: border-color 0.2s, transform 0.2s; cursor: pointer; }
.motif-card:hover { border-color: var(--red); transform: translateY(-4px); }
.motif-icon { font-size: 52px; display: block; margin-bottom: 12px; }
.motif-name { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; color: var(--black); margin-bottom: 6px; }
.motif-desc { font-size: 12px; color: #777; line-height: 1.5; }

/* LIGHTBOX */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.lightbox.open { display: flex; }
.lightbox-content { position: relative; max-width: 600px; width: 90%; }
.lightbox-visual {
  width: 100%; height: 400px;
  display: flex; align-items: center; justify-content: center;
  font-size: 120px;
  background: linear-gradient(135deg, #6A0A0A, #C1272D);
}
.lightbox-info { padding: 24px 0; }
.lightbox-title { font-family: 'Playfair Display', serif; font-size: 28px; color: white; font-weight: 700; margin-bottom: 8px; }
.lightbox-desc { font-family: 'Cormorant Garamond', serif; font-size: 17px; color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 20px; }
.lightbox-actions { display: flex; gap: 12px; }
.lightbox-close {
  position: absolute; top: -48px; right: 0;
  background: none; border: none;
  color: white; font-size: 32px; cursor: pointer; opacity: 0.7;
  transition: opacity 0.2s;
}
.lightbox-close:hover { opacity: 1; }

/* FOOTER */
footer { background: #0D0500; padding: 60px 60px 0; border-top: 3px solid var(--red); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-family: 'Cormorant Garamond', serif; font-size: 16px; color: var(--warm); opacity: 0.6; line-height: 1.7; margin: 16px 0 24px; max-width: 260px; }
.social-links { display: flex; gap: 12px; }
.social-btn { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--warm); text-decoration: none; transition: all 0.2s; }
.social-btn:hover { background: var(--red); border-color: var(--red); }
.footer-col h4 { font-family: 'Playfair Display', serif; font-size: 15px; color: var(--gold); font-weight: 700; margin-bottom: 20px; letter-spacing: 1px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13px; color: var(--warm); opacity: 0.6; text-decoration: none; transition: opacity 0.2s; }
.footer-col ul li a:hover { opacity: 1; color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p { font-size: 12px; color: var(--warm); opacity: 0.4; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.page-hero > * { animation: fadeUp 0.7s ease forwards; opacity: 0; }
.page-hero > *:nth-child(1) { animation-delay: 0.1s; }
.page-hero > *:nth-child(2) { animation-delay: 0.2s; }
.page-hero > *:nth-child(3) { animation-delay: 0.3s; }

/* ===== CUSTOM-ORDER.CSS ===== */
:root {
  --red: #C1272D; --ochre: #D4870A; --gold: #E8A820;
  --green: #2D6A4F; --black: #1A0A00; --cream: #FDF6E3; --warm: #F5E6C8;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--black); overflow-x: hidden; }

.pattern-border { height: 12px; background: repeating-linear-gradient(90deg, var(--red) 0px, var(--red) 8px, var(--gold) 8px, var(--gold) 16px, var(--green) 16px, var(--green) 24px, var(--ochre) 24px, var(--ochre) 32px); }

nav { background: var(--black); padding: 0 60px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 100; border-bottom: 3px solid var(--ochre); }
.logo { display: flex; flex-direction: column; padding: 14px 0; text-decoration: none; }
.logo-main { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 900; color: var(--gold); letter-spacing: 2px; line-height: 1; }
.logo-sub { font-family: 'Cormorant Garamond', serif; font-size: 11px; color: var(--warm); letter-spacing: 4px; text-transform: uppercase; opacity: 0.7; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { color: var(--warm); text-decoration: none; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 500; transition: color 0.2s; opacity: 0.85; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); opacity: 1; }
.cart-btn { background: var(--red); color: white; border: none; padding: 10px 20px; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; font-family: 'DM Sans', sans-serif; font-weight: 500; }
.cart-btn:hover { background: var(--ochre); }

/* PAGE HERO */
.page-hero {
  background: var(--black);
  padding: 80px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 20% 50%, rgba(193,39,45,0.1) 0%, transparent 60%); }
.hero-tag { display: inline-block; background: var(--red); color: white; font-size: 10px; letter-spacing: 3px; text-transform: uppercase; padding: 6px 14px; margin-bottom: 20px; }
.hero-title { font-family: 'Playfair Display', serif; font-size: clamp(36px, 4vw, 58px); color: var(--cream); font-weight: 900; line-height: 1.1; margin-bottom: 16px; }
.hero-title em { color: var(--gold); font-style: italic; }
.hero-desc { font-family: 'Cormorant Garamond', serif; font-size: 19px; color: var(--warm); opacity: 0.75; line-height: 1.7; margin-bottom: 32px; }

.hero-perks { display: flex; flex-direction: column; gap: 16px; }
.perk-item { display: flex; align-items: center; gap: 14px; }
.perk-icon { width: 42px; height: 42px; background: rgba(232,168,32,0.12); border: 1px solid rgba(232,168,32,0.3); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.perk-text strong { display: block; font-size: 14px; color: var(--cream); font-weight: 600; margin-bottom: 2px; }
.perk-text span { font-size: 12px; color: var(--warm); opacity: 0.6; }

/* HERO RIGHT — PROCESS STEPS */
.process-steps { position: relative; z-index: 1; }
.process-title { font-family: 'Playfair Display', serif; font-size: 15px; color: var(--gold); font-weight: 700; letter-spacing: 1px; margin-bottom: 24px; text-transform: uppercase; }
.step { display: flex; gap: 18px; margin-bottom: 24px; position: relative; }
.step:not(:last-child)::after { content: ''; position: absolute; left: 19px; top: 42px; width: 1px; height: calc(100% + 0px); background: rgba(232,168,32,0.2); }
.step-num { width: 40px; height: 40px; background: var(--red); color: white; font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.step-content strong { display: block; font-size: 14px; color: var(--cream); font-weight: 600; margin-bottom: 4px; }
.step-content span { font-size: 13px; color: var(--warm); opacity: 0.6; line-height: 1.5; }
.step-duration { display: inline-block; margin-top: 6px; font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(232,168,32,0.3); padding: 3px 8px; }

/* PRODUCT TYPE SELECTOR */
.type-section { padding: 60px; background: var(--warm); }
.section-tag { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--red); font-weight: 600; margin-bottom: 8px; }
.section-title { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 900; color: var(--black); margin-bottom: 36px; }
.section-title span { color: var(--red); }

.type-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 8px; }
.type-card {
  background: white;
  border: 2.5px solid transparent;
  padding: 24px 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}
.type-card:hover { border-color: rgba(193,39,45,0.3); transform: translateY(-3px); }
.type-card.selected { border-color: var(--red); background: #FFF8F8; }
.type-card.selected::after { content: '✓'; position: absolute; top: 10px; right: 12px; color: var(--red); font-size: 14px; font-weight: 700; }
.type-icon { font-size: 40px; display: block; margin-bottom: 10px; }
.type-name { font-family: 'Playfair Display', serif; font-size: 15px; font-weight: 700; color: var(--black); margin-bottom: 4px; }
.type-price-range { font-size: 11px; color: var(--ochre); font-weight: 600; letter-spacing: 0.5px; }

/* MAIN FORM */
.form-section { padding: 60px; background: var(--cream); }
.form-layout { display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: start; }

.form-box { background: white; padding: 48px; border-top: 4px solid var(--red); }
.form-box-title { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; color: var(--black); margin-bottom: 32px; padding-bottom: 20px; border-bottom: 1px solid rgba(0,0,0,0.08); }

.form-step-indicator { display: flex; gap: 0; margin-bottom: 36px; }
.fsi { flex: 1; padding: 10px; text-align: center; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; font-weight: 600; border-bottom: 3px solid rgba(0,0,0,0.1); color: #aaa; cursor: pointer; transition: all 0.2s; }
.fsi.active { color: var(--red); border-bottom-color: var(--red); }
.fsi.done { color: var(--green); border-bottom-color: var(--green); }

.form-step { display: none; }
.form-step.active { display: block; }

.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--black); opacity: 0.6; margin-bottom: 8px; font-weight: 600; }
.form-group label .req { color: var(--red); margin-left: 2px; }
.form-control { width: 100%; border: 1.5px solid rgba(0,0,0,0.15); padding: 13px 16px; font-size: 14px; font-family: 'DM Sans', sans-serif; outline: none; transition: border-color 0.2s; background: white; color: var(--black); }
.form-control:focus { border-color: var(--red); }
.form-control::placeholder { color: #bbb; }
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 120px; line-height: 1.6; }

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

.motif-picker { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.motif-opt { border: 1.5px solid rgba(0,0,0,0.12); padding: 12px 8px; text-align: center; cursor: pointer; transition: all 0.2s; font-size: 11px; letter-spacing: 0.5px; }
.motif-opt:hover, .motif-opt.selected { border-color: var(--red); background: #FFF5F5; color: var(--red); font-weight: 600; }
.motif-opt span { display: block; font-size: 22px; margin-bottom: 5px; }

.color-picker { display: flex; gap: 10px; flex-wrap: wrap; }
.color-opt { width: 36px; height: 36px; border-radius: 50%; cursor: pointer; border: 3px solid transparent; transition: all 0.2s; position: relative; }
.color-opt:hover { transform: scale(1.15); }
.color-opt.selected { border-color: var(--black) !important; }
.color-opt.selected::after { content: '✓'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 14px; color: white; font-weight: 700; }

.char-count { font-size: 11px; color: #aaa; text-align: right; margin-top: 4px; }

.upload-area { border: 2px dashed rgba(0,0,0,0.2); padding: 32px; text-align: center; cursor: pointer; transition: all 0.2s; }
.upload-area:hover { border-color: var(--red); background: #FFF5F5; }
.upload-icon { font-size: 36px; display: block; margin-bottom: 10px; }
.upload-text { font-size: 13px; color: #888; line-height: 1.6; }
.upload-text strong { color: var(--black); }

.form-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(0,0,0,0.08); }
.btn-prev { background: transparent; border: 1.5px solid rgba(0,0,0,0.2); color: var(--black); padding: 13px 28px; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer; font-family: 'DM Sans', sans-serif; font-weight: 600; transition: all 0.2s; }
.btn-prev:hover { border-color: var(--black); }
.btn-next { background: var(--red); color: white; border: none; padding: 14px 36px; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; font-family: 'DM Sans', sans-serif; font-weight: 600; transition: all 0.2s; }
.btn-next:hover { background: var(--ochre); }
.btn-submit { background: var(--green); color: white; border: none; padding: 16px 40px; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; font-family: 'DM Sans', sans-serif; font-weight: 700; transition: all 0.2s; width: 100%; margin-top: 32px; }
.btn-submit:hover { background: #1F5A40; }

/* ORDER SUMMARY SIDEBAR */
.order-summary { background: var(--black); padding: 36px; position: sticky; top: 80px; }
.os-title { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--gold); font-weight: 700; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.os-item { margin-bottom: 16px; }
.os-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--warm); opacity: 0.5; margin-bottom: 4px; }
.os-value { font-size: 14px; color: var(--cream); font-weight: 500; }
.os-value.empty { color: rgba(255,255,255,0.3); font-style: italic; font-size: 13px; }
.os-divider { height: 1px; background: rgba(255,255,255,0.08); margin: 20px 0; }
.os-price-row { display: flex; justify-content: space-between; margin-bottom: 10px; }
.os-price-label { font-size: 13px; color: var(--warm); opacity: 0.65; }
.os-price-val { font-size: 13px; color: var(--cream); font-weight: 500; }
.os-total-row { display: flex; justify-content: space-between; margin-top: 12px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.12); }
.os-total-label { font-family: 'Playfair Display', serif; font-size: 16px; color: var(--gold); font-weight: 700; }
.os-total-val { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--gold); font-weight: 900; }
.os-note { margin-top: 20px; background: rgba(232,168,32,0.08); border: 1px solid rgba(232,168,32,0.2); padding: 14px; font-size: 12px; color: var(--warm); opacity: 0.7; line-height: 1.6; }
.os-note strong { color: var(--gold); opacity: 1; }
.os-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.os-badge { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); padding: 6px 10px; font-size: 10px; letter-spacing: 1px; text-transform: uppercase; color: var(--warm); opacity: 0.7; }

/* SUCCESS STATE */
.success-state { display: none; text-align: center; padding: 60px 40px; }
.success-icon { font-size: 72px; display: block; margin-bottom: 24px; }
.success-title { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 900; color: var(--black); margin-bottom: 12px; }
.success-desc { font-family: 'Cormorant Garamond', serif; font-size: 18px; color: #666; line-height: 1.7; margin-bottom: 32px; }
.success-ref { display: inline-block; background: var(--warm); padding: 12px 24px; font-size: 13px; font-weight: 700; letter-spacing: 2px; color: var(--black); margin-bottom: 32px; }

/* CORPORATE SECTION */
.corporate-section { background: var(--red); padding: 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.corp-left h2 { font-family: 'Playfair Display', serif; font-size: 38px; color: white; font-weight: 900; line-height: 1.2; margin-bottom: 16px; }
.corp-left p { font-family: 'Cormorant Garamond', serif; font-size: 18px; color: rgba(255,255,255,0.85); line-height: 1.7; margin-bottom: 24px; }
.corp-features { list-style: none; }
.corp-features li { font-size: 13px; color: rgba(255,255,255,0.8); padding: 7px 0; display: flex; gap: 10px; align-items: center; }
.corp-features li::before { content: '✦'; color: var(--gold); font-size: 10px; flex-shrink: 0; }
.corp-right { background: rgba(0,0,0,0.15); padding: 40px; }
.corp-form-title { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--gold); margin-bottom: 24px; font-weight: 700; }
.corp-input { width: 100%; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: white; padding: 12px 16px; font-size: 13px; font-family: 'DM Sans', sans-serif; outline: none; margin-bottom: 14px; }
.corp-input::placeholder { color: rgba(255,255,255,0.4); }
.corp-input:focus { border-color: var(--gold); }
.btn-corp { background: var(--gold); color: var(--black); border: none; padding: 14px; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; font-family: 'DM Sans', sans-serif; font-weight: 700; width: 100%; transition: all 0.2s; }
.btn-corp:hover { background: white; }

/* FOOTER */
footer { background: #0D0500; padding: 60px 60px 0; border-top: 3px solid var(--red); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-family: 'Cormorant Garamond', serif; font-size: 16px; color: var(--warm); opacity: 0.6; line-height: 1.7; margin: 16px 0 24px; max-width: 260px; }
.social-links { display: flex; gap: 12px; }
.social-btn { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--warm); text-decoration: none; transition: all 0.2s; }
.social-btn:hover { background: var(--red); border-color: var(--red); }
.footer-col h4 { font-family: 'Playfair Display', serif; font-size: 15px; color: var(--gold); font-weight: 700; margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13px; color: var(--warm); opacity: 0.6; text-decoration: none; transition: opacity 0.2s; }
.footer-col ul li a:hover { opacity: 1; color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p { font-size: 12px; color: var(--warm); opacity: 0.4; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.page-hero > * { animation: fadeUp 0.7s ease forwards; opacity: 0; }
.page-hero > *:nth-child(1) { animation-delay: 0.1s; }
.page-hero > *:nth-child(2) { animation-delay: 0.25s; }

/* ===== ABOUT.CSS ===== */
:root {
  --red: #C1272D; --ochre: #D4870A; --gold: #E8A820;
  --green: #2D6A4F; --black: #1A0A00; --cream: #FDF6E3; --warm: #F5E6C8;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--black); overflow-x: hidden; }

.pattern-border { height: 12px; background: repeating-linear-gradient(90deg, var(--red) 0px, var(--red) 8px, var(--gold) 8px, var(--gold) 16px, var(--green) 16px, var(--green) 24px, var(--ochre) 24px, var(--ochre) 32px); }

nav { background: var(--black); padding: 0 60px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 100; border-bottom: 3px solid var(--ochre); }
.logo { display: flex; flex-direction: column; padding: 14px 0; text-decoration: none; }
.logo-main { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 900; color: var(--gold); letter-spacing: 2px; line-height: 1; }
.logo-sub { font-family: 'Cormorant Garamond', serif; font-size: 11px; color: var(--warm); letter-spacing: 4px; text-transform: uppercase; opacity: 0.7; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { color: var(--warm); text-decoration: none; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 500; transition: color 0.2s; opacity: 0.85; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); opacity: 1; }
.cart-btn { background: var(--red); color: white; border: none; padding: 10px 20px; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; font-family: 'DM Sans', sans-serif; font-weight: 500; }
.cart-btn:hover { background: var(--ochre); }

/* HERO */
.hero {
  background: var(--black);
  min-height: 85vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.hero-left { padding: 90px 60px; display: flex; flex-direction: column; justify-content: center; position: relative; z-index: 2; }
.hero-tag { display: inline-block; background: var(--red); color: white; font-size: 10px; letter-spacing: 3px; text-transform: uppercase; padding: 6px 14px; margin-bottom: 24px; width: fit-content; }
.hero-name { font-family: 'Playfair Display', serif; font-size: clamp(44px, 5vw, 70px); color: var(--cream); font-weight: 900; line-height: 1.05; margin-bottom: 8px; }
.hero-name em { color: var(--gold); font-style: italic; }
.hero-title-role { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: var(--ochre); font-weight: 600; letter-spacing: 2px; margin-bottom: 24px; }
.hero-bio { font-family: 'Cormorant Garamond', serif; font-size: 19px; color: var(--warm); opacity: 0.78; line-height: 1.8; max-width: 480px; margin-bottom: 36px; }
.hero-awards { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.award-tag { background: rgba(232,168,32,0.12); border: 1px solid rgba(232,168,32,0.3); color: var(--gold); font-size: 11px; letter-spacing: 1px; padding: 6px 14px; }
.hero-cta-row { display: flex; gap: 14px; }
.btn-primary { background: var(--red); color: white; border: none; padding: 14px 32px; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; font-family: 'DM Sans', sans-serif; font-weight: 600; transition: all 0.2s; text-decoration: none; display: inline-block; }
.btn-primary:hover { background: var(--ochre); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--gold); border: 1.5px solid var(--gold); padding: 14px 32px; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; font-family: 'DM Sans', sans-serif; font-weight: 600; transition: all 0.2s; text-decoration: none; display: inline-block; }
.btn-outline:hover { background: var(--gold); color: var(--black); }

.hero-right { position: relative; display: flex; align-items: center; justify-content: center; padding: 60px; }
.artist-portrait {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #2A0A0A, #6A1A1A);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--ochre);
}
.artist-portrait::before { content: ''; position: absolute; inset: -10px; border: 1px solid rgba(232,168,32,0.25); }
.artist-portrait::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(193,39,45,0.1) 0%, transparent 70%); }
.portrait-emoji { font-size: 140px; filter: drop-shadow(0 0 30px rgba(232,168,32,0.3)); z-index: 1; }
.portrait-label { position: absolute; bottom: -1px; left: -1px; right: -1px; background: var(--red); padding: 12px 20px; }
.portrait-name { font-family: 'Playfair Display', serif; font-size: 16px; color: white; font-weight: 700; }
.portrait-from { font-size: 11px; color: rgba(255,255,255,0.7); letter-spacing: 1px; margin-top: 2px; }
.portrait-corner { position: absolute; font-size: 18px; color: var(--gold); }
.portrait-corner.tl { top: -9px; left: -9px; }
.portrait-corner.tr { top: -9px; right: -9px; }

/* STATS BAR */
.stats-bar { background: var(--red); padding: 28px 60px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; }
.stat-item { text-align: center; position: relative; }
.stat-item:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 20%; height: 60%; width: 1px; background: rgba(255,255,255,0.2); }
.stat-num { font-family: 'Playfair Display', serif; font-size: 32px; color: white; font-weight: 900; line-height: 1; }
.stat-label { font-size: 11px; color: rgba(255,255,255,0.75); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 4px; }

/* STORY SECTION */
.story-section { padding: 80px 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.story-art { position: relative; }
.story-frame { border: 3px solid var(--ochre); padding: 40px; background: var(--warm); position: relative; }
.story-frame::before { content: ''; position: absolute; inset: -8px; border: 1px solid rgba(212,135,10,0.3); }
.story-emoji { font-size: 100px; display: block; text-align: center; margin-bottom: 20px; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.1)); }
.story-quote { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-style: italic; color: var(--black); opacity: 0.7; text-align: center; line-height: 1.7; padding: 0 10px; }
.story-quote::before { content: '"'; font-size: 60px; color: var(--red); line-height: 0; vertical-align: -24px; margin-right: 4px; opacity: 0.4; }
.sc-corner { position: absolute; font-size: 18px; color: var(--ochre); }
.sc-corner.tl { top: -9px; left: -9px; } .sc-corner.tr { top: -9px; right: -9px; }
.sc-corner.bl { bottom: -9px; left: -9px; } .sc-corner.br { bottom: -9px; right: -9px; }

.story-content {}
.section-tag { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--red); font-weight: 600; margin-bottom: 8px; }
.section-title { font-family: 'Playfair Display', serif; font-size: 40px; font-weight: 900; color: var(--black); line-height: 1.15; margin-bottom: 20px; }
.section-title span { color: var(--red); }
.story-text { font-family: 'Cormorant Garamond', serif; font-size: 18px; color: var(--black); opacity: 0.72; line-height: 1.85; margin-bottom: 16px; }
.story-highlight { background: var(--warm); border-left: 4px solid var(--red); padding: 16px 20px; margin: 24px 0; font-family: 'Cormorant Garamond', serif; font-size: 19px; font-style: italic; color: var(--black); opacity: 0.8; line-height: 1.6; }

/* TIMELINE */
.timeline-section { background: var(--black); padding: 80px 60px; }
.tl-title { font-family: 'Playfair Display', serif; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--red); font-weight: 600; margin-bottom: 8px; }
.tl-h2 { font-family: 'Playfair Display', serif; font-size: 42px; color: var(--cream); font-weight: 900; margin-bottom: 52px; }
.tl-h2 span { color: var(--gold); }

.timeline { position: relative; max-width: 800px; }
.timeline::before { content: ''; position: absolute; left: 28px; top: 0; bottom: 0; width: 1px; background: linear-gradient(to bottom, transparent, var(--ochre), var(--ochre), transparent); }

.tl-item { display: flex; gap: 32px; margin-bottom: 40px; position: relative; }
.tl-dot { width: 58px; height: 58px; background: var(--black); border: 2px solid var(--ochre); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 13px; color: var(--gold); font-weight: 700; flex-shrink: 0; z-index: 1; letter-spacing: 0.5px; }
.tl-dot.highlight { background: var(--red); border-color: var(--red); color: white; }
.tl-content { padding-top: 10px; }
.tl-year { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--ochre); font-weight: 600; margin-bottom: 4px; }
.tl-event { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--cream); font-weight: 700; margin-bottom: 6px; }
.tl-desc { font-size: 13px; color: var(--warm); opacity: 0.6; line-height: 1.6; }

/* ARTISTS GRID */
.artists-section { padding: 80px 60px; background: var(--warm); }
.artists-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.artist-card { background: white; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; }
.artist-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.artist-portrait-mini { height: 220px; display: flex; align-items: center; justify-content: center; font-size: 72px; position: relative; }
.artist-card:nth-child(1) .artist-portrait-mini { background: linear-gradient(135deg, #FDEBD0, #F0D0A0); }
.artist-card:nth-child(2) .artist-portrait-mini { background: linear-gradient(135deg, #D5E8D4, #B8D4B7); }
.artist-card:nth-child(3) .artist-portrait-mini { background: linear-gradient(135deg, #FDE8D8, #F5C9A8); }
.artist-card:nth-child(4) .artist-portrait-mini { background: linear-gradient(135deg, #E8DEFC, #D4C4F0); }
.artist-card:nth-child(5) .artist-portrait-mini { background: linear-gradient(135deg, #FCF0DE, #F5DEB3); }
.artist-card:nth-child(6) .artist-portrait-mini { background: linear-gradient(135deg, #D4ECD4, #B0D4B0); }
.artist-speciality { position: absolute; bottom: 0; left: 0; right: 0; background: var(--red); padding: 6px 16px; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: white; font-weight: 600; }
.artist-info { padding: 20px 22px 24px; }
.artist-name { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--black); margin-bottom: 4px; }
.artist-from { font-size: 12px; color: var(--ochre); font-weight: 600; letter-spacing: 0.5px; margin-bottom: 8px; }
.artist-desc { font-size: 13px; color: #777; line-height: 1.6; margin-bottom: 14px; }
.artist-exp { display: flex; gap: 16px; }
.exp-item { text-align: center; }
.exp-num { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--black); }
.exp-label { font-size: 10px; color: #aaa; letter-spacing: 0.5px; text-transform: uppercase; }

/* PHILOSOPHY */
.philosophy-section { background: var(--black); padding: 80px 60px; }
.phil-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 48px; }
.phil-card { background: rgba(255,255,255,0.03); padding: 40px 32px; border: 1px solid rgba(255,255,255,0.06); transition: background 0.3s; }
.phil-card:hover { background: rgba(193,39,45,0.08); }
.phil-icon { font-size: 40px; display: block; margin-bottom: 20px; }
.phil-title { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--gold); font-weight: 700; margin-bottom: 12px; }
.phil-text { font-family: 'Cormorant Garamond', serif; font-size: 17px; color: var(--warm); opacity: 0.7; line-height: 1.8; }

/* PRESS */
.press-section { padding: 60px; background: var(--cream); }
.press-logos { display: flex; gap: 0; flex-wrap: wrap; margin-top: 40px; }
.press-item { flex: 1; min-width: 160px; padding: 28px; border: 1px solid rgba(0,0,0,0.08); text-align: center; transition: background 0.2s; }
.press-item:hover { background: var(--warm); }
.press-name { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--black); opacity: 0.4; margin-bottom: 6px; }
.press-quote { font-size: 11px; color: #aaa; line-height: 1.5; font-style: italic; }

/* CTA SECTION */
.cta-section { background: var(--red); padding: 80px 60px; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(45deg, rgba(0,0,0,0.03) 0px, rgba(0,0,0,0.03) 1px, transparent 1px, transparent 20px); }
.cta-tag { display: inline-block; background: rgba(255,255,255,0.15); color: white; font-size: 10px; letter-spacing: 3px; text-transform: uppercase; padding: 6px 14px; margin-bottom: 20px; }
.cta-title { font-family: 'Playfair Display', serif; font-size: 50px; color: white; font-weight: 900; line-height: 1.1; margin-bottom: 16px; }
.cta-title em { font-style: italic; opacity: 0.85; }
.cta-desc { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: rgba(255,255,255,0.8); line-height: 1.6; max-width: 500px; margin: 0 auto 40px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; }
.btn-white { background: white; color: var(--red); border: none; padding: 16px 36px; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; font-family: 'DM Sans', sans-serif; font-weight: 700; transition: all 0.2s; text-decoration: none; display: inline-block; }
.btn-white:hover { background: var(--gold); color: var(--black); transform: translateY(-2px); }
.btn-white-outline { background: transparent; color: white; border: 2px solid white; padding: 16px 36px; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; font-family: 'DM Sans', sans-serif; font-weight: 700; transition: all 0.2s; text-decoration: none; display: inline-block; }
.btn-white-outline:hover { background: white; color: var(--red); }

/* FOOTER */
footer { background: #0D0500; padding: 60px 60px 0; border-top: 3px solid var(--red); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-family: 'Cormorant Garamond', serif; font-size: 16px; color: var(--warm); opacity: 0.6; line-height: 1.7; margin: 16px 0 24px; max-width: 260px; }
.social-links { display: flex; gap: 12px; }
.social-btn { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--warm); text-decoration: none; transition: all 0.2s; }
.social-btn:hover { background: var(--red); border-color: var(--red); }
.footer-col h4 { font-family: 'Playfair Display', serif; font-size: 15px; color: var(--gold); font-weight: 700; margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13px; color: var(--warm); opacity: 0.6; text-decoration: none; transition: opacity 0.2s; }
.footer-col ul li a:hover { opacity: 1; color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p { font-size: 12px; color: var(--warm); opacity: 0.4; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.hero-left > * { animation: fadeUp 0.8s ease forwards; opacity: 0; }
.hero-left > *:nth-child(1) { animation-delay: 0.1s; }
.hero-left > *:nth-child(2) { animation-delay: 0.2s; }
.hero-left > *:nth-child(3) { animation-delay: 0.3s; }
.hero-left > *:nth-child(4) { animation-delay: 0.4s; }
.hero-left > *:nth-child(5) { animation-delay: 0.5s; }
.hero-left > *:nth-child(6) { animation-delay: 0.6s; }

/* ===== CONTACT.CSS ===== */
:root { --red: #C1272D; --ochre: #D4870A; --gold: #E8A820; --green: #2D6A4F; --black: #1A0A00; --cream: #FDF6E3; --warm: #F5E6C8; }
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--black); }

.pattern-border { height: 12px; background: repeating-linear-gradient(90deg, var(--red) 0px, var(--red) 8px, var(--gold) 8px, var(--gold) 16px, var(--green) 16px, var(--green) 24px, var(--ochre) 24px, var(--ochre) 32px); }

nav { background: var(--black); padding: 0 60px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 100; border-bottom: 3px solid var(--ochre); }
.logo { display: flex; flex-direction: column; padding: 8px 0; text-decoration: none; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { color: var(--warm); text-decoration: none; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 500; opacity: 0.85; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); opacity: 1; }
.cart-btn { background: var(--red); color: white; border: none; padding: 10px 20px; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; font-family: 'DM Sans', sans-serif; font-weight: 500; }
.cart-btn:hover { background: var(--ochre); }

/* PAGE HERO */
.page-hero { background: var(--black); padding: 80px 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 80% 50%, rgba(193,39,45,0.08) 0%, transparent 60%); }
.hero-tag { display: inline-block; background: var(--red); color: white; font-size: 10px; letter-spacing: 3px; text-transform: uppercase; padding: 6px 14px; margin-bottom: 20px; }
.hero-title { font-family: 'Playfair Display', serif; font-size: 56px; color: var(--cream); font-weight: 900; line-height: 1.1; margin-bottom: 16px; }
.hero-title em { color: var(--gold); font-style: italic; }
.hero-desc { font-family: 'Cormorant Garamond', serif; font-size: 19px; color: var(--warm); opacity: 0.72; line-height: 1.7; margin-bottom: 32px; }

.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card { display: flex; align-items: center; gap: 16px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); padding: 16px 20px; transition: background 0.2s; }
.contact-card:hover { background: rgba(255,255,255,0.07); }
.contact-icon { width: 44px; height: 44px; background: var(--red); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.contact-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--warm); opacity: 0.5; margin-bottom: 3px; }
.contact-val { font-size: 14px; color: var(--cream); font-weight: 500; }
.contact-val a { color: var(--gold); text-decoration: none; }
.contact-val a:hover { text-decoration: underline; }

/* MAIN FORM SECTION */
.main-section { display: grid; grid-template-columns: 1fr 420px; gap: 0; align-items: start; }

/* FORM */
.form-side { padding: 60px; background: var(--cream); }
.form-tag { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--red); font-weight: 600; margin-bottom: 8px; }
.form-h2 { font-family: 'Playfair Display', serif; font-size: 38px; font-weight: 900; color: var(--black); margin-bottom: 36px; }
.form-h2 span { color: var(--red); }

.tabs { display: flex; gap: 0; margin-bottom: 36px; border-bottom: 2px solid rgba(0,0,0,0.1); }
.tab { padding: 12px 24px; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600; cursor: pointer; color: #aaa; border-bottom: 3px solid transparent; margin-bottom: -2px; transition: all 0.2s; }
.tab.active { color: var(--red); border-bottom-color: var(--red); }
.tab-content { display: none; }
.tab-content.active { display: block; }

.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--black); opacity: 0.55; margin-bottom: 8px; font-weight: 600; }
.form-group label .req { color: var(--red); }
.form-control { width: 100%; border: 1.5px solid rgba(0,0,0,0.14); padding: 13px 16px; font-size: 14px; font-family: 'DM Sans', sans-serif; outline: none; transition: border-color 0.2s; background: white; color: var(--black); }
.form-control:focus { border-color: var(--red); }
.form-control::placeholder { color: #ccc; }
textarea.form-control { resize: vertical; min-height: 130px; line-height: 1.6; }
select.form-control { cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.submit-btn { width: 100%; background: var(--red); color: white; border: none; padding: 16px; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; font-family: 'DM Sans', sans-serif; font-weight: 700; transition: all 0.2s; margin-top: 8px; }
.submit-btn:hover { background: var(--ochre); }

.success-msg { display: none; text-align: center; padding: 48px 20px; }
.success-msg .icon { font-size: 60px; display: block; margin-bottom: 16px; }
.success-msg h3 { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; color: var(--black); margin-bottom: 10px; }
.success-msg p { font-family: 'Cormorant Garamond', serif; font-size: 17px; color: #666; line-height: 1.7; }

/* INFO SIDE */
.info-side { background: var(--black); padding: 60px 48px; }
.info-tag { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--red); font-weight: 600; margin-bottom: 8px; }
.info-h2 { font-family: 'Playfair Display', serif; font-size: 30px; color: var(--cream); font-weight: 900; margin-bottom: 28px; }
.info-h2 span { color: var(--gold); }

.info-item { margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.info-item:last-of-type { border-bottom: none; }
.info-item-icon { font-size: 28px; margin-bottom: 10px; display: block; }
.info-item-title { font-family: 'Playfair Display', serif; font-size: 16px; color: var(--gold); font-weight: 700; margin-bottom: 6px; }
.info-item-text { font-size: 13px; color: var(--warm); opacity: 0.65; line-height: 1.7; }
.info-item-text a { color: var(--gold); text-decoration: none; }

.social-title { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--warm); opacity: 0.5; margin-bottom: 14px; font-weight: 600; }
.social-row { display: flex; gap: 10px; }
.social-link { width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; font-size: 16px; text-decoration: none; color: var(--warm); transition: all 0.2s; }
.social-link:hover { background: var(--red); border-color: var(--red); }

.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 16px; margin-top: 10px; }
.hour-item { font-size: 12px; color: var(--warm); opacity: 0.6; }
.hour-item strong { color: var(--cream); opacity: 1; font-size: 11px; letter-spacing: 0.5px; }

/* MAP PLACEHOLDER */
.map-section { background: var(--warm); padding: 60px; }
.map-h2 { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 900; color: var(--black); margin-bottom: 8px; }
.map-h2 span { color: var(--red); }
.map-sub { font-size: 14px; color: #888; margin-bottom: 32px; }
.map-placeholder { width: 100%; height: 320px; background: linear-gradient(135deg, #e0d4b8, #c8bc98); display: flex; flex-direction: column; align-items: center; justify-content: center; border: 2px solid rgba(0,0,0,0.08); position: relative; overflow: hidden; }
.map-placeholder::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(0deg, rgba(0,0,0,0.03) 0px, rgba(0,0,0,0.03) 1px, transparent 1px, transparent 30px), repeating-linear-gradient(90deg, rgba(0,0,0,0.03) 0px, rgba(0,0,0,0.03) 1px, transparent 1px, transparent 30px); }
.map-pin { font-size: 48px; margin-bottom: 12px; }
.map-label { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--black); margin-bottom: 4px; }
.map-addr { font-size: 13px; color: #666; text-align: center; line-height: 1.6; }
.map-btn { margin-top: 16px; background: var(--red); color: white; border: none; padding: 10px 24px; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; font-family: 'DM Sans', sans-serif; font-weight: 600; }

/* FAQ */
.faq-section { padding: 60px; background: var(--cream); }
.faq-tag { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--red); font-weight: 600; margin-bottom: 8px; }
.faq-h2 { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 900; color: var(--black); margin-bottom: 36px; }
.faq-h2 span { color: var(--red); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.faq-item { background: white; padding: 24px; border-left: 3px solid transparent; transition: border-color 0.2s; cursor: pointer; }
.faq-item:hover { border-left-color: var(--red); }
.faq-q { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; color: var(--black); margin-bottom: 10px; display: flex; justify-content: space-between; align-items: start; gap: 10px; }
.faq-arrow { color: var(--red); font-size: 18px; flex-shrink: 0; transition: transform 0.2s; }
.faq-item.open .faq-arrow { transform: rotate(45deg); }
.faq-a { font-size: 13px; color: #777; line-height: 1.7; display: none; }
.faq-item.open .faq-a { display: block; }

/* FOOTER */
footer { background: #0D0500; padding: 60px 60px 0; border-top: 3px solid var(--red); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-family: 'Cormorant Garamond', serif; font-size: 16px; color: var(--warm); opacity: 0.6; line-height: 1.7; margin: 16px 0 24px; max-width: 260px; }
.social-links { display: flex; gap: 12px; }
.social-btn { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--warm); text-decoration: none; transition: all 0.2s; }
.social-btn:hover { background: var(--red); border-color: var(--red); }
.footer-col h4 { font-family: 'Playfair Display', serif; font-size: 15px; color: var(--gold); font-weight: 700; margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13px; color: var(--warm); opacity: 0.6; text-decoration: none; transition: opacity 0.2s; }
.footer-col ul li a:hover { opacity: 1; color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p { font-size: 12px; color: var(--warm); opacity: 0.4; }
/* ===== PRODUCT CAROUSEL ===== */
.carousel { width: 100%; height: 100%; }
.cs-track { width: 100%; height: 100%; position: relative; }
.cs-slide { display: none; width: 100%; height: 100%; position: absolute; top: 0; left: 0; }
.cs-slide.active { display: block; }
.cs-slide img { width: 100%; height: 100%; object-fit: cover; }
.cs-prev, .cs-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(26,10,0,0.5); color: white; border: none;
  width: 28px; height: 28px; border-radius: 50%; cursor: pointer;
  font-size: 11px; z-index: 5; display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.2s;
}
.cs-prev { left: 6px; }
.cs-next { right: 6px; }
.product-img:hover .cs-prev,
.product-img:hover .cs-next { opacity: 1; }
.cs-dots {
  position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 5px; z-index: 5;
}
.cs-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.5); cursor: pointer; transition: all 0.2s;
}
.cs-dot.active { background: white; transform: scale(1.2); }

/* =============================================
   RESPONSIVE — Mobile, Tablet, Desktop
   Breakpoints:
   Mobile:  < 768px
   Tablet:  768px - 1024px
   Desktop: > 1024px
============================================= */

/* ===== TABLET (768px - 1024px) ===== */


/* ============================================
   RESPONSIVE — Portrait fix focus
   ============================================ */

/* GLOBAL — prevent overflow always */
html { box-sizing: border-box; overflow-x: hidden; }
*, *::before, *::after { box-sizing: border-box; }
body { overflow-x: hidden; width: 100%; position: relative; }
img { max-width: 100%; height: auto; display: block; }

/* Hamburger — hidden on desktop */
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; border: none; background: none; }
.nav-hamburger span { width: 22px; height: 2px; background: white; display: block; transition: all 0.3s; border-radius: 2px; }
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-filter-btn { display: none; }

/* ============ TABLET ============ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { display: none; }
  .hero-left { padding: 60px 32px; }
  .products-grid { grid-template-columns: repeat(2,1fr); }
  .cat-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
  .shop-layout { grid-template-columns: 200px 1fr; }
  .cart-layout { grid-template-columns: 1fr 320px; }
  .main-section { grid-template-columns: 1fr; }
  .info-side { display: none; }
}

/* ============ MOBILE PORTRAIT (max 767px) ============ */
@media (max-width: 767px) {

  /* Prevent ALL overflow */
  html, body { overflow-x: hidden !important; max-width: 100vw !important; }
  section, div, nav, footer, header, main { max-width: 100% !important; }

  /* Fixed NAV */
  nav { padding: 0 16px !important; height: 56px !important; position: fixed !important; top:0; left:0; right:0; width:100% !important; z-index:1000; }
  body { padding-top: 56px; }
  .nav-links { display: none !important; }
  .nav-links.open {
    display: flex !important;
    flex-direction: column !important;
    position: fixed !important;
    top: 56px !important; left: 0 !important; right: 0 !important;
    background: var(--black) !important;
    padding: 8px 0 !important;
    z-index: 999 !important;
    width: 100% !important;
  }
  .nav-links.open li { border-bottom: 1px solid rgba(255,255,255,0.07); }
  .nav-links.open a { padding: 14px 20px !important; display: block !important; font-size: 14px !important; }
  .nav-hamburger { display: flex !important; }
  .cart-btn { padding: 7px 10px !important; font-size: 11px !important; }

  /* HERO — portrait fix */
  .hero { display: flex !important; flex-direction: column !important; min-height: auto !important; width: 100% !important; overflow: hidden !important; }
  .hero-left { padding: 36px 16px 32px !important; width: 100% !important; }
  .hero-right, .hero-art, .hero-art-overlay { display: none !important; }
  .hero-name { font-size: clamp(26px, 7vw, 40px) !important; word-break: break-word !important; }
  .hero-bio { font-size: 14px !important; max-width: 100% !important; }
  .hero-cta-row { flex-direction: column !important; gap: 10px !important; width: 100% !important; }
  .hero-cta-row > * { width: 100% !important; text-align: center !important; display: block !important; }
  .hero-stats { gap: 16px !important; flex-wrap: wrap !important; margin-top: 24px !important; }
  .stat-num { font-size: 24px !important; }

  /* TICKER */
  .ticker-wrap { overflow: hidden !important; max-width: 100vw !important; }

  /* SECTIONS */
  section { padding: 32px 16px !important; width: 100% !important; overflow: hidden !important; }

  /* PRODUCTS */
  .products-grid { grid-template-columns: repeat(2,1fr) !important; gap: 10px !important; width: 100% !important; }
  .product-img { height: 140px !important; }
  .product-name { font-size: 13px !important; }
  .product-desc { display: none !important; }
  .product-footer { flex-direction: column !important; gap: 6px !important; }
  .add-cart { width: 100% !important; font-size: 11px !important; padding: 8px !important; }
  .price { font-size: 14px !important; }

  /* CATEGORIES */
  .cat-grid { grid-template-columns: repeat(2,1fr) !important; gap: 10px !important; }

  /* SHOP */
  .shop-layout { display: block !important; }
  .shop-sidebar { display: none !important; }
  .shop-sidebar.open { display: block !important; }
  .mobile-filter-btn { display: block !important; width: 100% !important; background: var(--black) !important; color: white !important; border: none !important; padding: 12px !important; font-size: 12px !important; font-weight: 600 !important; text-transform: uppercase !important; letter-spacing: 1px !important; cursor: pointer !important; margin-bottom: 16px !important; }

  /* CART */
  .cart-layout { display: block !important; }
  .cart-header { display: none !important; }
  .order-summary { margin-top: 20px !important; position: static !important; }

  /* CONTACT */
  .main-section { display: block !important; }
  .info-side { display: none !important; }
  .form-side { padding: 24px 16px !important; }
  .form-row { grid-template-columns: 1fr !important; }
  .tabs { overflow-x: auto !important; flex-wrap: nowrap !important; }
  .tab { white-space: nowrap !important; flex-shrink: 0 !important; }

  /* GALLERY */
  .gallery-grid { columns: 2 !important; gap: 8px !important; }
  .gallery-filters { flex-wrap: wrap !important; justify-content: center !important; gap: 8px !important; }

  /* CUSTOM ORDER */
  .custom-order-layout { display: block !important; }
  .order-summary-panel { display: none !important; }
  .type-cards { grid-template-columns: repeat(2,1fr) !important; }

  /* ABOUT */
  .about-hero-grid { display: block !important; }
  .artist-img-wrap { width: 160px !important; height: 160px !important; margin: 0 auto 24px !important; }
  .timeline { display: block !important; }
  .team-grid { grid-template-columns: repeat(2,1fr) !important; }
  .values-grid { grid-template-columns: 1fr !important; }

  /* FOOTER */
  footer { padding: 32px 16px 16px !important; overflow: hidden !important; }
  .footer-grid { display: block !important; }
  .footer-col { margin-bottom: 24px !important; }
  .footer-bottom { flex-direction: column !important; text-align: center !important; gap: 6px !important; }

  /* PAGE HERO */
  .page-hero { padding: 36px 16px !important; min-height: auto !important; }
  .page-hero h1 { font-size: clamp(22px, 6vw, 32px) !important; }

  /* HEADINGS */
  h1 { font-size: clamp(24px, 7vw, 36px) !important; }
  h2 { font-size: clamp(20px, 6vw, 28px) !important; }

  /* SECTION HEADER */
  .section-header { flex-direction: column !important; gap: 12px !important; }
}

/* ============ SMALL MOBILE (max 420px) ============ */
@media (max-width: 420px) {
  .products-grid { grid-template-columns: 1fr !important; }
  .cat-grid { grid-template-columns: 1fr 1fr !important; }
  .gallery-grid { columns: 1 !important; }
  .team-grid { grid-template-columns: 1fr !important; }
  .type-cards { grid-template-columns: 1fr !important; }
  .hero-name { font-size: 26px !important; }
}
