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

/* ═══════════════════════════════════════════════════
   LIZZYLAND — Tropical Art Nouveau Theme
   Where Pipe-dreams Come True
   ═══════════════════════════════════════════════════ */

:root {
  --sand:        #f5e6c8;
  --sand-light:  #fdf8f0;
  --sand-deep:   #e8d5a8;
  --ocean:       #1a8a7a;
  --ocean-light: #4ecdc4;
  --ocean-pale:  #d4f5f2;
  --coral:       #e07a5f;
  --coral-light: #f4a58a;
  --gold:        #c8952a;
  --gold-light:  #e8b84b;
  --warm-dark:   #2d1b0e;
  --warm-mid:    #5c3d1e;
  --cream:       #fdf8f0;
  --text:        #2d1b0e;
  --text-soft:   #6b4f35;
  --text-muted:  #9c7a5a;
  --white:       #ffffff;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', 'Segoe UI', sans-serif;
  --font-accent:  'Cormorant Garamond', Georgia, serif;

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  28px;
  --radius-xl:  48px;

  --shadow-sm:  0 2px 8px rgba(45,27,14,0.08);
  --shadow-md:  0 8px 32px rgba(45,27,14,0.12);
  --shadow-lg:  0 20px 60px rgba(45,27,14,0.18);
}

/* ─── Reset & Base ──────────────────────────────── */

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--sand-light);
  color: var(--text);
  line-height: 1.7;
  font-size: 1rem;
  overflow-x: hidden;
}

a { color: var(--ocean); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--coral); }

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

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.25;
  color: var(--warm-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.4rem, 3vw, 2.2rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 600; }

p { color: var(--text-soft); line-height: 1.8; }

/* ─── Header ────────────────────────────────────── */

.ll-header {
  background: var(--cream);
  border-bottom: 2px solid var(--sand-deep);
  padding: 0 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.ll-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 2rem;
}

.ll-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.ll-logo-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.ll-logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--warm-dark);
  letter-spacing: -0.02em;
}

.ll-logo-text span {
  color: var(--ocean);
}

.ll-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.ll-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-soft);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.ll-nav a:hover { color: var(--ocean); }

.ll-nav .nav-cta {
  background: var(--ocean);
  color: var(--white) !important;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-xl);
  font-weight: 600;
  transition: background 0.2s, transform 0.2s;
}

.ll-nav .nav-cta:hover {
  background: var(--coral);
  transform: translateY(-1px);
}

/* ─── Hero / Beach Banner ───────────────────────── */

.ll-hero {
  position: relative;
  height: 70vh;
  min-height: 480px;
  max-height: 700px;
  overflow: hidden;
}

.ll-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}

.ll-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(45,27,14,0.15) 0%,
    rgba(45,27,14,0.05) 40%,
    rgba(45,27,14,0.6) 100%
  );
}

.ll-hero-content {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 100%;
  padding: 0 2rem;
}

.ll-hero-eyebrow {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  opacity: 0.95;
}

.ll-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 700;
  color: var(--white);
  text-shadow: 0 2px 24px rgba(45,27,14,0.5);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.ll-hero-tagline {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: var(--sand-light);
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* ─── Two Paths Section ─────────────────────────── */

.ll-paths {
  max-width: 1100px;
  margin: -3rem auto 0;
  padding: 0 2rem 4rem;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.ll-path-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-lg);
  border: 1.5px solid var(--sand-deep);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  display: block;
}

.ll-path-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}

.ll-path-card.path-space::before { background: linear-gradient(90deg, var(--ocean), var(--ocean-light)); }
.ll-path-card.path-shop::before  { background: linear-gradient(90deg, var(--coral), var(--gold)); }

.ll-path-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 80px rgba(45,27,14,0.18);
}

.ll-path-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.ll-path-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.ll-path-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--warm-dark);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

/* Placeholder for Lizzy's own tagline copy */
.ll-path-desc {
  font-size: 0.95rem;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  min-height: 4.5rem;
  /* Lizzy fills this in — layout placeholder */
}

