/* Solidelle home page — hand-written to match solidelle-homepage (Next.js)
   exactly: same colors, same fonts, same layout. See front-page.php. */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --ink: #173448;
  --navy: #102f43;
  --cream: #fdfbf7;
  --card: #fff;
  --border: #d7d9d6;
  --gold: #c9a56a;
  --muted: #6b6b6b;
}
* { box-sizing: border-box; }
body { margin: 0; background: var(--cream); color: var(--ink); font-family: 'Jost', sans-serif; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.announcement { background: var(--ink); color: #fff; text-align: center; font-size: 12px; letter-spacing: .05em; padding: 8px 16px; display: flex; justify-content: center; gap: 24px; }

.site-header { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid var(--border); background: var(--cream); }
.site-header .menu-btn { background: none; border: 0; font-size: 22px; color: var(--ink); }
.site-header .logo { text-align: center; flex: 1; }
.site-header .logo .name { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 600; letter-spacing: .35em; }
.site-header .logo .tagline { display: block; font-size: 9px; letter-spacing: .35em; color: var(--gold); margin-top: 2px; }
.site-header .icons { display: flex; gap: 14px; align-items: center; }
.site-header .icons a, .site-header .icons button { background: none; border: 0; color: var(--ink); font-size: 20px; }

.hero { position: relative; overflow: hidden; }
.hero img { width: 100%; height: 60vh; min-height: 320px; object-fit: cover; }
.hero .overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(23,52,72,.75), rgba(23,52,72,.15)); display: flex; align-items: flex-end; padding: 24px; }
.hero .content { max-width: 460px; color: #fff; }
.hero .eyebrow { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 20px; color: var(--gold); margin: 0 0 6px; }
.hero h1 { font-family: 'Cormorant Garamond', serif; font-size: 40px; font-weight: 700; text-transform: uppercase; margin: 0 0 16px; line-height: .95; }
.hero .btn { display: inline-block; background: #fff; color: var(--ink); padding: 12px 22px; font-size: 12px; letter-spacing: .15em; text-transform: uppercase; font-weight: 600; }

.benefits { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; padding: 24px 20px; text-align: center; }
.benefits div { font-size: 11px; font-weight: 600; }
.benefits .icon { color: var(--gold); font-size: 20px; display: block; margin-bottom: 6px; }

.section { padding: 32px 20px; }
.section .eyebrow { text-align: center; font-size: 11px; letter-spacing: .3em; color: var(--gold); text-transform: uppercase; font-weight: 600; margin: 0 0 8px; }
.section h2 { text-align: center; font-family: 'Cormorant Garamond', serif; font-size: 30px; margin: 0 0 24px; }

.category-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.category-grid a { position: relative; display: block; aspect-ratio: 3/4; overflow: hidden; }
.category-grid img { width: 100%; height: 100%; object-fit: cover; }
.category-grid .overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(23,52,72,.7), transparent 60%); display: flex; align-items: flex-end; padding: 14px; }
.category-grid .name { color: #fff; font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 700; text-transform: uppercase; }
.category-grid .shop { color: rgba(255,255,255,.85); font-size: 10px; letter-spacing: .15em; display: block; margin-top: 4px; }

.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px 12px; }
.product-card .image { position: relative; aspect-ratio: 3/4; background: var(--card); overflow: hidden; }
.product-card .image img { width: 100%; height: 100%; object-fit: cover; }
.product-card .badge { position: absolute; left: 10px; top: 10px; background: var(--ink); color: #fff; font-size: 9px; letter-spacing: .1em; padding: 4px 8px; text-transform: uppercase; }
.product-card h3 { font-size: 13px; font-weight: 500; margin: 10px 0 4px; }
.product-card .price { font-size: 13px; font-weight: 600; }
.product-card .price del { color: var(--muted); font-weight: 400; margin-right: 6px; }

.view-all { display: block; text-align: center; font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); margin-top: 16px; }

.site-footer { background: var(--ink); color: #fff; padding: 40px 20px; text-align: center; font-size: 12px; }
.site-footer .name { font-family: 'Cormorant Garamond', serif; font-size: 24px; margin-bottom: 8px; }

.mobile-nav { position: fixed; bottom: 0; left: 0; right: 0; display: grid; grid-template-columns: repeat(5, 1fr); background: #fff; border-top: 1px solid var(--border); padding: 8px 0; z-index: 20; }
.mobile-nav a { display: flex; flex-direction: column; align-items: center; gap: 3px; font-size: 9px; color: var(--muted); }
.mobile-nav a.active { color: var(--ink); font-weight: 600; }
main { padding-bottom: 70px; }
