@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  /* NordEdge Mart — Nordic minimalism / American industrial precision palette */
  --primary: #2D3436;        /* Deep Slate */
  --primary-dark: #181f21;   /* Forged charcoal */
  --gold: #74B9FF;           /* Frost Blue accent (ratings/highlights) */
  --gold-dark: #0062A0;
  --sage: #74B9FF;           /* Frost Blue */
  --sage-dark: #4A9FE8;
  --sage-btn: #0062A0;       /* Action blue (CTA) */
  --sage-btn-text: #FFFFFF;
  --secondary: #1A1C1C;
  --navy: #1A1C1C;
  --navy-deep: #181F21;
  --dark: #121517;
  --white: #FFFFFF;
  --bg-cream: #F9F9F9;
  --bg-light: #F3F3F3;
  --bg-section: #EEEEEE;
  --bg-accent: #E8E8E8;
  --accent-peach: #0062A0;       /* Action blue */
  --accent-peach-dark: #004878;
  --search-bar: #2D3436;
  --teal-muted: #74B9FF;
  --text-dark: #1A1C1C;
  --text-muted: #434749;
  --border: #C3C7C8;             /* Hairline outline */
  --card-bg: #FFFFFF;
  --font-main: 'Inter', sans-serif;
  --font-heading: 'Inter', sans-serif;
  --shadow: 0 1px 0 rgba(26, 28, 28, 0.04);
  --shadow-lg: 0 2px 0 rgba(26, 28, 28, 0.06);
  --radius: 0px;
  --radius-lg: 0px;
  --radius-pill: 0px;
  --transition: all 0.2s ease;
  --header-height: auto;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: var(--font-main);
  background: var(--bg-cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1536px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ========== HEADER / NAVBAR ========== */
header {
  height: var(--header-height);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo a {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.main-nav ul {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.main-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  padding-bottom: 4px;
}

.main-nav a:hover { color: var(--navy); }

.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
}

/* Search Bar in Header */
.header-search {
  flex: 1;
  max-width: 380px;
}

.header-search form {
  display: flex;
  align-items: center;
  background: var(--bg-light);
  border-radius: 50px;
  padding: 8px 18px;
  gap: 10px;
  border: 1px solid var(--border);
}

.header-search input {
  border: none;
  background: none;
  outline: none;
  font-family: var(--font-main);
  font-size: 0.9rem;
  color: var(--text-dark);
  width: 100%;
}

.header-search button {
  border: none;
  background: none;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 1rem;
}

.mobile-search-btn { display: none; }

.header-icons {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  font-size: 1.2rem;
  color: var(--navy);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

.icon-btn:hover { background: var(--bg-light); }

.icon-btn.icon-btn--avatar {
  padding: 0;
  overflow: hidden;
}
.icon-btn--avatar .user-avatar--img,
.icon-btn--avatar .user-avatar--initial {
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
  margin: 0;
}
.icon-btn--avatar .user-avatar--initial {
  font-size: 0.95rem;
}

.user-avatar {
  border-radius: 50%;
  flex-shrink: 0;
  box-sizing: border-box;
}
.user-avatar--img {
  object-fit: cover;
  display: block;
}
.user-avatar--initial {
  display: grid;
  place-items: center;
  text-align: center;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  font-family: var(--font-main);
  line-height: 1;
  padding: 0;
  margin: 0;
}
.account-sidebar .user-info-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 50px;
}
.account-sidebar-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
}
.account-sidebar-avatar .user-avatar--img,
.account-sidebar-avatar .user-avatar--initial {
  width: 100px !important;
  height: 100px !important;
  min-width: 100px;
  min-height: 100px;
}
.account-sidebar-avatar__inner.user-avatar--initial { font-size: 2.5rem; }
.profile-photo-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
}
.profile-photo-preview .user-avatar--img,
.profile-photo-preview .user-avatar--initial {
  width: 88px !important;
  height: 88px !important;
  min-width: 88px;
  min-height: 88px;
}
.profile-photo-preview__avatar.user-avatar--initial { font-size: 2rem; }

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.65rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.wishlist-count{
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.65rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

/* Admin link */
.admin-nav-link {
  color: var(--primary) !important;
  border: 1px solid var(--primary);
  padding: 6px 14px !important;
  border-radius: 50px;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
}

.admin-nav-link:hover {
  background: var(--primary) !important;
  color: var(--navy) !important;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: var(--font-main);
}

.btn-primary {
  background: var(--accent-peach);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--accent-peach-dark);
  transform: translateY(-2px);
  box-shadow: none;
  color: var(--white);
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-outline-dark {
  background: transparent;
  border: 2px solid var(--navy);
  color: var(--navy);
}

.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}

/* ========== HERO ========== */
.hero-section {
  background: var(--navy);
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,98,160,0.13);
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

.hero-content h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero-content h1 span {
  color: var(--primary);
  display: block;
}

.hero-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
  max-width: 520px;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Floating product card */
.hero-float-card {
  position: absolute;
  right: 8%;
  bottom: 10%;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  z-index: 3;
}

.hero-float-card .product-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.hero-float-card .product-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.hero-float-card .stock-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.stock-bar {
  height: 6px;
  background: var(--bg-light);
  border-radius: 3px;
  overflow: hidden;
}

.stock-fill {
  height: 100%;
  background: var(--primary);
  border-radius: 3px;
  width: 85%;
}

/* ========== SECTION HEADERS ========== */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  background: rgba(0,98,160,0.10);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
}

