/* ==========================================================================
   SREE MEENAKSHI HANDICRAFTS & KRISHIKA STORE
   Ultra-Luxury E-Commerce Design System & Responsive Styles
   ========================================================================== */

/* ===== GOOGLE FONTS IMPORT ===== */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,600&display=swap');

/* ===== CSS VARIABLES / DESIGN TOKENS ===== */
:root {
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Luxurious Color Palette */
  --bg-primary: #FAF6F0;
  --bg-secondary: #F4EFE6;
  --bg-card: #FFFFFF;
  --bg-accent: #FDF9F4;
  --bg-dark: #1E1713;

  --color-terracotta: #C47A5A;
  --color-terracotta-dark: #9A5A3C;
  --color-terracotta-light: #F4EAE4;
  --color-gold: #D4AF37;
  --color-gold-dark: #AA820A;
  --color-sage: #5A826F;
  --color-sage-light: #EBF3EE;
  --color-blush: #E8C9B8;
  
  --text-main: #2D221B;
  --text-muted: #6B5547;
  --text-light: #9B8272;
  --text-white: #FFFFFF;

  --border-subtle: rgba(196, 122, 90, 0.16);
  --border-focus: #C47A5A;
  --border-divider: #EFE7DE;

  --shadow-sm: 0 4px 14px rgba(45, 34, 27, 0.05);
  --shadow-md: 0 10px 30px rgba(45, 34, 27, 0.08);
  --shadow-lg: 0 20px 50px rgba(45, 34, 27, 0.12);
  --shadow-xl: 0 28px 70px rgba(45, 34, 27, 0.18);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  outline: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
  position: relative;
}

/* ===== TYPOGRAPHY & HEADERS ===== */
.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem auto;
}

.label-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(196, 122, 90, 0.10);
  color: var(--color-terracotta);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(196, 122, 90, 0.22);
  margin-bottom: 0.85rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.25;
  margin-bottom: 0.85rem;
}

.section-title em {
  font-style: italic;
  color: var(--color-terracotta);
  font-weight: 400;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.85rem;
  border-radius: var(--radius-full);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: var(--transition-normal);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-terracotta), var(--color-terracotta-dark));
  color: #FFF;
  box-shadow: 0 6px 20px rgba(196, 122, 90, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(196, 122, 90, 0.45);
  background: linear-gradient(135deg, #CF8565, #9A5A3C);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: #FFF;
  border-color: var(--color-terracotta);
  color: var(--color-terracotta);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-full {
  width: 100%;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
}

/* ===== TOP ANNOUNCEMENT BAR ===== */
.top-bar {
  background: var(--text-main);
  color: #FAF6F0;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.5rem 1rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.top-bar-highlight {
  color: var(--color-gold);
  font-weight: 700;
}

/* ===== NAVIGATION (GLASSMORPHISM) ===== */
.nav {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition-normal);
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 1.5rem;
}

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

.nav-logo-img {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  border: 2px solid var(--color-gold);
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.25);
}

.nav-brand-wrap {
  display: flex;
  flex-direction: column;
}

.nav-brand {
  font-family: var(--font-serif);
  font-size: 1.28rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.nav-sub {
  font-size: 0.72rem;
  color: var(--color-terracotta);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 0.3rem 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--color-terracotta);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-terracotta);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.nav-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  position: relative;
  transition: var(--transition-fast);
}

.nav-icon-btn:hover {
  background: var(--color-terracotta-light);
  border-color: var(--color-terracotta);
  color: var(--color-terracotta);
  transform: translateY(-1px);
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--color-terracotta);
  color: #FFF;
  font-size: 0.7rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(196, 122, 90, 0.4);
}

.nav-admin-link {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
}

.nav-admin-link:hover {
  background: var(--text-main);
  color: #FFF;
  border-color: var(--text-main);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  padding: 4px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text-main);
  transition: var(--transition-fast);
  border-radius: 2px;
}

/* Mobile Navigation Menu */
.mobile-nav-drawer {
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  background: #FFF;
  border-bottom: 1px solid var(--border-divider);
  padding: 1.5rem 2rem;
  display: none;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-lg);
  z-index: 99;
}

.mobile-nav-drawer.open {
  display: flex;
}

.mobile-nav-link {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-main);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-divider);
}