.ll-path-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius-xl);
  transition: all 0.2s;
  text-decoration: none;
}

.path-space .ll-path-cta {
  background: var(--ocean);
  color: var(--white);
}
.path-space .ll-path-cta:hover { background: var(--ocean-light); color: var(--warm-dark); }

.path-shop .ll-path-cta {
  background: var(--coral);
  color: var(--white);
}
.path-shop .ll-path-cta:hover { background: var(--gold); color: var(--warm-dark); }

/* ─── About Lizzy ───────────────────────────────── */

.ll-about {
  background: linear-gradient(135deg, var(--ocean-pale) 0%, var(--sand) 100%);
  padding: 5rem 2rem;
}

.ll-about-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  align-items: center;
}

.ll-about-portrait {
  position: relative;
}

.ll-about-portrait img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--gold);
}

/* Art Nouveau decorative corner */
.ll-about-portrait::after {
  content: '✦';
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  font-size: 2rem;
  color: var(--gold);
  text-shadow: 0 0 12px rgba(200,149,42,0.5);
}

.ll-about-eyebrow {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--ocean);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  display: block;
}

.ll-about-title {
  margin-bottom: 1.25rem;
}

.ll-about-body {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-soft);
  /* Lizzy fills in her bio */
  margin-bottom: 1.5rem;
}

.ll-about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.ll-about-tag {
  background: var(--white);
  border: 1.5px solid var(--sand-deep);
  color: var(--text-soft);
  font-size: 0.8rem;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-xl);
  font-weight: 500;
}

/* ─── Divider ornament ──────────────────────────── */

.ll-divider {
  text-align: center;
  padding: 2rem 0;
  color: var(--gold);
  font-size: 1.5rem;
  letter-spacing: 0.5rem;
  opacity: 0.6;
}

/* ─── Footer ────────────────────────────────────── */

.ll-footer {
  background: var(--warm-dark);
  color: var(--sand-light);
  padding: 3rem 2rem 2rem;
  text-align: center;
}

.ll-footer-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.ll-footer-tagline {
  font-family: var(--font-accent);
  font-style: italic;
  color: rgba(245,230,200,0.7);
  font-size: 1rem;
  margin-bottom: 2rem;
}

.ll-footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  list-style: none;
}

.ll-footer-links a {
  color: var(--sand-deep);
  font-size: 0.88rem;
  transition: color 0.2s;
}

.ll-footer-links a:hover { color: var(--gold-light); }

.ll-footer-socials {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.ll-footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(245,230,200,0.1);
  border: 1px solid rgba(245,230,200,0.2);
  transition: all 0.2s;
}

.ll-footer-socials a:hover {
  background: var(--ocean);
  border-color: var(--ocean);
  transform: translateY(-2px);
}

.ll-footer-socials img { width: 18px; height: 18px; filter: brightness(0) invert(1); }

.ll-footer-copy {
  font-size: 0.8rem;
  color: rgba(245,230,200,0.4);
  border-top: 1px solid rgba(245,230,200,0.1);
  padding-top: 1.5rem;
}

/* ═══════════════════════════════════════════════════
   SHOP PAGE
   ═══════════════════════════════════════════════════ */

/* ─── Shop Hero ─────────────────────────────────── */

.ll-shop-hero {
  background: linear-gradient(135deg, var(--ocean) 0%, #0d6b5e 100%);
  padding: 3.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ll-shop-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.ll-shop-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.ll-shop-hero h1 {
  color: var(--white);
  text-shadow: 0 2px 16px rgba(0,0,0,0.2);
  margin-bottom: 0.75rem;
}

.ll-shop-hero p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

/* ─── Category Grid ─────────────────────────────── */

.ll-shop-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.ll-section-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--warm-dark);
  margin-bottom: 0.4rem;
}

.ll-section-sub {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.ll-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 3rem;
}

.ll-cat-card {
  background: var(--white);
  border: 1.5px solid var(--sand-deep);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.25rem;
  text-align: center;
  text-decoration: none;
  transition: all 0.25s;
  display: block;
  position: relative;
  overflow: hidden;
}