/* ========== CATEGORY CARDS ========== */
.category-card-premium {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: block;
  aspect-ratio: 3/4;
}

.category-card-premium img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.category-card-premium:hover img { transform: scale(1.08); }

.category-overlay-dark {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(24,31,33,0.92));
  display: flex;
  align-items: flex-end;
  padding: 28px;
}

.cat-info h3 {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.cat-info .count {
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.cat-info .explore-link {
  display: block;
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  margin-top: 8px;
  font-weight: 600;
}

.categories-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 20px;
}

.categories-grid .category-card-premium:first-child {
  grid-row: span 2;
  aspect-ratio: auto;
}

/* ========== PRODUCT CARDS ========== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.product-img-wrapper {
  position: relative;
  overflow: hidden;
  background: var(--bg-light);
  aspect-ratio: 1/1;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-img { transform: scale(1.08); }

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.badge-new { background: var(--navy); color: var(--primary); }
.badge-organic { background: #2D5A3D; color: white; }
.badge-sale { background: var(--accent-peach); color: var(--text-dark); }
.badge-bestseller { background: var(--primary); color: var(--navy); }

.wishlist-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #C0C0C0;
  transition: var(--transition);
  z-index: 2;
}

.wishlist-btn:hover { color: var(--navy); transform: scale(1.1); }

.product-info {
  padding: 18px;
}

.product-name-price {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
  gap: 12px;
}

.product-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}

.product-price {
  font-size: 1.125rem; /* 18px */
  font-weight: 700;
  color: var(--text-dark);
  white-space: nowrap;
}

.product-description {
  font-size: 13px;
  color: #8B8B8B;
  margin-bottom: 14px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-category-tag {
  font-family: var(--font-main);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #6B6B6B;
  margin-bottom: 6px;
  display: block;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
}

.stars { color: #F59E0B; font-size: 0.8rem; }
.rating-count { font-size: 0.75rem; color: var(--text-muted); }

.btn-add-to-cart {
  width: 100%;
  background: var(--primary);
  color: var(--navy);
  border: none;
  padding: 12px;
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-main);
}

.btn-add-to-cart:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

/* ========== TESTIMONIALS ========== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
  border: 3px solid var(--primary);
}

.testimonial-stars {
  color: #F59E0B;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
}

.testimonial-role {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

/* ========== NEWSLETTER ========== */
.newsletter-section {
  background: var(--navy);
  padding: 80px 0;
}

.newsletter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.newsletter-left h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.newsletter-left p {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  line-height: 1.7;
}

.newsletter-form {
  display: flex;
  gap: 12px;
}

.newsletter-form input {
  flex: 1;
  padding: 16px 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-family: var(--font-main);
  font-size: 0.9rem;
  outline: none;
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }

.newsletter-form input:focus {
  border-color: var(--primary);
}

.newsletter-form button {
  background: var(--primary);
  color: var(--navy);
  border: none;
  padding: 16px 28px;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 0.85rem;
  cursor: pointer;
  text-transform: uppercase;
  font-family: var(--font-main);
  transition: var(--transition);
}

.newsletter-form button:hover { background: var(--primary-dark); }

.newsletter-fine-print {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  margin-top: 12px;
}

/* ========== FOOTER ========== */
footer {
  background: var(--bg-light);
  color: var(--text-dark);
  padding: 64px 0 32px;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
  display: block;
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-social a:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.footer-col h4 {
  color: var(--text-dark);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  font-family: var(--font-main);
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-links a:hover { color: var(--primary); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ========== SHOP PAGE ========== */
.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  padding: 48px 0;
}

.filters-sidebar {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  height: fit-content;
  position: sticky;
  top: 90px;
}

.filters-sidebar h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--text-dark);
}

.filter-group {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.filter-group:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.filter-group h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.filter-option input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--primary);
}

.btn-reset-filters {
  width: 100%;
  background: var(--primary);
  color: var(--navy);
  border: none;
  padding: 12px;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 0.85rem;
  cursor: pointer;
  text-transform: uppercase;
  font-family: var(--font-main);
  margin-top: 20px;
  transition: var(--transition);
}

.shop-main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}

.shop-main-header h2 {
  font-size: 1.8rem;
  font-weight: 800;
}

.shop-main-header p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.sort-select {
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-main);
  font-size: 0.9rem;
  background: var(--white);
  cursor: pointer;
  outline: none;
}

/* ========== ABOUT PAGE ========== */
.about-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.about-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.about-hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.about-hero-content h1 span { color: var(--primary); }

.about-hero-content p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  margin-bottom: 32px;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 480px;
}

.mission-left {
  background: var(--navy);
  padding: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mission-right {
  display: grid;
  grid-rows: 1fr 1fr;
}

.stat-card {
  background: var(--primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px;
}

.stat-card .number {
  font-size: 4rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.stat-card .label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mission-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.value-card {
  text-align: center;
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.value-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.value-icon {
  width: 56px;
  height: 56px;
  background: rgba(0,98,160,0.10);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 20px;
}

.value-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ========== CONTACT PAGE ========== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 64px 0;
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.contact-form-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.input-group {
  margin-bottom: 20px;
}

.input-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.input-group input,
.input-group select,
.input-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-main);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
  color: var(--text-dark);
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,98,160,0.15);
}

.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--white);
  margin-bottom: 20px;
}

.contact-info-card h3 {
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 28px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  background: rgba(0,98,160,0.13);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 600;
}

