/* ===== LINDEN CONVENIENCE PLUS — SHARED STYLES ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  --primary: #A0522D;
  --primary-dark: #6D3A1F;
  --primary-light: #B8693B;
  --accent: #C4843E;
  --accent-light: #E8D0B0;
  --cream: #FAF8F5;
  --charcoal: #2C2C2C;
  --gray: #6B6B6B;
  --light-gray: #E4E0DC;
  --white: #FFFFFF;
  --dark: #333333;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
}

/* ===== NAVIGATION ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--light-gray);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a {
  text-decoration: none;
  color: var(--charcoal);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-links a.active { border-bottom: 2px solid var(--primary); padding-bottom: 2px; }
.nav-cta {
  background: var(--primary) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: 6px !important;
  transition: background 0.2s !important;
  border-bottom: none !important;
}
.nav-cta:hover { background: var(--primary-dark) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--charcoal);
  transition: 0.3s;
}

/* ===== HERO (page banners) ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, transparent 70%);
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -10%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-text { color: var(--white); }
.hero-badge {
  display: inline-block;
  background: rgba(201,168,76,0.2);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--accent-light);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero p {
  font-size: 1.15rem;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* Page banner (shorter hero for subpages) */
.page-banner {
  min-height: 40vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  overflow: hidden;
  padding-top: 72px;
}
.page-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, transparent 70%);
}
.page-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
  text-align: center;
  color: var(--white);
  position: relative;
  z-index: 1;
}
.page-banner h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.page-banner p {
  font-size: 1.15rem;
  opacity: 0.9;
  max-width: 560px;
  margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--accent);
  color: var(--primary-dark);
}
.btn-primary:hover { background: #d4b35a; transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn-dark {
  background: var(--primary);
  color: var(--white);
}
.btn-dark:hover { background: var(--primary-dark); transform: translateY(-1px); }

/* ===== SECTIONS ===== */
section { padding: 100px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.section-header p {
  color: var(--gray);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto;
}
.accent-line {
  width: 50px;
  height: 3px;
  background: var(--accent);
  margin: 0 auto 20px;
  border-radius: 2px;
}

/* ===== HERO CARD (hours) ===== */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 40px;
  width: 100%;
  max-width: 420px;
}
.hero-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 24px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day { font-weight: 500; }
.hours-row .today { color: var(--accent); }

/* ===== CATEGORY CARDS ===== */
.categories-section { background: var(--cream); }
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.cat-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.3s;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}
.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(27,94,32,0.1);
  border-color: var(--accent-light);
}
.cat-icon {
  width: 72px; height: 72px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
}
.cat-card:nth-child(1) .cat-icon { background: linear-gradient(135deg, #A0522D, #B8693B); }
.cat-card:nth-child(2) .cat-icon { background: linear-gradient(135deg, #C4843E, #DFC06A); }
.cat-card:nth-child(3) .cat-icon { background: linear-gradient(135deg, #6D3A1F, #A0522D); }
.cat-card:nth-child(4) .cat-icon { background: linear-gradient(135deg, #B8693B, #43A047); }
.cat-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--charcoal);
}
.cat-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.5;
}

/* ===== PRODUCT CARDS ===== */
.featured-grid, .product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.product-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--light-gray);
  transition: all 0.3s;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.product-img {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}
.product-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 40px;
  background: linear-gradient(transparent, var(--white));
}
.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--primary);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 1;
}
.product-info { padding: 20px 24px 24px; }
.product-info .category {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 6px;
}
.product-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  margin-bottom: 6px;
}
.product-info .desc {
  font-size: 0.88rem;
  color: var(--gray);
  margin-bottom: 16px;
  line-height: 1.5;
}
.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product-footer .tag {
  font-size: 0.78rem;
  background: var(--cream);
  padding: 4px 12px;
  border-radius: 20px;
  color: var(--gray);
  font-weight: 500;
}
.call-for-price {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
}
.call-for-price a {
  color: var(--primary);
  text-decoration: none;
}
.call-for-price a:hover { text-decoration: underline; }

/* ===== ABOUT SECTION ===== */
.about-section { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-visual {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: 20px;
  padding: 60px 40px;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-visual::before {
  content: '';
  position: absolute;
  top: -50%; right: -50%;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.2) 0%, transparent 70%);
}
.about-visual .big-number {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
  position: relative;
}
.about-visual > p {
  font-size: 1.1rem;
  opacity: 0.9;
  position: relative;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
  position: relative;
}
.stat-box {
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}
.stat-box .num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
}
.stat-box .label {
  font-size: 0.82rem;
  opacity: 0.8;
  margin-top: 4px;
}
.about-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  margin-bottom: 20px;
}
.about-content p {
  color: var(--gray);
  font-size: 1rem;
  margin-bottom: 16px;
  line-height: 1.8;
}
.values-list {
  list-style: none;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.values-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--charcoal);
}
.values-list .icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  border: 1px solid var(--light-gray);
}