/* ===== HERO SECTION ===== */
.hero {
  padding: 3.5rem 0 5rem 0;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(196, 122, 90, 0.12);
  color: var(--color-terracotta);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.45rem 1.2rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(196, 122, 90, 0.25);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--text-main);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.hero-title em {
  font-style: italic;
  color: var(--color-terracotta);
  font-weight: 400;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 2.2rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.2rem 1.8rem;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
}

.hstat {
  display: flex;
  flex-direction: column;
}

.hstat-n {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-terracotta);
  line-height: 1;
}

.hstat-l {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 0.25rem;
}

.hstat-div {
  width: 1px;
  height: 32px;
  background: var(--border-divider);
}

.hero-visual {
  position: relative;
}

.hero-img-main-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 6px solid #FFF;
}

.hero-img-main-wrap img {
  height: 480px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-img-main-wrap:hover img {
  transform: scale(1.03);
}

.hero-badge-float {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.85rem 1.35rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid var(--border-subtle);
}

.hero-badge-icon {
  font-size: 1.4rem;
  color: var(--color-gold);
}

.hero-badge-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
}

.hero-badge-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.hero-floating-card {
  position: absolute;
  top: -24px;
  right: -24px;
  width: 170px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid #FFF;
  animation: floatSlow 4s ease-in-out infinite alternate;
}

.hero-floating-card img {
  height: 170px;
  width: 100%;
}

@keyframes floatSlow {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-12px); }
}

/* ===== MARQUEE TICKER ===== */
.marquee-wrap {
  background: linear-gradient(90deg, #2B1F17, #3D2D23, #2B1F17);
  color: #FAF6F0;
  padding: 0.9rem 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.marquee-track {
  display: inline-flex;
  animation: marqueeScroll 24s linear infinite;
  gap: 2rem;
  align-items: center;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.msep {
  color: var(--color-gold);
  font-size: 0.9rem;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== VALUE PROPOSITIONS STRIP ===== */
.value-strip {
  padding: 3rem 0;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border-divider);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.value-card {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.value-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--color-terracotta-light);
  color: var(--color-terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.value-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.2rem;
}

.value-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== DYNAMIC CATALOG & SHOP SECTION ===== */
.catalog-section {
  background: var(--bg-primary);
  padding: 5.5rem 0;
}

.catalog-controls {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.filter-pills-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.filter-pill {
  padding: 0.6rem 1.35rem;
  border-radius: var(--radius-full);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition-fast);
  cursor: pointer;
}

.filter-pill:hover {
  border-color: var(--color-terracotta);
  color: var(--color-terracotta);
}

.filter-pill.active {
  background: var(--color-terracotta);
  color: #FFF;
  border-color: var(--color-terracotta);
  box-shadow: 0 4px 14px rgba(196, 122, 90, 0.35);
}

.catalog-search-sort-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.search-box-wrap {
  position: relative;
  flex: 1;
  max-width: 420px;
}

.search-box-wrap input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.8rem;
  border-radius: var(--radius-full);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  font-size: 0.88rem;
  transition: var(--transition-fast);
}

.search-box-wrap input:focus {
  border-color: var(--color-terracotta);
  box-shadow: 0 0 0 3px rgba(196, 122, 90, 0.15);
}

.search-icon {
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
}

.sort-box-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.sort-box-wrap select {
  padding: 0.7rem 1.2rem;
  border-radius: var(--radius-full);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text-main);
  cursor: pointer;
}

/* ===== PRODUCT GRID & CARDS ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.prod-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition-normal);
  position: relative;
}

.prod-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(196, 122, 90, 0.35);
}

.prod-img-wrap {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: #F2ECE4;
}

.prod-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.prod-card:hover .prod-img-wrap img {
  transform: scale(1.06);
}

.prod-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-terracotta-dark);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid rgba(196, 122, 90, 0.2);
}

.prod-discount-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--color-sage);
  color: #FFF;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 6px rgba(90, 130, 111, 0.3);
}

.prod-quick-view-btn {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  color: var(--text-main);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  transition: var(--transition-fast);
  white-space: nowrap;
}

.prod-card:hover .prod-quick-view-btn {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.prod-quick-view-btn:hover {
  background: var(--color-terracotta);
  color: #FFF;
}

.prod-info {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.prod-category {
  font-size: 0.75rem;
  color: var(--color-terracotta);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.prod-title {
  font-family: var(--font-serif);
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.prod-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.2rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.prod-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-divider);
}

.price-wrap {
  display: flex;
  flex-direction: column;
}

.prod-price {
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--text-main);
}

.prod-original-price {
  font-size: 0.8rem;
  color: var(--text-light);
  text-decoration: line-through;
}

.prod-btn-group {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-add-cart {
  background: var(--color-terracotta-light);
  color: var(--color-terracotta);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.55rem 1rem;
  border-radius: var(--radius-full);
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.btn-add-cart:hover {
  background: var(--color-terracotta);
  color: #FFF;
}

.btn-buy-instant {
  background: linear-gradient(135deg, var(--color-terracotta), var(--color-terracotta-dark));
  color: #FFF;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.55rem 1rem;
  border-radius: var(--radius-full);
  transition: var(--transition-fast);
}

.btn-buy-instant:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.no-products-msg {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 1rem;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px dashed var(--border-subtle);
}

/* ===== PRODUCT CARD — META ROW (Category + Stock Badge) ===== */
.prod-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.4rem;
}

/* ===== PRODUCT CARD — STOCK BADGES ===== */
.stock-badge {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.22rem 0.65rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.stock-in {
  background: #E8F5E9;
  color: #2E7D32;
  border: 1px solid #C8E6C9;
}

.stock-low {
  background: #FFF3E0;
  color: #E65100;
  border: 1px solid #FFE0B2;
  animation: pulse-badge 1.8s ease-in-out infinite;
}

.stock-out {
  background: #FDECEA;
  color: #C62828;
  border: 1px solid #FFCDD2;
}

@keyframes pulse-badge {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* ===== PRODUCT CARD — STAR RATINGS ===== */
.prod-rating-row {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.65rem;
}

.stars-wrap {
  display: flex;
  align-items: center;
  gap: 1px;
}

.star {
  font-size: 0.82rem;
  line-height: 1;
}

.star-full {
  color: #D4AF37;
}

.star-half {
  color: #D4AF37;
  opacity: 0.6;
}

.star-empty {
  color: #DDD3CA;
}

.rating-num {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-main);
}

.rating-label {
  font-size: 0.72rem;
  color: var(--text-light);
}

/* ===== PRODUCT CARD — SAVE LABEL ===== */
.prod-save-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color-sage);
  margin-top: 0.1rem;
}