.contact-info-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.contact-bottom-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  text-align: center;
}

.contact-bottom-icon {
  width: 48px;
  height: 48px;
  background: rgba(0,98,160,0.10);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin: 0 auto 16px;
  color: var(--navy);
}

.contact-bottom-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-bottom-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ========== CART, CHECKOUT, ACCOUNT ========== */
.page-header {
  background: var(--navy);
  padding: 48px 0;
  margin-bottom: 48px;
}

.page-header h1 {
  color: var(--white);
  font-size: 2.5rem;
  font-weight: 800;
}

.page-header p {
  color: rgba(255,255,255,0.6);
  margin-top: 8px;
}

/* ========== ALERTS ========== */
.alert {
  padding: 14px 20px;
  border-radius: var(--radius);
  margin-bottom: 24px;
  font-weight: 500;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.alert-success {
  background: #F0FDF4;
  color: #166534;
  border: 1px solid #BBF7D0;
}

.alert-error {
  background: #FEF2F2;
  color: #991B1B;
  border: 1px solid #FECACA;
}

/* ========== SEARCH OVERLAY ========== */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.96);
  z-index: 3000;
  display: none;
  flex-direction: column;
  padding: 48px;
}

.search-close-btn {
  position: absolute;
  top: 24px;
  right: 32px;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

.search-input-wrapper {
  border-bottom: 2px solid rgba(255,255,255,0.2);
  padding-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
}

.search-input-wrapper input {
  flex: 1;
  background: transparent !important;
  border: none !important;
  font-size: 2.5rem;
  color: white !important;
  font-family: var(--font-main);
  font-weight: 300;
  outline: none !important;
  box-shadow: none !important;
}

.search-results-overlay {
  background: white;
  border-radius: var(--radius);
  margin-top: 20px;
  max-height: 60vh;
  overflow-y: auto;
}

/* ========== TOAST ========== */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--navy);
  color: white;
  padding: 16px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 4000;
  display: none;
  border-left: 4px solid var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
}

/* ========== MOBILE BOTTOM NAV ========== */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 64px;
  background: white;
  border-top: 1px solid var(--border);
  display: none;
  justify-content: space-around;
  align-items: center;
  z-index: 2500;
}

.mobile-bottom-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  gap: 4px;
}

.mobile-bottom-nav a.active { color: var(--primary); }
.mobile-bottom-nav i { font-size: 1.2rem; }
.mobile-bottom-nav .mobile-nav-account__avatar.user-avatar--img,
.mobile-bottom-nav .mobile-nav-account__avatar.user-avatar--initial {
  width: 22px;
  height: 22px;
}
.mobile-bottom-nav .mobile-nav-account__avatar.user-avatar--initial {
  font-size: 0.65rem;
}

/* ========== PAGINATION ========== */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}

.pagination a, .pagination span {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid var(--border);
  color: var(--text-dark);
  transition: var(--transition);
}

.pagination a:hover { border-color: var(--primary); }
.pagination .active { background: var(--primary); color: var(--navy); border-color: var(--primary); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .categories-grid { grid-template-columns: 1fr 1fr; }
  .categories-grid .category-card-premium:first-child { grid-row: auto; }
  .newsletter-grid { grid-template-columns: 1fr; gap: 32px; }
  .mission-grid { grid-template-columns: 1fr; }
  .shop-layout { grid-template-columns: 1fr; }
  .filters-sidebar { position: static; }
  .account-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .blog-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 768px) {
  .main-nav { 
    display: none; 
    position: absolute;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  }
  .main-nav.active { display: block; }
  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 0 2rem;
  }
  .mobile-nav-toggle { display: block !important; }
  .header-search { display: none; }
  .mobile-bottom-nav { display: flex; }
  
  /* Header Fixes for Mobile */
  .logo a { font-size: 1rem; letter-spacing: 0; line-height: 1.2; }
  .header-inner { gap: 10px; }
  .header-icons { gap: 4px; }
  .icon-btn { width: 34px; height: 34px; font-size: 1rem; }
  .mobile-search-btn { display: flex !important; }
  
  .products-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info-bottom { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  footer { padding-bottom: 80px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-float-card { display: none; }
  
  /* Card responsive */
  .card { padding: 28px 20px; }
  .blog-grid { grid-template-columns: 1fr !important; }
  .blog-filters { flex-wrap: wrap; gap: 12px !important; }
  .order-detail-grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 2.2rem; margin-bottom: 16px; }
  .hero-badge { margin-bottom: 16px; }
  .hero-btns { flex-direction: column; width: 100%; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .container { padding: 0 1rem; }
  .card { padding: 20px 16px; }
  .premium-page-header { padding: 60px 0 40px; }
}

/* ========== CARD CONTAINER ========== */
.card {
  background: var(--white);
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

/* ========== PREMIUM PAGE HEADER ========== */
.premium-page-header {
  background: var(--navy);
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.premium-page-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200,240,0,0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.premium-page-header h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 12px;
}
.premium-page-header p {
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
}
.premium-page-header .breadcrumb {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.premium-page-header .breadcrumb a { color: rgba(255,255,255,0.5); }
.premium-page-header .breadcrumb a:hover { color: var(--primary); }

/* ========== ACCOUNT SIDEBAR ========== */
.account-sidebar .nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}
.account-sidebar .nav-link:hover,
.account-sidebar .nav-link.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateX(4px);
}

/* ========== BLOG PREMIUM ========== */
.blog-card.card {
  padding: 0;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.blog-card.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.blog-card.card .blog-info {
  padding: 24px;
}

/* ========== ORDER DETAIL NESTED CARDS ========== */
.order-items-detail,
.order-sidebar {
  background: var(--bg-light);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: none;
}
.order-actions {
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: none;
}

/* ========== CHECKOUT PREMIUM ========== */
.checkout-step {
  margin-bottom: 48px;
}
.checkout-sidebar .summary-box {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

/* ========== SECONDARY PAGES (info, privacy, shipping) ========== */
.info-page-content {
  text-align: left;
}
.info-page-content h2 {
  color: var(--navy);
  font-size: 1.6rem;
  margin: 48px 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--bg-section);
}
.info-page-content p {
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 20px;
  font-size: 1rem;
}

/* ========== AUTH PAGES ========== */
.auth-card {
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
}
.auth-card form {
  text-align: left;
}

.password-toggle-wrap {
  position: relative;
  width: 100%;
}
.password-toggle-wrap input[type="password"],
.password-toggle-wrap input[type="text"] {
  padding-right: 44px !important;
}
.password-toggle-btn {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  cursor: pointer;
  color: var(--text-muted);
  padding: 8px !important;
  font-size: 1rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  width: auto;
  min-width: 0;
  border-radius: 4px;
  transition: none !important;
  animation: none !important;
}
.password-toggle-wrap--underline .password-toggle-btn {
  top: auto;
  bottom: 8px;
  transform: none !important;
}
.password-toggle-btn:hover,
.password-toggle-btn:focus,
.password-toggle-btn:active {
  background: transparent !important;
  color: var(--primary);
  transform: translateY(-50%) !important;
  box-shadow: none !important;
}
.password-toggle-wrap--underline .password-toggle-btn:hover,
.password-toggle-wrap--underline .password-toggle-btn:focus,
.password-toggle-wrap--underline .password-toggle-btn:active {
  transform: none !important;
}
.password-toggle-btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: 4px;
}
.password-toggle-btn i {
  pointer-events: none;
  font-size: 1rem;
  line-height: 1;
}

/* ========== FORM ELEMENTS ========== */

input[type="text"],
input[type="email"],
input[type="password"],
select,
textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-light);
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition);
  outline: none;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