.ll-cat-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ocean), var(--coral));
  transform: scaleX(0);
  transition: transform 0.3s;
}

.ll-cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--ocean-light);
}

.ll-cat-card:hover::after { transform: scaleX(1); }

.ll-cat-icon { font-size: 2.5rem; margin-bottom: 0.75rem; display: block; }
.ll-cat-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--warm-dark);
  margin-bottom: 0.25rem;
}
.ll-cat-count { font-size: 0.78rem; color: var(--text-muted); }

/* ─── Products Grid (Printful dynamic) ──────────── */

.ll-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.ll-product-card {
  background: var(--white);
  border: 1.5px solid var(--sand-deep);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.25s;
  cursor: pointer;
}

.ll-product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.ll-product-img {
  aspect-ratio: 1;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.ll-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ll-product-img .product-emoji {
  font-size: 4rem;
  opacity: 0.5;
}

.ll-product-info { padding: 1.25rem; }

.ll-product-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--warm-dark);
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.ll-product-variants {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

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

.ll-product-price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ocean);
}

.ll-add-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ocean);
  color: var(--white);
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  font-weight: 300;
}

.ll-add-btn:hover { background: var(--coral); transform: scale(1.1); }

/* Loading state */
.ll-loading {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-muted);
}

.ll-loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--sand-deep);
  border-top-color: var(--ocean);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 1rem;
}

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

/* ─── Affiliates Block ──────────────────────────── */

.ll-affiliates {
  background: linear-gradient(135deg, var(--warm-dark) 0%, #3d2510 100%);
  padding: 4rem 2rem;
  margin-top: 1rem;
}

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

.ll-affiliates h2 {
  color: var(--gold-light);
  text-align: center;
  margin-bottom: 0.5rem;
}

.ll-affiliates-sub {
  color: rgba(245,230,200,0.65);
  text-align: center;
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
}

.ll-affiliates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.ll-affiliate-card {
  background: rgba(245,230,200,0.07);
  border: 1px solid rgba(245,230,200,0.15);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  transition: all 0.25s;
  text-decoration: none;
  display: block;
}

.ll-affiliate-card:hover {
  background: rgba(245,230,200,0.12);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.ll-affiliate-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }

.ll-affiliate-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--sand-light);
  margin-bottom: 0.5rem;
}

.ll-affiliate-desc {
  font-size: 0.85rem;
  color: rgba(245,230,200,0.6);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.ll-affiliate-commission {
  display: inline-block;
  background: rgba(200,149,42,0.2);
  border: 1px solid rgba(200,149,42,0.4);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-xl);
  letter-spacing: 0.05em;
}

/* ─── Seasonal Block ────────────────────────────── */

.ll-seasonal {
  background: var(--sand);
  padding: 4rem 2rem;
  border-top: 3px dashed var(--sand-deep);
}

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

.ll-seasonal-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.ll-seasonal-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--coral);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-xl);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ll-seasonal p.note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-style: italic;
}

/* Seasonal categories use same card style but with a festive tint */
.ll-seasonal .ll-cat-card {
  background: rgba(255,255,255,0.8);
}

.ll-seasonal .ll-cat-card::after {
  background: linear-gradient(90deg, var(--coral), #e8b84b);
}

/* ─── Filter tabs ───────────────────────────────── */

.ll-filter-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1.5px solid var(--sand-deep);
}