/* ===== HERITAGE / ABOUT SECTION ===== */
.about-section {
  background: var(--bg-secondary);
  padding: 6rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 4.5rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid #FFF;
}

.about-img-main img {
  height: 440px;
  width: 100%;
}

.about-img-offset {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 220px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 5px solid #FFF;
}

.about-img-offset img {
  height: 220px;
}

.about-badge-years {
  position: absolute;
  top: 20px;
  left: -20px;
  background: var(--color-terracotta);
  color: #FFF;
  padding: 1.2rem 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.ab-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.ab-lbl {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.about-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  line-height: 1.2;
  margin-bottom: 1.4rem;
}

.about-content p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.about-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

.af-item {
  display: flex;
  gap: 0.85rem;
}

.af-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--color-terracotta-light);
  color: var(--color-terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.af-text strong {
  display: block;
  font-size: 0.92rem;
  color: var(--text-main);
  margin-bottom: 0.15rem;
}

.af-text span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== GALLERY & LIGHTBOX ===== */
.gallery-section {
  padding: 5.5rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 1.25rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item.g-tall {
  grid-row: span 2;
}

.gallery-item.g-wide {
  grid-column: span 2;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 23, 19, 0.85), transparent 70%);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.4rem;
  color: #FFF;
  transition: var(--transition-fast);
}

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

.gallery-overlay h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
}

.gallery-overlay p {
  font-size: 0.78rem;
  opacity: 0.85;
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-fast);
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.lightbox.active .lightbox-img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  color: #FFF;
  font-size: 2rem;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.15);
}

/* ===== REVIEWS & TESTIMONIALS ===== */
.testimonials-section {
  background: var(--bg-secondary);
  padding: 5.5rem 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--bg-card);
  padding: 2.2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.stars {
  color: var(--color-gold);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.testimonial-quote {
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 1.5rem;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--color-terracotta-light);
  color: var(--color-terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.author-info h5 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-main);
}

.author-info span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ===== FAQ SECTION ===== */
.faq-section {
  padding: 5.5rem 0;
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-question {
  padding: 1.35rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1.02rem;
  cursor: pointer;
}

.faq-question:hover {
  color: var(--color-terracotta);
}

.faq-toggle-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-card.open .faq-toggle-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.6rem 1.35rem 1.6rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  display: none;
}