select:focus,
textarea:focus {
  border-color: var(--primary);
  background: var(--white);
}

button:not(.password-toggle-btn):not(.bm-hero-dot):not(.bm-thumb):not(.bm-size-btn):not(.bm-tab):not(.bm-prod-cart):not(.add-btn):not(.xs-add):not(.icon-btn),
input[type="submit"] {
  cursor: pointer;
  border: none;
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--white);
  transition: var(--transition);
}

button:not(.password-toggle-btn):not(.bm-hero-dot):not(.bm-thumb):not(.bm-size-btn):not(.bm-tab):not(.bm-prod-cart):not(.add-btn):not(.xs-add):not(.icon-btn):hover,
input[type="submit"]:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* Micro‑animation for cards */
.product-card,
.category-card-premium {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover,
.category-card-premium:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.12);
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

.animate-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }

/* Subtle hover lifts */
.testimonial-card { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* Category card image zoom on hover */
.category-card-premium:hover img { transform: scale(1.08); }

/* Button hover effect */
.hero-section .btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .footer-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 32px !important; }
}

@media (max-width: 900px) {
  .hero-section .container { max-width: 100% !important; padding: 80px 2rem !important; }
  .products-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .shop-layout { flex-direction: column !important; }
  .filters-sidebar { width: 100% !important; }
  .newsletter-grid { grid-template-columns: 1fr !important; gap: 30px !important; }
}

@media (max-width: 768px) {
  .main-nav {
    display: none !important;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    z-index: 999;
  }
  .main-nav.active { display: block !important; }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav li { border-bottom: 1px solid var(--border); }
  .main-nav a { display: block; padding: 14px 0; font-size: 1rem; }
  .mobile-nav-toggle { display: flex !important; }
  .categories-grid,
  .products-grid,
  .testimonials-grid { grid-template-columns: 1fr !important; }
  .categories-grid .category-card-premium { grid-row: span 1 !important; height: 250px !important; }
  .footer-grid { grid-template-columns: 1fr !important; gap: 24px !important; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .newsletter-form { flex-direction: column; }
  .hero-section h1 { font-size: 2rem !important; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .products-grid { grid-template-columns: 1fr !important; }
  .hero-section .container { padding: 60px 1rem !important; }
  .hero-section h1 { font-size: 1.8rem !important; }
}

/* ========== MOBILE BOTTOM NAV ========== */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  z-index: 1000;
  padding: 8px 0;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
}
.mobile-bottom-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  flex: 1;
  text-align: center;
  padding: 4px 0;
}
.mobile-bottom-nav a i { font-size: 1.2rem; }
.mobile-bottom-nav a:hover,
.mobile-bottom-nav a.active { color: var(--navy); }

@media (max-width: 768px) {
  .mobile-bottom-nav { display: flex; }
  body { padding-bottom: 70px; }
}

