@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --primary: #A67B5B;
  --primary-dark: #8A6448;
  --secondary: #C4A484;
  --navy: #0F1218;
  --dark: #000000;
  --white: #F8F6F0;
  --bg-light: #F2EFE9;
  --bg-section: #EBE7E0;
  --bg-accent: #E8EAF2;
  --text-dark: #1A1A1A;
  --text-muted: #6B6B6B;
  --border: #E0E0DA;
  --card-bg: #FFFFFF;
  --font-main: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --shadow: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.10);
  --radius: 4px;
  --radius-lg: 8px;
  --transition: all 0.3s ease;
  --header-height: 72px;
}

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

body {
  font-family: var(--font-main);
  background: var(--white);
  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;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1280px;
  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); }

.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(--primary);
  color: var(--navy);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(200,240,0,0.3);
}

.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(200,240,0,0.15);
  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(200,240,0,0.1);
  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(13,31,22,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 #E8E8E4;
  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: #F2F0EC;
  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: #DC2626; color: white; }
.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(--navy);
  color: var(--white);
  padding: 64px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.footer-tagline {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  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(--white);
  font-size: 0.85rem;
  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: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover { color: var(--white); }

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

/* ========== 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(200,240,0,0.1);
  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(200,240,0,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(200,240,0,0.15);
  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(200,240,0,0.1);
  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: none;
  border: none;
  font-size: 2.5rem;
  color: white;
  font-family: var(--font-main);
  font-weight: 300;
  outline: none;
}

.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; }

/* ========== 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(--navy);
  color: var(--white);
  border-color: var(--navy);
  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;
}

/* ========== 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,
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:hover,
input[type="submit"]:hover {
  background: var(--primary);
  color: var(--navy);
  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);
}

 / *   = = = = = = = = = =   R E S P O N S I V E   &   A N I M A T I O N S   = = = = = = = = = =   * / 
 @ k e y f r a m e s   f a d e I n U p   { 
     f r o m   {   o p a c i t y :   0 ;   t r a n s f o r m :   t r a n s l a t e Y ( 3 0 p x ) ;   } 
     t o   {   o p a c i t y :   1 ;   t r a n s f o r m :   t r a n s l a t e Y ( 0 ) ;   } 
 } 
 . a n i m a t e - u p   { 
     a n i m a t i o n :   f a d e I n U p   0 . 8 s   e a s e - o u t   f o r w a r d s ; 
 } 
 
 @ m e d i a   ( m a x - w i d t h :   1 0 2 4 p x )   { 
     . c a t e g o r i e s - g r i d   {   g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( 2 ,   1 f r )   ! i m p o r t a n t ;   } 
 } 
 @ m e d i a   ( m a x - w i d t h :   9 0 0 p x )   { 
     . h e r o - s e c t i o n   . c o n t a i n e r ,   s e c t i o n   . c o n t a i n e r [ s t y l e * = \  
 g r i d \ ]   { 
         g r i d - t e m p l a t e - c o l u m n s :   1 f r   ! i m p o r t a n t ; 
         g a p :   4 0 p x   ! i m p o r t a n t ; 
     } 
     . p r o d u c t s - g r i d   {   g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( 2 ,   1 f r )   ! i m p o r t a n t ;   } 
     . s h o p - l a y o u t   {   f l e x - d i r e c t i o n :   c o l u m n   ! i m p o r t a n t ;   } 
     . f i l t e r s - s i d e b a r   {   w i d t h :   1 0 0 %   ! i m p o r t a n t ;   } 
 } 
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   { 
     . m a i n - n a v   {   d i s p l a y :   n o n e   ! i m p o r t a n t ;   } 
     . m o b i l e - n a v - t o g g l e   {   d i s p l a y :   b l o c k   ! i m p o r t a n t ;   } 
     . c a t e g o r i e s - g r i d ,   . p r o d u c t s - g r i d   {   g r i d - t e m p l a t e - c o l u m n s :   1 f r   ! i m p o r t a n t ;   } 
 } 
  
 