.faq-card.open .faq-answer {
  display: block;
}

/* ===== CONTACT & CUSTOM ORDERS ===== */
.contact-section {
  padding: 5.5rem 0;
  background: var(--bg-secondary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-card-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.4rem 1.6rem;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.contact-card-item:hover {
  transform: translateY(-2px);
  border-color: var(--color-terracotta);
}

.cci-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.cci-green { background: #E8F5E9; color: #2E7D32; }
.cci-rose { background: #FCE4EC; color: #C2185B; }
.cci-sage { background: #E8F0EC; color: var(--color-sage); }

.cci-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
}

.cci-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.contact-form-box {
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  background: var(--bg-primary);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-terracotta);
  background: #FFF;
  box-shadow: 0 0 0 3px rgba(196, 122, 90, 0.12);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ===== CART DRAWER ===== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 23, 19, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 440px;
  background: #FFF;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-header {
  padding: 1.4rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-divider);
  background: var(--bg-primary);
}

.cart-header h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cart-close-btn {
  font-size: 1.4rem;
  color: var(--text-muted);
  padding: 0.3rem;
  cursor: pointer;
  line-height: 1;
}

.cart-free-shipping-bar {
  background: var(--color-sage-light);
  padding: 0.75rem 1.6rem;
  font-size: 0.78rem;
  color: var(--color-sage);
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.fs-progress-bg {
  height: 6px;
  background: rgba(90, 130, 111, 0.2);
  border-radius: 10px;
  overflow: hidden;
}

.fs-progress-fill {
  height: 100%;
  background: var(--color-sage);
  width: 0%;
  transition: width 0.3s ease;
}

.cart-items-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cart-item {
  display: flex;
  gap: 1rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-divider);
  position: relative;
}

.cart-item-img {
  width: 76px;
  height: 76px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--border-subtle);
}

.cart-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cart-item-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.3;
}

.cart-item-price {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-terracotta);
}

.cart-qty-ctrl {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  width: max-content;
  overflow: hidden;
}

.qty-btn {
  padding: 0.2rem 0.65rem;
  font-size: 0.9rem;
  font-weight: 700;
  background: var(--bg-primary);
  color: var(--text-main);
  transition: background 0.2s ease;
}

.qty-btn:hover {
  background: var(--color-terracotta-light);
}

.qty-num {
  padding: 0.2rem 0.65rem;
  font-size: 0.85rem;
  font-weight: 600;
}

.cart-item-remove {
  color: var(--text-light);
  font-size: 0.8rem;
  cursor: pointer;
  transition: color 0.2s ease;
}

.cart-item-remove:hover {
  color: #D32F2F;
}

.cart-empty-state {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-muted);
}

.cart-empty-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.cart-footer {
  padding: 1.4rem 1.6rem;
  border-top: 1px solid var(--border-divider);
  background: var(--bg-primary);
}

.coupon-box {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.coupon-box input {
  flex: 1;
  padding: 0.55rem 0.85rem;
  font-size: 0.82rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  text-transform: uppercase;
}

.coupon-btn {
  padding: 0.55rem 1rem;
  background: var(--text-main);
  color: #FFF;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
}

.cart-summary-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.cart-summary-total {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  margin-top: 0.6rem;
  padding-top: 0.6rem;
  border-top: 1px dashed var(--border-divider);
}

/* ===== 2-STEP CHECKOUT MODAL ===== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(30, 23, 19, 0.7);
  backdrop-filter: blur(6px);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-fast);
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.checkout-modal-card {
  background: #FFF;
  border-radius: var(--radius-xl);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  position: relative;
  animation: modalScale 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalScale {
  0% { transform: scale(0.95); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.modal-header {
  padding: 1.4rem 2rem;
  border-bottom: 1px solid var(--border-divider);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-primary);
}

.modal-header h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
}

.modal-close-btn {
  font-size: 1.4rem;
  cursor: pointer;
}

.modal-body {
  padding: 2rem;
}

.checkout-steps-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.step-indicator-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-light);
}

.step-indicator-item.active {
  color: var(--color-terracotta);
}

.step-num {
  width: 26px;
  height: 26px;
  border-radius: var(--radius-full);
  background: var(--border-divider);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
}

.step-indicator-item.active .step-num {
  background: var(--color-terracotta);
  color: #FFF;
}

.step-connector {
  height: 2px;
  width: 40px;
  background: var(--border-divider);
}

.payment-method-card {
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.3rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.payment-method-card:hover {
  border-color: var(--color-terracotta);
  background: var(--color-terracotta-light);
}

.payment-method-card.selected {
  border-color: var(--color-terracotta);
  background: var(--color-terracotta-light);
  box-shadow: 0 2px 10px rgba(196, 122, 90, 0.15);
}

.pm-radio {
  accent-color: var(--color-terracotta);
  width: 18px;
  height: 18px;
}

.pm-icon {
  font-size: 1.4rem;
}

.pm-details h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
}

.pm-details p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== QUICK VIEW MODAL ===== */
.quick-view-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 780px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #FFF;
}