/* ========== SEARCH OVERLAY ========== */
.search-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(4, 30, 66, 0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.search-overlay .container { max-width: 600px; width: 100%; }
.search-input-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 2px solid rgba(255,255,255,0.3);
  padding-bottom: 16px;
}
.search-input-wrapper input {
  background: transparent !important;
  border: none !important;
  outline: none !important;
  color: var(--white) !important;
  font-size: 1.5rem;
  font-family: var(--font-main);
  width: 100%;
  box-shadow: none !important;
}
.search-input-wrapper input::placeholder { color: rgba(255,255,255,0.4); }
.search-close-btn {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 2.5rem;
  cursor: pointer;
}
.search-close-btn:hover { color: var(--white); background: none; transform: none; }
.search-results-overlay { margin-top: 20px; }
.search-results-overlay .search-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-dark);
  text-decoration: none;
  transition: background 0.2s;
}
.search-results-overlay .search-item:hover {
  background: var(--bg-light);
}
.search-results-overlay .search-item img { width: 50px; height: 50px; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--border); }
.search-results-overlay .search-item h4 { font-size: 0.95rem; color: var(--navy); margin-bottom: 4px; }
.search-results-overlay .search-item span { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.search-results-overlay .no-results { padding: 20px; text-align: center; color: var(--text-muted); font-size: 0.9rem; }

/* ========== PEAKLINE STORE THEME ========== */
.logo a { font-family: var(--font-heading) !important; font-weight: 800 !important; letter-spacing: -0.02em !important; color: var(--text-dark) !important; text-transform: none !important; }
.sub-nav-ul li a:hover, .sub-nav-ul li a.active { color: var(--text-dark); }
.sub-nav-ul li a.active { box-shadow: inset 0 -2px 0 var(--text-dark); }
.cart-count { background: var(--accent-peach) !important; }

.vs-hero { position: relative; min-height: 520px; display: flex; align-items: center; padding: 80px 0; background: var(--primary); overflow: hidden; }
.vs-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(27,48,34,0.92) 0%, rgba(27,48,34,0.55) 55%, rgba(27,48,34,0.25) 100%); z-index: 1; }
.vs-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.vs-hero-grid { position: relative; z-index: 2; display: block; max-width: 640px; }
.vs-hero-badge { display: inline-block; background: var(--accent-peach); color: var(--white); font-size: 0.65rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 6px 12px; border-radius: 2px; margin-bottom: 20px; }
.vs-hero h1 { font-size: clamp(2.2rem, 4vw, 3.25rem); color: var(--white); font-weight: 800; margin-bottom: 20px; line-height: 1.12; }
.vs-hero p { font-size: 1.05rem; color: rgba(255,255,255,0.88); max-width: 520px; margin-bottom: 32px; line-height: 1.7; }
.vs-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.vs-btn-primary { background: var(--accent-peach); color: var(--white); padding: 14px 28px; border-radius: var(--radius); font-weight: 700; font-size: 0.85rem; display: inline-flex; align-items: center; gap: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
.vs-btn-primary:hover { background: var(--accent-peach-dark); color: var(--white); }
.vs-btn-secondary { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.85); padding: 12px 26px; border-radius: var(--radius); font-weight: 600; font-size: 0.85rem; }
.vs-btn-secondary:hover { background: rgba(255,255,255,0.12); color: var(--white); border-color: var(--white); }
.vs-hero-visual { display: none; }
.vs-safety-card { display: none; }

.vs-section { padding: 64px 0; }
.vs-section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 32px; gap: 20px; flex-wrap: wrap; }
.vs-section-header h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--text-dark); margin-bottom: 8px; }
.vs-section-header p { color: var(--text-muted); font-size: 0.95rem; max-width: 520px; }
.vs-link { color: var(--primary); font-weight: 600; font-size: 0.9rem; white-space: nowrap; }
.vs-link:hover { text-decoration: underline; }

.vs-categories-grid { display: grid; grid-template-columns: 1.2fr 1fr; grid-template-rows: 1fr 1fr 140px; gap: 16px; min-height: 400px; }
.vs-cat-tile { position: relative; border-radius: var(--radius-lg); overflow: hidden; display: block; background: var(--teal-muted); min-height: 180px; }
.vs-cat-tile:first-child { grid-row: 1 / 3; }
.vs-cat-tile:nth-child(4) { grid-column: 1 / -1; grid-row: 3; min-height: 0; height: 100%; max-height: 140px; }
.vs-cat-tile:nth-child(4) .vs-cat-label { padding: 16px 20px; font-size: 1.25rem; }
.vs-cat-tile img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; transition: transform 0.6s ease; }
.vs-cat-tile:hover img { transform: scale(1.05); }
.vs-cat-label { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px; background: linear-gradient(transparent, rgba(0,0,0,0.55)); color: var(--white); font-family: var(--font-heading); font-size: 1.5rem; font-weight: 600; }