/* ===== CONTACT SECTION ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-card {
  background: var(--cream);
  border-radius: 14px;
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: all 0.25s;
}
.contact-card:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.contact-card .icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.contact-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.5;
}
.contact-card a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}
.contact-card a:hover { text-decoration: underline; }
.map-container {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--light-gray);
  height: 100%;
  min-height: 380px;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: none;
}

/* ===== TIMELINE ===== */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding: 20px 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--light-gray);
}
.timeline-item {
  position: relative;
  padding: 0 0 48px 80px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: 18px;
  top: 4px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--primary);
  border: 4px solid var(--white);
  box-shadow: 0 0 0 2px var(--primary);
}
.timeline-year {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}
.timeline-item h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.timeline-item p {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ===== LOTTERY ===== */
.lottery-hero {
  background: linear-gradient(135deg, #6D3A1F 0%, #A0522D 50%, #B8693B 100%);
}
.lottery-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.lottery-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--light-gray);
  transition: all 0.3s;
}
.lottery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.lottery-card .emoji {
  font-size: 3rem;
  margin-bottom: 16px;
}
.lottery-card .card-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  display: block;
}
.lottery-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.lottery-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}
.lottery-callout {
  background: linear-gradient(135deg, #6D3A1F, #A0522D);
  border-radius: 20px;
  padding: 48px;
  color: var(--white);
  text-align: center;
  margin-top: 60px;
}
.lottery-callout h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 12px;
}
.lottery-callout p {
  font-size: 1.05rem;
  opacity: 0.9;
  margin-bottom: 24px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== BRAND LIST ===== */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}
.brand-item {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 10px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.2s;
}
.brand-item:hover {
  border-color: var(--accent-light);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transform: translateY(-1px);
}
.brand-logo {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  font-weight: 700;
  color: var(--white);
  overflow: hidden;
  background: var(--cream);
}
.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
  background: var(--white);
}
.brand-details { flex: 1; min-width: 0; }
.brand-item .brand-name {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--charcoal);
  line-height: 1.3;
}
.brand-item .brand-type {
  font-size: 0.78rem;
  color: var(--gray);
  margin-top: 1px;
}
.brand-item .brand-price {
  font-size: 0.72rem;
  margin-top: 4px;
}
.brand-item .brand-price a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.brand-item .brand-price a:hover { text-decoration: underline; }
.subcategory {
  margin-bottom: 40px;
}
.subcategory h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}
/* Brand logo colors for convenience store items */
.bg-produce { background: linear-gradient(135deg, #A0522D, #B8693B); }
.bg-dairy { background: linear-gradient(135deg, #87CEEB, #4A90E2); }
.bg-beverages { background: linear-gradient(135deg, #C4843E, #b8942e); }
.bg-snacks { background: linear-gradient(135deg, #D4752E, #E8945A); }
.bg-ready-made { background: linear-gradient(135deg, #6D3A1F, #A0522D); }
.bg-frozen { background: linear-gradient(135deg, #4A90D9, #2E6EB5); }
.bg-pantry { background: linear-gradient(135deg, #8B6914, #A67C00); }
.bg-health { background: linear-gradient(135deg, #43A047, #5CB85C); }
.bg-beauty { background: linear-gradient(135deg, #E05199, #DC3545); }
.bg-cleaning { background: linear-gradient(135deg, #B8693B, #43A047); }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 60px 24px;
  text-align: center;
  color: var(--white);
}
.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 12px;
}
.cta-banner p {
  font-size: 1.05rem;
  opacity: 0.9;
  margin-bottom: 28px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== FOOTER ===== */
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 60px 24px 30px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .nav-logo { font-size: 1.3rem; }
.footer-brand p {
  margin-top: 8px;
  font-size: 0.88rem;
  max-width: 280px;
  line-height: 1.6;
}
.footer-links h4 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.footer-links ul { list-style: none; }
.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.9rem;
  display: block;
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,0.7); }
.age-notice {
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--accent);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 500;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero p { margin: 0 auto 36px; }
  .hero-buttons { justify-content: center; }
  .hero-visual { display: none; }
  .hero h1 { font-size: 2.6rem; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .page-banner h1 { font-size: 2.2rem; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0; right: 0;
    background: var(--white);
    padding: 24px;
    gap: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  }
  section { padding: 60px 20px; }
  .section-header h2 { font-size: 2rem; }
}