.qv-img-side {
  height: 100%;
  min-height: 380px;
  background: #F4EFE6;
}

.qv-img-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.qv-info-side {
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* ===== INVOICE & ORDER SUCCESS MODAL ===== */
.invoice-card {
  background: #FFF;
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  max-width: 580px;
  width: 100%;
  box-shadow: var(--shadow-xl);
}

.invoice-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px dashed var(--border-divider);
}

.success-icon-badge {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  background: #E8F5E9;
  color: #2E7D32;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
}

.invoice-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.88rem;
}

.invoice-table th, .invoice-table td {
  padding: 0.6rem 0.4rem;
  text-align: left;
}

.invoice-table th {
  border-bottom: 1.5px solid var(--text-main);
  font-weight: 700;
}

.invoice-table td {
  border-bottom: 1px solid var(--border-divider);
}

/* ===== FLOATING WHATSAPP & INSTAGRAM WIDGETS ===== */
.wa-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25D366;
  color: #FFF;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.4rem;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  font-size: 0.88rem;
  font-weight: 700;
  z-index: 99;
  transition: var(--transition-normal);
  animation: pulseFab 2.8s infinite;
  text-decoration: none;
}

.wa-fab:hover {
  transform: scale(1.06);
  background: #20BA5A;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6);
}

.wa-fab svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  flex-shrink: 0;
}

/* Instagram Floating Action Button */
.ig-fab {
  position: fixed;
  bottom: 90px;
  right: 24px;
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #FFF;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 1.2rem;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 24px rgba(220, 39, 67, 0.45);
  font-size: 0.82rem;
  font-weight: 700;
  z-index: 99;
  transition: var(--transition-normal);
  text-decoration: none;
  animation: pulseIgFab 3.2s infinite 1.4s;
}

.ig-fab:hover {
  transform: scale(1.06);
  box-shadow: 0 12px 32px rgba(188, 24, 136, 0.6);
}

.ig-fab svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

@keyframes pulseFab {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes pulseIgFab {
  0% { box-shadow: 0 0 0 0 rgba(188, 24, 136, 0.55); }
  70% { box-shadow: 0 0 0 12px rgba(188, 24, 136, 0); }
  100% { box-shadow: 0 0 0 0 rgba(188, 24, 136, 0); }
}

/* ===== TOAST NOTIFICATION CONTAINER ===== */
.toast-container {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  pointer-events: none;
}

.toast {
  background: var(--text-main);
  color: #FFF;
  padding: 0.85rem 1.4rem;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-lg);
  pointer-events: auto;
  animation: toastIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border-left: 4px solid var(--color-terracotta);
}