.vs-product-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 16px; display: flex; flex-direction: column; height: 100%; transition: var(--transition); }
.vs-product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.vs-product-img { position: relative; aspect-ratio: 1; background: var(--bg-light); border-radius: var(--radius); margin-bottom: 14px; overflow: hidden; }
.vs-product-img img { width: 100%; height: 100%; object-fit: contain; padding: 12px; }
.vs-badge-new { position: absolute; top: 10px; left: 10px; background: var(--primary); color: var(--white); font-size: 0.65rem; font-weight: 700; padding: 4px 8px; border-radius: 4px; letter-spacing: 0.5px; }
.vs-brand { font-size: 0.65rem; font-weight: 700; letter-spacing: 1.5px; color: var(--text-muted); text-transform: uppercase; margin-bottom: 6px; }
.vs-product-title { font-family: var(--font-heading); font-size: 1rem; font-weight: 600; margin-bottom: 8px; line-height: 1.35; }
.vs-product-title a { color: inherit; }
.vs-product-title a:hover { color: var(--primary); }
.vs-stars { color: var(--accent-peach); font-size: 0.75rem; margin-bottom: 10px; }
.vs-stars span { color: var(--text-muted); margin-left: 6px; font-family: var(--font-main); font-size: 0.75rem; }
.vs-price { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; color: var(--text-dark); margin-bottom: 14px; }
.vs-add-cart { width: 100%; background: var(--accent-peach); color: var(--white); border: none; padding: 11px; border-radius: var(--radius); font-weight: 700; font-size: 0.8rem; cursor: pointer; margin-top: auto; transition: var(--transition); text-transform: uppercase; letter-spacing: 0.5px; }
.vs-add-cart:hover { background: var(--accent-peach-dark); color: var(--white); }

.vs-values { background: var(--primary); padding: 56px 0; }
.vs-values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.vs-value-item { text-align: center; color: var(--white); }
.vs-value-icon { width: 48px; height: 48px; background: rgba(255,122,77,0.2); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 1.2rem; color: var(--accent-peach); }
.vs-value-item h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--white); }
.vs-value-item p { font-size: 0.88rem; color: rgba(255,255,255,0.75); line-height: 1.6; max-width: 320px; margin: 0 auto; }

.vs-newsletter-block { background: var(--bg-light); border-radius: var(--radius-lg); overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; }
.vs-newsletter-text { padding: 48px; }
.vs-newsletter-text h2 { font-size: 1.8rem; margin-bottom: 12px; }
.vs-newsletter-text p { color: var(--text-muted); margin-bottom: 24px; line-height: 1.6; }
.vs-newsletter-form { display: flex; gap: 0; max-width: 400px; }
.vs-newsletter-form input { flex: 1; padding: 14px 16px; border: 1px solid var(--border); border-right: none; border-radius: var(--radius) 0 0 var(--radius); font-size: 0.85rem; outline: none; background: var(--white); }
.vs-newsletter-form button { background: var(--primary); color: var(--white); border: none; padding: 14px 22px; border-radius: 0 var(--radius) var(--radius) 0; font-weight: 700; cursor: pointer; white-space: nowrap; }
.vs-newsletter-visual { background: var(--dark); min-height: 280px; }
.vs-newsletter-visual img { width: 100%; height: 100%; object-fit: cover; opacity: 0.9; }

.page-main-cream { background: var(--bg-cream); }
.shop-page-main { background: var(--bg-section) !important; }
.cart-page-main { background: var(--bg-cream) !important; }

footer { background: var(--bg-light) !important; }
.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--primary); }

.ps-trust-bar { background: var(--bg-light); padding: 40px 0; border-bottom: 1px solid var(--border); }
.ps-trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.ps-trust-item { display: flex; gap: 16px; align-items: flex-start; }
.ps-trust-item i { color: var(--accent-peach); font-size: 1.25rem; margin-top: 4px; flex-shrink: 0; }
.ps-trust-item h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; color: var(--text-dark); }
.ps-trust-item p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.55; margin: 0; }

.shop-add-cart-btn { background: var(--accent-peach) !important; color: var(--white) !important; text-transform: uppercase; font-weight: 700 !important; letter-spacing: 0.5px; }
.shop-add-cart-btn:hover { background: var(--accent-peach-dark) !important; }

.cart-checkout-btn { background: var(--accent-peach) !important; color: var(--white) !important; width: 100%; padding: 16px !important; font-weight: 700 !important; text-transform: uppercase; letter-spacing: 0.5px; border-radius: var(--radius) !important; }
.cart-shipping-banner { background: var(--bg-section); color: var(--text-dark); padding: 20px 24px; border-radius: var(--radius); margin-top: 24px; display: flex; gap: 14px; align-items: flex-start; font-size: 0.88rem; line-height: 1.55; border: 1px solid var(--border); }
.cart-shipping-banner i { font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.cart-shipping-banner strong { display: block; font-size: 0.75rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px; }

@media (max-width: 768px) {
  .ps-trust-grid { grid-template-columns: 1fr; gap: 24px; }
}

.mobile-bottom-nav { border-top: 1px solid var(--border); background: var(--white); }
.mobile-bottom-nav a.active, .mobile-bottom-nav a:hover { color: var(--primary); }

/* ========== CONTENT PAGES ========== */
.page-content-main { padding: 48px 0 100px; background: var(--bg-cream); }
.page-content-card { max-width: 820px; margin: 0 auto; background: var(--white); padding: clamp(24px, 5vw, 48px); border-radius: var(--radius-lg); border: 1px solid var(--border); box-shadow: var(--shadow); }
.page-content-card h1 { font-family: var(--font-heading); font-size: clamp(2rem, 5vw, 3rem); color: var(--primary); margin-bottom: 12px; line-height: 1.15; }
.page-content-centered { text-align: center; }
.page-content-centered p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.8; margin-bottom: 20px; }
.page-intro { color: var(--text-muted); margin-bottom: 32px; line-height: 1.7; font-size: 1.05rem; }
.policy-content h2 { font-family: var(--font-heading); color: var(--primary); font-size: 1.35rem; margin: 36px 0 12px; }
.policy-content p, .policy-content li { color: var(--text-muted); line-height: 1.8; margin-bottom: 12px; }
.policy-content ul { padding-left: 1.25rem; margin-bottom: 20px; }
.page-cta-box { text-align: center; margin-top: 48px; background: var(--bg-light); padding: 32px; border-radius: var(--radius-lg); }
.page-cta-box h3 { font-family: var(--font-heading); color: var(--primary); margin-bottom: 12px; }
.product-card-badge { position: absolute; top: 10px; left: 10px; background: var(--secondary); color: var(--white); font-size: 0.65rem; font-weight: 800; padding: 4px 8px; text-transform: uppercase; letter-spacing: 0.5px; border-radius: 4px; z-index: 2; }
.shop-product-title { font-family: var(--font-heading); font-size: 1rem; font-weight: 600; margin: 0 0 8px; line-height: 1.35; }
.shop-product-title a { color: inherit; }
.shop-product-rating { color: var(--accent-peach); font-size: 0.72rem; margin-bottom: 12px; }
.shop-product-rating span { color: var(--text-muted); margin-left: 6px; font-family: var(--font-main); }
.cart-grid-responsive { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }
.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 5vw, 60px); align-items: start; }
.gallery-wrapper { display: flex; gap: 20px; }
@media (max-width: 900px) {
  .cart-grid-responsive { grid-template-columns: 1fr; }
  .product-detail-grid { grid-template-columns: 1fr; }
  .gallery-wrapper { flex-direction: column-reverse; }
  .gallery-wrapper .thumbnails { flex-direction: row !important; width: 100% !important; overflow-x: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr !important; }
  body { padding-bottom: 70px; }
}