.ll-filter-tab {
  background: var(--white);
  border: 1.5px solid var(--sand-deep);
  color: var(--text-soft);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.ll-filter-tab:hover,
.ll-filter-tab.active {
  background: var(--ocean);
  border-color: var(--ocean);
  color: var(--white);
}

/* ─── Responsive ────────────────────────────────── */

@media (max-width: 900px) {
  .ll-paths { grid-template-columns: 1fr; margin-top: -2rem; }
  .ll-about-inner { grid-template-columns: 1fr; }
  .ll-about-portrait { max-width: 260px; margin: 0 auto; }
  .ll-shop-hero h1 { font-size: 2rem; }
}

@media (max-width: 600px) {
  .ll-header-inner { height: 60px; }
  .ll-nav { display: none; } /* mobile nav - phase 2 */
  .ll-hero { height: 55vh; }
  .ll-hero-title { font-size: 2.2rem; }
  .ll-affiliates-grid { grid-template-columns: 1fr; }
}

/* ─── Footer — expanded layout ──────────────────── */

.ll-footer {
  background: var(--ocean-dark, #0f5c52);
  color: rgba(255,255,255,0.85);
  padding: 3.5rem 2rem 0;
}

.ll-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr auto;
  gap: 3rem;
  align-items: start;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.ll-footer-logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.ll-footer-tagline {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.3rem;
}

.ll-footer-nav {
  display: flex;
  gap: 3rem;
}

.ll-footer-nav-col ul {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.ll-footer-nav-col ul li a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.ll-footer-nav-col ul li a:hover {
  color: var(--gold);
}

.ll-footer-nav-heading {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light, #e8b84b);
}

.ll-footer-socials {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
}

.ll-footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  transition: background 0.2s;
}

.ll-footer-socials a:hover {
  background: var(--gold);
}

.ll-footer-socials img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.ll-footer-copy {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.2rem 0 1.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
}

.ll-footer-copy a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}

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

.ll-footer-dot {
  opacity: 0.3;
}

/* ─── Mobile nav toggle ──────────────────────────── */

.ll-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--ocean);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  line-height: 1;
}

.ll-nav-cta {
  display: inline-block;
  background: var(--gold);
  color: var(--white) !important;
  font-weight: 600;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-xl);
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.2s;
  white-space: nowrap;
}

.ll-nav-cta:hover {
  background: var(--gold-light, #e8b84b);
}

/* ─── Shop hero with image ───────────────────────── */

.ll-shop-hero {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ocean);
}

.ll-shop-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}

.ll-shop-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(80,30,20,0.78) 0%,
    rgba(140,60,30,0.35) 55%,
    rgba(200,149,42,0.08) 100%
  );
}

.ll-shop-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  padding: 2.5rem 2rem;
  color: var(--white);
}

.ll-shop-hero-inner h1 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  margin: 0 0 0.5rem;
  color: var(--white);
}

.ll-shop-hero-inner p {
  font-size: 1.1rem;
  opacity: 0.85;
  margin: 0;
}

/* ─── Door image in path cards ───────────────────── */

.ll-path-door-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}

.ll-path-door-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.ll-path-card:hover .ll-path-door-img img {
  transform: scale(1.04);
}

.ll-path-content {
  padding: 1.5rem;
}

/* ─── Responsive footer ──────────────────────────── */

@media (max-width: 900px) {
  .ll-footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .ll-footer-nav {
    gap: 2rem;
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
  .ll-nav-toggle { display: block; }
  .ll-nav-wrap {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 2px solid var(--sand-deep);
    padding: 1rem 2rem 1.5rem;
    flex-direction: column;
    gap: 0.5rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    z-index: 100;
  }
  .ll-nav-wrap.open {
    display: flex;
  }
  .ll-nav {
    display: flex !important;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
  }
  .ll-nav a {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--sand-deep);
    display: block;
  }
  .ll-nav-cta {
    margin-top: 0.75rem;
    text-align: center;
  }
  .ll-footer-nav {
    flex-direction: column;
    gap: 1.5rem;
  }
}

/* ─── Font assignments ───────────────────────────── */

/* Big hero title — Playfair Display, bold and elegant */
.ll-hero-title {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* Shop hero h1 — Oleo Script for warmth */
.ll-shop-hero-inner h1 {
  font-family: 'Oleo Script', cursive !important;
}

/* Path card titles — Oleo Script */
.ll-path-title {
  font-family: 'Oleo Script', cursive !important;
  font-size: 1.6rem;
}

/* About + section headings — Oleo Script */
.ll-about-title {
  font-family: 'Oleo Script', cursive !important;
  font-size: 1.8rem;
  font-weight: 400;
}