.toast.toast-success { border-left-color: #2E7D32; }
.toast.toast-error { border-left-color: #D32F2F; }

@keyframes toastIn {
  0% { transform: translateY(20px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-dark);
  color: #D8CCC4;
  padding: 5rem 0 2rem 0;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3.5rem;
  margin-bottom: 3.5rem;
}

.footer-brand p {
  color: #A99B91;
  font-size: 0.86rem;
  line-height: 1.6;
  margin-top: 1rem;
}

.footer-col h4 {
  font-family: var(--font-serif);
  color: #FFF;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-col a {
  color: #A99B91;
  transition: color 0.2s ease;
}

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

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #8C7D73;
}

/* ===== COMPREHENSIVE MOBILE & RESPONSIVE DESIGN SYSTEM ===== */

/* Tablets & Small Laptops (max-width: 1024px) */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-floating-card {
    display: none;
  }
  .about-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

/* Mobile Devices & Small Tablets (max-width: 768px) */
@media (max-width: 768px) {
  /* Top Announcement Bar */
  .top-bar {
    font-size: 0.74rem;
    padding: 0.45rem 0.85rem;
    flex-direction: column;
    gap: 0.2rem;
    text-align: center;
  }
  .top-bar-highlight {
    display: inline-block;
  }

  /* Navigation Bar */
  .nav-inner {
    padding: 0.6rem 0;
  }
  .nav-logo-img {
    width: 38px;
    height: 38px;
  }
  .nav-brand {
    font-size: 1.05rem;
  }
  .nav-sub {
    font-size: 0.68rem;
  }
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }

  /* Hero Section */
  .hero {
    padding: 1.8rem 0 3rem 0;
    gap: 2rem;
  }
  .hero-pill {
    font-size: 0.7rem;
    padding: 0.35rem 0.9rem;
    margin-bottom: 1rem;
  }
  .hero-title {
    font-size: 2.25rem;
    line-height: 1.15;
    margin-bottom: 1rem;
  }
  .hero-sub {
    font-size: 0.94rem;
    margin-bottom: 1.5rem;
    max-width: 100%;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 0.85rem 1.4rem;
  }
  .hero-stats {
    width: 100%;
    justify-content: space-around;
    padding: 1rem 0.5rem;
    margin-top: 1.5rem;
  }
  .hstat-n {
    font-size: 1.35rem;
  }
  .hstat-l {
    font-size: 0.72rem;
  }
  .hero-img-main-wrap {
    height: 320px;
    border-radius: var(--radius-lg);
  }
  .hero-badge-float {
    bottom: 14px;
    left: 14px;
    right: 14px;
    padding: 0.6rem 0.9rem;
  }
  .hero-badge-title {
    font-size: 0.82rem;
  }
  .hero-badge-sub {
    font-size: 0.7rem;
  }

  /* Section Headers */
  .section-head {
    margin-bottom: 2rem;
  }
  .section-title {
    font-size: 1.95rem;
  }
  .section-desc {
    font-size: 0.88rem;
  }
  .about-section, .testimonials-section, .faq-section, .contact-section, .catalog-section, .gallery-section {
    padding: 3.5rem 0;
  }

  /* Category Filter Pills (Swipeable Horizontal Scroll on Mobile) */
  .filter-pills-wrap {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.6rem;
    scrollbar-width: none;
    margin-bottom: 1rem;
    gap: 0.5rem;
  }
  .filter-pills-wrap::-webkit-scrollbar {
    display: none;
  }
  .filter-pill {
    white-space: nowrap;
    flex-shrink: 0;
    padding: 0.5rem 1.1rem;
    font-size: 0.8rem;
  }

  /* Search & Sort Controls */
  .catalog-search-sort-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
  .search-box-wrap {
    max-width: 100%;
    width: 100%;
  }
  .sort-box-wrap {
    width: 100%;
    justify-content: space-between;
  }
  .sort-box-wrap select {
    flex: 1;
    padding: 0.65rem 1rem;
  }

  /* Product Cards Grid on Mobile (Sleek 2-Column Responsive Layout) */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }
  .prod-card {
    border-radius: var(--radius-md);
  }
  .prod-img-wrap {
    height: 175px;
  }
  .prod-tag {
    top: 8px;
    left: 8px;
    font-size: 0.6rem;
    padding: 0.2rem 0.5rem;
  }
  .prod-discount-badge {
    top: 8px;
    right: 8px;
    font-size: 0.6rem;
    padding: 0.2rem 0.45rem;
  }
  .prod-quick-view-btn {
    display: none; /* Quick view button hidden on touch; tap card works */
  }
  .prod-info {
    padding: 0.75rem;
  }
  .prod-meta-row {
    margin-bottom: 0.25rem;
  }
  .prod-category {
    font-size: 0.65rem;
  }
  .stock-badge {
    font-size: 0.58rem;
    padding: 0.15rem 0.45rem;
  }
  .prod-title {
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
    line-height: 1.25;
  }
  .prod-rating-row {
    gap: 0.25rem;
    margin-bottom: 0.4rem;
  }
  .star {
    font-size: 0.72rem;
  }
  .rating-num {
    font-size: 0.72rem;
  }
  .rating-label {
    display: none; /* Hide label to keep clean on mobile */
  }
  .prod-desc {
    display: none; /* Clean e-commerce card look on mobile */
  }
  .prod-footer {
    padding-top: 0.6rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.55rem;
  }
  .price-wrap {
    flex-direction: row;
    align-items: baseline;
    gap: 0.4rem;
  }
  .prod-price {
    font-size: 1.05rem;
  }
  .prod-original-price {
    font-size: 0.75rem;
  }
  .prod-save-label {
    font-size: 0.65rem;
    margin-left: auto;
  }
  .prod-btn-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.35rem;
    width: 100%;
  }
  .btn-add-cart, .btn-buy-instant {
    padding: 0.48rem 0.4rem;
    font-size: 0.75rem;
    justify-content: center;
    text-align: center;
  }

  /* Values Strip */
  .value-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
  .value-card {
    padding: 1.1rem;
  }

  /* About / Heritage Visual */
  .about-img-main {
    height: 280px;
  }
  .about-img-offset {
    display: none;
  }
  .about-badge-years {
    bottom: 12px;
    right: 12px;
    padding: 0.8rem 1rem;
  }
  .about-features-list {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .testimonial-card {
    padding: 1.5rem;
  }

  /* Gallery Grid */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .gallery-item.g-wide, .gallery-item.g-tall {
    grid-column: span 1;
    grid-row: span 1;
    height: 180px;
  }
  .gallery-item {
    height: 180px;
  }

  /* FAQ Section */
  .faq-question {
    padding: 1rem 1.2rem;
    font-size: 0.92rem;
  }
  .faq-answer {
    padding: 0 1.2rem 1rem 1.2rem;
    font-size: 0.85rem;
  }

  /* Contact & Form */
  .contact-form-box {
    padding: 1.5rem 1.2rem;
    border-radius: var(--radius-lg);
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* Footer */
  .footer {
    padding: 3.5rem 0 1.5rem 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  /* Cart Drawer — Full Width on Mobile */
  .cart-drawer {
    max-width: 100vw;
    width: 100vw;
  }
  .cart-header {
    padding: 1.1rem 1.2rem;
  }
  .cart-items-body {
    padding: 1rem 1.2rem;
  }
  .cart-footer {
    padding: 1.1rem 1.2rem;
  }

  /* 2-Step Checkout Modal — Mobile Bottom Sheet Experience */
  .modal-backdrop {
    padding: 0;
    align-items: flex-end;
  }
  .checkout-modal-card {
    border-radius: 20px 20px 0 0;
    max-height: 92vh;
    width: 100vw;
    max-width: 100vw;
  }
  .modal-header {
    padding: 1.1rem 1.3rem;
  }
  .modal-body {
    padding: 1.2rem;
  }
  .payment-method-card {
    padding: 0.9rem;
    gap: 0.75rem;
  }
  .pm-icon {
    font-size: 1.3rem;
  }
  .pm-details h4 {
    font-size: 0.9rem;
  }
  .pm-details p {
    font-size: 0.78rem;
  }

  /* Quick View Modal on Mobile */
  .quick-view-card {
    grid-template-columns: 1fr;
    max-height: 90vh;
    overflow-y: auto;
  }
  .qv-img-side {
    height: 220px;
  }
  .qv-info-side {
    padding: 1.3rem;
  }

  /* Floating Action Buttons (WhatsApp & Instagram) — Mobile Friendly */
  .wa-fab {
    bottom: 18px;
    right: 16px;
    padding: 0.7rem 1.1rem;
    font-size: 0.8rem;
    gap: 0.45rem;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 999;
  }
  .wa-fab svg {
    width: 20px;
    height: 20px;
  }
  .ig-fab {
    bottom: 70px;
    right: 16px;
    padding: 0.55rem 0.95rem;
    font-size: 0.75rem;
    gap: 0.4rem;
    box-shadow: 0 4px 16px rgba(220, 39, 67, 0.4);
    z-index: 999;
  }
  .ig-fab svg {
    width: 16px;
    height: 16px;
  }

  /* Toast Notifications */
  .toast-container {
    left: 16px;
    right: 16px;
    bottom: 85px;
  }
  .toast {
    font-size: 0.82rem;
    padding: 0.75rem 1.1rem;
  }
}

/* Extra Small Phones (max-width: 380px) */
@media (max-width: 380px) {
  .products-grid {
    grid-template-columns: 1fr; /* Clean single column for very narrow phones */
  }
  .prod-img-wrap {
    height: 220px;
  }
  .hero-title {
    font-size: 2rem;
  }
}

/* Prevent iOS Auto-Zoom on Form Inputs */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  select, textarea, input {
    font-size: 16px;
  }
}



/* Permanently block any Netlify preview badges / drawers / branding */
[id*="netlify"],
[class*="netlify"],
[data-netlify-drawer],
[data-testid*="feedback"],
[data-testid*="drawer"],
iframe[src*="netlify"] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  height: 0 !important;
  width: 0 !important;
  z-index: -9999 !important;
}