@media (max-width: 991px) {
  .vs-hero { min-height: 440px; padding: 60px 0; }
  .vs-categories-grid { grid-template-columns: 1fr; grid-template-rows: auto; min-height: auto; }
  .vs-cat-tile:first-child { grid-row: auto; min-height: 220px; }
  .vs-cat-tile:nth-child(4) { grid-column: auto; grid-row: auto; max-height: none; min-height: 180px; }
  .vs-cat-tile { min-height: 180px; }
  .vs-values-grid { grid-template-columns: 1fr; gap: 32px; }
  .vs-newsletter-block { grid-template-columns: 1fr; }
  .vs-newsletter-visual { min-height: 200px; }
}

/* =====================================================================
   BLUEMOUNTAIN STORE — THEME OVERRIDES
   ===================================================================== */

.section-label { color: var(--primary); background: rgba(122,67,46,0.1); letter-spacing: 2px; }
.hero-badge { background: rgba(168,197,160,0.2); border-color: rgba(168,197,160,0.4); color: var(--sage-dark); }
.hero-badge::before { background: var(--sage); }
.hero-content h1 span { color: var(--sage-dark); }
.value-icon { background: rgba(168,197,160,0.15); color: var(--primary); }
.contact-info-icon { background: rgba(168,197,160,0.15) !important; color: var(--primary) !important; }
.contact-bottom-icon { background: rgba(168,197,160,0.12); color: var(--primary-dark); }
.about-hero-content h1 span { color: var(--accent-peach); }
.badge-organic { background: rgba(168,197,160,0.2); color: var(--primary-dark); }
.badge-new { background: var(--sage-btn); color: var(--primary-dark); }
.badge-bestseller { background: var(--gold); color: var(--primary-dark); }
.badge-sale { background: var(--accent-peach); color: var(--white); }
.vs-value-icon { background: rgba(168,197,160,0.2); color: var(--primary); }
.vs-hero-badge { background: rgba(168,197,160,0.2); color: var(--primary-dark); letter-spacing: 1.5px; }
input:focus, select:focus, textarea:focus,
.input-group input:focus, .input-group select:focus, .input-group textarea:focus { box-shadow: 0 0 0 3px rgba(122,67,46,0.15); border-color: var(--primary); }
.btn-primary:hover { box-shadow: 0 4px 16px rgba(122,67,46,0.25); }
.toast { border-left-color: var(--primary); }

.logo a { color: var(--white) !important; letter-spacing: -0.01em !important; }

.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); color: var(--white); }
.btn-add-to-cart { background: var(--sage-btn); color: var(--sage-btn-text); }
.btn-add-to-cart:hover { background: var(--sage); color: var(--sage-btn-text); }
.btn-reset-filters { background: var(--accent-peach); color: var(--white); }
.btn-reset-filters:hover { background: var(--accent-peach-dark); }
.vs-btn-primary { background: var(--primary); color: var(--white); }
.vs-btn-primary:hover { background: var(--primary-dark); color: var(--white); }
.vs-add-cart { background: var(--sage-btn); color: var(--sage-btn-text); }
.vs-add-cart:hover { background: var(--sage); color: var(--sage-btn-text); }
.shop-add-cart-btn { background: var(--primary) !important; color: var(--white) !important; }
.shop-add-cart-btn:hover { background: var(--primary-dark) !important; }
.cart-checkout-btn { background: var(--primary) !important; color: var(--white) !important; }