/* Absolute suppression of any Netlify badge / drawer */
iframe[src*="netlify"],
netlify-drawer,
[data-netlify-drawer],
[id*="netlify"],
[class*="netlify"],
a[href*="netlify.com"],
div[class*="feedback-badge"],
div[id*="feedback-badge"] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transform: scale(0) !important;
  width: 0 !important;
  height: 0 !important;
  position: absolute !important;
  top: -99999px !important;
  left: -99999px !important;
}


/* Absolute suppression of any Netlify badge / drawer */
iframe[src*="netlify"],
netlify-drawer,
[data-netlify-drawer],
[id*="netlify"],
[class*="netlify"],
a[href*="netlify.com"],
div[class*="feedback-badge"],
div[id*="feedback-badge"] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transform: scale(0) !important;
  width: 0 !important;
  height: 0 !important;
  position: absolute !important;
  top: -99999px !important;
  left: -99999px !important;
}


/* ==========================================================================
   📱 ANDROID & MOBILE PERFORMANCE & INSTANT TOUCH OPTIMIZATIONS
   ========================================================================== */

/* 1. Global Touch Performance & Kill 300ms Tap Delay */
html, body {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  touch-action: manipulation;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* 2. Instant Responsive Buttons & Touch Targets */
button,
a,
input,
select,
.filter-pill,
.product-card-btn,
.nav-icon-btn,
.wa-fab,
.ig-fab,
.qty-btn,
.cart-checkout-btn,
.cart-close-btn,
.nav-toggle-btn,
.hero-btn,
.modal-btn {
  touch-action: manipulation !important;
  -webkit-tap-highlight-color: transparent !important;
  user-select: none !important;
  -webkit-user-select: none !important;
  cursor: pointer;
}

/* 3. Instant Micro-Haptic Visual Feedback on Touch (Android Active State) */
button:active,
a.hero-btn:active,
.filter-pill:active,
.product-card-btn:active,
.qty-btn:active,
.nav-icon-btn:active,
.wa-fab:active,
.ig-fab:active,
.cart-checkout-btn:active {
  transform: scale(0.95) !important;
  transition: transform 0.08s ease !important;
}

/* 4. Optimized Minimum Tap Target Size for Mobile Human Interface (48px) */
@media (max-width: 768px) {
  .nav-icon-btn {
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .filter-pill {
    padding: 0.65rem 1.1rem;
    font-size: 0.92rem;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
  }

  .product-card-btn {
    min-height: 44px;
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
  }

  .qty-btn {
    min-width: 38px;
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
  }

  .cart-checkout-btn {
    min-height: 52px;
    font-size: 1.05rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Smooth GPU-Accelerated Scrolling on Android */
  .cart-drawer-body,
  .mobile-nav-drawer,
  .products-grid,
  .filter-pills-wrap {
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: contain;
  }

  /* Hardware Acceleration for Floating Action Buttons */
  .wa-fab,
  .ig-fab,
  .site-header {
    transform: translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
  }

  /* Filter pills horizontal scroll row on mobile */
  .filter-pills-wrap {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    gap: 0.5rem;
    scrollbar-width: none; /* Firefox */
  }
  .filter-pills-wrap::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Android */
  }
  .filter-pill {
    flex-shrink: 0;
  }
}


/* Compact Heritage Pillars */
.heritage-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.2rem 0;
}
@media (max-width: 600px) {
  .heritage-pillars {
    grid-template-columns: 1fr;
  }
}
.pillar-card {
  background: rgba(244, 237, 230, 0.6);
  padding: 1rem;
  border-radius: 10px;
  border: 1px solid rgba(196, 122, 90, 0.15);
}
.pillar-card h4 {
  font-size: 0.95rem;
  color: var(--color-espresso, #2D2D2D);
  margin: 0.3rem 0;
  font-weight: 700;
}
.pillar-card p {
  font-size: 0.82rem;
  color: #6C757D;
  margin: 0;
  line-height: 1.4;
}