.utility-bar { background: var(--bg-section); color: var(--text-muted); font-size: 0.75rem; letter-spacing: 0.3px; border-bottom: 1px solid var(--border); }
.utility-bar .container { display: flex; align-items: center; justify-content: space-between; padding-top: 10px; padding-bottom: 10px; gap: 16px; }
.utility-bar a { color: var(--text-muted); }
.utility-bar a:hover { color: var(--sage); }
.utility-bar .util-left { display: flex; align-items: center; gap: 8px; }
.utility-bar .util-left i { color: var(--sage); }
.btn-partner {
  background: var(--sage-btn); color: var(--sage-btn-text) !important; font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.5px; text-transform: uppercase; padding: 12px 24px; border-radius: var(--radius-pill);
  white-space: nowrap; transition: var(--transition);
}
.btn-partner:hover { background: var(--sage); color: var(--sage-btn-text) !important; }
.header-icon-link { color: var(--navy); width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 50%; font-size: 1.05rem; }
.header-icon-link:hover { background: var(--bg-light); }

.sub-nav-ul li a { text-transform: none; font-weight: 600; }
.sub-nav-ul li a:hover, .sub-nav-ul li a.active { color: var(--navy); }
.sub-nav-ul li a.active { box-shadow: inset 0 -2px 0 var(--sage); }

.pagination .active { background: var(--accent-peach); color: var(--white); border-color: var(--accent-peach); border-radius: 10px; }
.pagination a:hover { border-color: var(--accent-peach); color: var(--accent-peach); }

.eyebrow { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--sage); margin-bottom: 14px; background: rgba(79,99,82,0.12); padding: 6px 14px; border-radius: var(--radius-pill); }
.eyebrow-muted { color: var(--text-muted); background: none; padding: 0; }

/* Light footer (reference style) */
footer { background: var(--bg-light) !important; color: var(--text-muted); border-top: 1px solid var(--border); padding: 64px 0 0; }
footer .footer-logo { color: var(--navy); font-size: 1.25rem; font-weight: 800; display: block; margin-bottom: 14px; }
footer .footer-tagline { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }
footer .footer-col h4 { color: var(--navy); font-size: 0.85rem; font-weight: 700; margin-bottom: 18px; }
footer .footer-links a { color: var(--text-muted); font-size: 0.88rem; }
footer .footer-links a:hover { color: var(--sage); }
footer .footer-social a { border: 1px solid var(--border); color: var(--text-muted); width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
footer .footer-social a:hover { border-color: var(--primary); color: var(--primary); background: rgba(122,67,46,0.08); }
footer .footer-bottom { border-top: 1px solid var(--border); color: var(--text-muted); padding: 24px 0; margin-top: 48px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-size: 0.82rem; }
footer .footer-bottom a { color: var(--text-muted); }
footer .footer-bottom a:hover { color: var(--sage); }
footer .newsletter-inline-form input { background: var(--white); border-color: var(--border); color: var(--text-dark); border-radius: var(--radius-pill) 0 0 var(--radius-pill); }
footer .newsletter-inline-form input::placeholder { color: var(--text-muted); }
footer .newsletter-inline-form button { background: var(--primary); color: var(--white); border-radius: 0 var(--radius-pill) var(--radius-pill) 0; font-weight: 600; }
footer .newsletter-inline-form button:hover { background: var(--primary-dark); }

.global-ship-banner { background: var(--bg-section); color: var(--text-muted); text-align: center; font-size: 0.8rem; font-weight: 500; letter-spacing: 0.3px; padding: 12px 16px; border-bottom: 1px solid var(--border); }
.global-ship-banner i { margin-right: 8px; color: var(--sage); }

/* Header search pill */
.tm-header-search { width: 100%; max-width: 420px; margin: 0 auto; justify-self: center; }
.tm-header-search form { display: flex; align-items: center; background: var(--bg-light); border-radius: var(--radius-pill); padding: 10px 20px; gap: 10px; border: 1px solid var(--border); }
.tm-header-search input { border: none; background: none; outline: none; font-family: var(--font-main); font-size: 0.88rem; color: var(--text-dark); width: 100%; }
.tm-header-search button { border: none; background: none; cursor: pointer; color: var(--text-muted); font-size: 0.95rem; }
.tm-header-search input::placeholder { color: var(--text-muted); }
.tm-header-search { position: relative; }

.search-suggestions {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 12px 40px rgba(10, 22, 34, 0.12);
    max-height: 380px;
    overflow-y: auto;
    z-index: 1100;
    padding: 8px 0;
}
.search-suggestions .search-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    text-decoration: none;
    color: inherit;
    transition: background 0.15s;
}
.search-suggestions .search-item:hover,
.search-suggestions .search-item:focus {
    background: var(--bg-light);
}
.search-suggestions .search-item img {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    flex-shrink: 0;
}
.search-suggestions .search-item h4 {
    font-size: 0.88rem;
    color: var(--navy);
    margin: 0 0 2px;
    font-weight: 600;
    line-height: 1.3;
}
.search-suggestions .search-item .search-item-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 0.75rem;
    color: var(--text-muted);
}
.search-suggestions .search-item .search-item-price {
    font-weight: 700;
    color: var(--sage);
}
.search-suggestions .no-results {
    padding: 16px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}
.search-suggestions .search-view-all {
    display: block;
    padding: 12px 16px;
    text-align: center;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--sage);
    text-decoration: none;
    border-top: 1px solid var(--border);
}
.search-suggestions .search-view-all:hover { background: var(--bg-light); }

.shop-search .search-suggestions {
    top: calc(100% + 6px);
}

/* Mobile bottom nav */
.mobile-bottom-nav { background: var(--white); border-top: 1px solid var(--border); }
.mobile-bottom-nav a { color: var(--text-muted); }
.mobile-bottom-nav a:hover, .mobile-bottom-nav a.active { color: var(--sage); }

