/* CSS para scbodycare - Estética Premium (Fondo Claro con Acentos Negro, Dorado y Plateado) */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  --color-bg-white: #FAF6EE;
  --color-bg-light: #F3EFE9;
  --color-black-deep: #111111;
  --color-black-card: #ffffff;
  --color-black-light: #f0f0f0;
  --color-gold: #D4AF37;
  --color-gold-light: #A97C1A;
  --color-gold-dark: #8c620c;
  --color-silver: #E1E4E6;
  --color-silver-dark: #8E959A;
  --color-text-dark: #1E1E1E;
  --color-text-muted: #666666;
  --gold-gradient: linear-gradient(135deg, #A97C1A 0%, #F1E5AC 50%, #C5A059 100%);
  --gold-glow: 0 4px 20px rgba(212, 175, 55, 0.25);
  --border-gold-subtle: 1px solid rgba(212, 175, 55, 0.3);
  --border-silver-subtle: 1px solid rgba(142, 149, 154, 0.2);
  --font-primary: 'Outfit', sans-serif;
  --font-secondary: 'Playfair Display', serif;
  --transition-speed: 0.3s;
}

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

body {
  background-color: var(--color-bg-white);
  color: var(--color-text-dark);
  font-family: var(--font-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--color-text-dark);
  text-decoration: none;
  transition: color var(--transition-speed);
}

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

/* --- HEADER & NAVIGATION (Shaklee Cloned Structure) --- */
.promo-bar {
  background: var(--color-black-deep);
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  text-align: center;
  padding: 10px 0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: #fff;
  text-transform: uppercase;
}

.promo-bar span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.top-nav {
  background-color: #f7f7f7;
  padding: 10px 0;
  border-bottom: 1px solid #eaeaea;
  font-size: 13px;
  font-weight: 500;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
  margin-left: auto;
}

.top-nav-links a {
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-nav-links a:hover {
  color: var(--color-gold-light);
}

/* Centered Header Layout matching Shaklee */
.middle-nav {
  background-color: var(--color-bg-white);
  padding: 25px 0 15px 0;
  border-bottom: 1px solid #f0f0f0;
}

.middle-nav .container {
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.header-side-tools {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.logo-img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: none;
  background: transparent;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(212,175,55,0.45));
  transition: transform 0.3s;
}

.logo-img:hover {
  transform: scale(1.04);
}

.logo-text {
  font-family: var(--font-secondary);
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--color-black-deep);
  text-transform: uppercase;
}

.logo-text span {
  color: var(--color-gold-light);
}

.search-box {
  position: relative;
  width: 260px;
}

.search-input {
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 20px;
  padding: 8px 15px 8px 35px;
  color: var(--color-text-dark);
  font-family: var(--font-primary);
  font-size: 13px;
  transition: border-color var(--transition-speed), box-shadow var(--transition-speed);
}

.search-input:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

.search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-muted);
  font-size: 13px;
}

.bottom-nav {
  background-color: var(--color-bg-white);
  border-bottom: 1px solid #eaeaea;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.bottom-nav-list {
  display: flex;
  list-style: none;
  justify-content: center;
  padding: 15px 0;
  width: 100%;
}

.bottom-nav-item {
  position: relative;
  margin: 0 20px;
}

.bottom-nav-link {
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #333;
  padding: 6px 0;
}

.bottom-nav-link:hover, .bottom-nav-item.active .bottom-nav-link {
  color: var(--color-gold-light);
}

.bottom-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: width var(--transition-speed), left var(--transition-speed);
}

.bottom-nav-link:hover::after, .bottom-nav-item.active .bottom-nav-link::after {
  width: 100%;
  left: 0;
}

/* Submenu dropdown */
.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  border: var(--border-gold-subtle);
  border-radius: 8px;
  padding: 12px;
  z-index: 100;
  min-width: 220px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  list-style: none;
}

.bottom-nav-item:hover .submenu {
  display: block;
}

.submenu-item {
  margin: 6px 0;
}

.submenu-link {
  font-size: 13px;
  color: var(--color-text-muted);
  display: block;
  padding: 6px 12px;
  border-radius: 4px;
}

.submenu-link:hover {
  background-color: #f7f7f7;
  color: var(--color-gold-light);
}

/* --- HERO BANNER (Shaklee style in light backgrounds) --- */
.hero-banner {
  position: relative;
  background-color: #f6f5f1;
  min-height: 440px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid #eaeaea;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(246, 245, 241, 0.95) 0%, rgba(246, 245, 241, 0.7) 50%, rgba(246, 245, 241, 0.1) 100%);
  z-index: 2;
}

.hero-bg-img {
  position: absolute;
  right: 0;
  top: 0;
  width: 55%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 580px;
  padding: 40px;
}

.hero-tag {
  color: var(--color-gold-light);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 15px;
  display: inline-block;
  border-bottom: 2px solid var(--color-gold);
  padding-bottom: 4px;
}

.hero-title {
  font-family: var(--font-secondary);
  font-size: 46px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--color-text-dark);
}

.hero-title span {
  font-style: italic;
  font-weight: 400;
  color: var(--color-gold-light);
}

.hero-description {
  font-size: 15px;
  color: var(--color-text-muted);
  margin-bottom: 30px;
}

.btn-primary {
  background: var(--color-black-deep);
  color: #ffffff;
  border: 2px solid var(--color-gold);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: all 0.3s;
  display: inline-block;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--gold-gradient);
  color: #000;
  box-shadow: var(--gold-glow);
}

.btn-secondary {
  background: transparent;
  color: var(--color-black-deep);
  border: 2px solid var(--color-black-deep);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition-speed);
  display: inline-block;
}

.btn-secondary:hover {
  background-color: var(--color-black-deep);
  color: #ffffff;
  border-color: var(--color-black-deep);
}

/* --- QUICK CATEGORIES NAV GRID --- */
.section-title {
  text-align: center;
  font-family: var(--font-secondary);
  font-size: 32px;
  margin: 60px 0 30px 0;
  letter-spacing: 0.5px;
  color: var(--color-black-deep);
}

.section-title span {
  color: var(--color-gold-light);
  font-weight: 700;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.category-card {
  position: relative;
  height: 280px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #eaeaea;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.category-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.category-card:hover .category-card-img {
  transform: scale(1.08);
}

.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.1) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

.category-card-title {
  font-family: var(--font-secondary);
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 5px;
}

.category-card-link {
  font-size: 12px;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* --- VALUE TICKER --- */
.ticker-section {
  background-color: var(--color-black-deep);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-wrapper {
  display: inline-block;
  animation: tick 25s linear infinite;
}

.ticker-item {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 40px;
  color: #ffffff;
}

.ticker-item i {
  color: var(--color-gold);
  margin-right: 10px;
}

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

/* --- PROMO BLOCKS (SIDE BY SIDE) --- */
.promo-section {
  display: flex;
  gap: 30px;
  margin-bottom: 60px;
}

.promo-block {
  flex: 1;
  background-color: var(--color-bg-light);
  border-radius: 8px;
  border: 1px solid #eaeaea;
  display: flex;
  overflow: hidden;
  height: 290px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.promo-block-content {
  flex: 1.2;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.promo-block-img-container {
  flex: 0.8;
  height: 100%;
}

.promo-block-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-block h3 {
  font-family: var(--font-secondary);
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--color-text-dark);
}

.promo-block p {
  color: var(--color-text-muted);
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* --- HORIZONTAL DIFFERENCE CAROUSEL (Image 2 style) --- */
.carousel-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto 60px auto;
  overflow: hidden;
}

.carousel-track-container {
  position: relative;
  width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  list-style: none;
}

.carousel-slide {
  min-width: 100%;
  padding: 0 10px;
  display: flex;
  justify-content: center;
}

.difference-card {
  width: 100%;
  background-color: #ebf3f1; /* Soft greenish cream like Image 2 */
  border-radius: 50px; /* Highly rounded corners */
  display: flex;
  overflow: hidden;
  height: 280px;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.difference-info {
  flex: 1.1;
  padding: 40px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.difference-tag {
  font-family: var(--font-secondary);
  font-size: 34px;
  font-weight: 700;
  color: #0c231e; /* Dark forest green */
  margin-bottom: 15px;
}

.difference-text {
  font-size: 16px;
  color: #333333;
  line-height: 1.5;
  margin-bottom: 20px;
}

.difference-link {
  font-size: 14px;
  font-weight: 700;
  color: #0c231e;
  text-decoration: underline;
}

.difference-media {
  flex: 0.9;
  height: 100%;
}

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

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ffffff;
  border: 1px solid #ddd;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  font-size: 16px;
  color: #555;
  transition: all 0.3s;
}

.carousel-btn:hover {
  background: var(--color-black-deep);
  color: #fff;
  border-color: var(--color-black-deep);
}

.carousel-btn.left {
  left: 10px;
}

.carousel-btn.right {
  right: 10px;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ccc;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.carousel-dot.active {
  background-color: #0c231e;
}

/* --- CLINICAL STUDY SECTION --- */
.clinical-block {
  background-color: var(--color-bg-light);
  border-radius: 8px;
  border: 1px solid #eaeaea;
  padding: 50px;
  margin-bottom: 60px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.clinical-left {
  flex: 1.2;
}

.clinical-right {
  flex: 0.8;
}

.clinical-title {
  font-family: var(--font-secondary);
  font-size: 34px;
  line-height: 1.3;
  margin-bottom: 20px;
  color: var(--color-text-dark);
}

.clinical-title span {
  color: var(--color-gold-light);
}

.clinical-desc {
  font-size: 15px;
  color: var(--color-text-muted);
  margin-bottom: 30px;
}

.clinical-img {
  width: 100%;
  border-radius: 6px;
  border: var(--border-gold-subtle);
}

/* --- JOIN SECTION --- */
.join-section {
  text-align: center;
  background-color: var(--color-bg-light);
  border: 1px solid #eaeaea;
  border-radius: 8px;
  padding: 60px 40px;
  margin-bottom: 60px;
}

.join-title {
  font-family: var(--font-secondary);
  font-size: 38px;
  margin-bottom: 15px;
  color: var(--color-text-dark);
}

.join-subtitle {
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto 40px auto;
  font-size: 16px;
}

.join-cards {
  display: flex;
  gap: 30px;
  justify-content: center;
}

.join-card {
  background-color: #ffffff;
  border: var(--border-silver-subtle);
  border-radius: 8px;
  padding: 40px 30px;
  flex: 1;
  max-width: 450px;
  transition: border-color var(--transition-speed), transform var(--transition-speed);
}

.join-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-5px);
}

.join-card h3 {
  font-family: var(--font-secondary);
  font-size: 26px;
  margin-bottom: 10px;
  color: var(--color-gold-light);
}

.join-card p {
  color: var(--color-text-muted);
  font-size: 14px;
  margin-bottom: 30px;
  height: 60px;
}

/* --- PRODUCT CATALOG PAGE --- */
.catalog-layout {
  display: flex;
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.sidebar {
  flex: 0.25;
  background-color: #ffffff;
  border: var(--border-silver-subtle);
  border-radius: 8px;
  padding: 20px;
  height: fit-content;
}

.sidebar-title {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid #eaeaea;
  padding-bottom: 10px;
  margin-bottom: 15px;
  color: var(--color-text-dark);
}

.category-menu {
  list-style: none;
}

.category-menu-item {
  margin-bottom: 10px;
}

.category-menu-link {
  font-size: 14px;
  color: var(--color-text-muted);
  display: block;
  padding: 6px 10px;
  border-radius: 4px;
  transition: all var(--transition-speed);
}

.category-menu-link:hover, .category-menu-item.active .category-menu-link {
  background-color: #f7f7f7;
  color: var(--color-gold-light);
  padding-left: 15px;
}

.catalog-content {
  flex: 0.75;
}

.catalog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.catalog-results-count {
  font-size: 14px;
  color: var(--color-text-muted);
}

.catalog-sort select {
  background-color: #ffffff;
  border: 1px solid #cccccc;
  color: var(--color-text-dark);
  padding: 8px 15px;
  border-radius: 4px;
  font-family: var(--font-primary);
  font-size: 13px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.product-card {
  background-color: #ffffff;
  border: var(--border-silver-subtle);
  border-radius: 8px;
  overflow: hidden;
  transition: transform var(--transition-speed), box-shadow var(--transition-speed), border-color var(--transition-speed);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-gold);
  box-shadow: 0 10px 25px rgba(212,175,55,0.12);
}

.product-img-container {
  height: 230px;
  overflow: hidden;
  position: relative;
  background-color: #ffffff; /* Pure white background */
  border-bottom: 1px solid #eaeaea;
  padding: 15px; /* Add padding for product vial */
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain; /* Contain rather than cover for product shots */
  transition: transform 0.5s;
}

.product-card:hover .product-img {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--color-black-deep);
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}

/* Badges de Inventario (Stock) */
.stock-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  display: inline-block;
  margin-top: 8px;
  width: fit-content;
}
.stock-badge.in-stock {
  background-color: rgba(76, 175, 80, 0.15);
  color: #4CAF50;
  border: 1px solid rgba(76, 175, 80, 0.3);
}
.stock-badge.out-of-stock {
  background-color: rgba(244, 67, 54, 0.15);
  color: #f44336;
  border: 1px solid rgba(244, 67, 54, 0.3);
}

.product-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-name {
  font-family: var(--font-secondary);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
  font-style: italic;
}

.product-desc {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 15px;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

.product-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-gold-light);
}

.btn-add-cart {
  background: transparent;
  color: var(--color-black-deep);
  border: 1px solid var(--color-black-deep);
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-speed);
}

.btn-add-cart:hover {
  background: var(--color-black-deep);
  color: #ffffff;
}

/* --- PRODUCT DETAIL PAGE --- */
.product-detail-layout {
  display: flex;
  gap: 50px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.product-detail-media {
  flex: 0.9;
}

.product-detail-img {
  width: 100%;
  border-radius: 8px;
  border: var(--border-silver-subtle);
  box-shadow: 0 8px 30px rgba(0,0,0,0.05);
}

.product-detail-info {
  flex: 1.1;
}

.product-detail-title {
  font-family: var(--font-secondary);
  font-size: 38px;
  margin-bottom: 10px;
  color: var(--color-text-dark);
  font-style: italic;
}

.product-detail-category {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-detail-price {
  font-size: 30px;
  font-weight: 700;
  color: var(--color-gold-light);
  margin-bottom: 25px;
}

.product-detail-desc {
  font-size: 15px;
  color: var(--color-text-muted);
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Specific details for research products */
.detail-section-box {
  margin-top: 25px;
  border-top: 1px solid #eaeaea;
  padding-top: 20px;
}

.detail-section-title {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-black-deep);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.detail-section-content {
  font-size: 13.5px;
  color: var(--color-text-muted);
}

.detail-section-content ul {
  padding-left: 20px;
}

.detail-section-content li {
  margin-bottom: 6px;
}

.disclaimer-box {
  background-color: #fff8f8;
  border: 1px solid #ffd4d4;
  border-radius: 6px;
  padding: 15px;
  margin-top: 30px;
  color: #d32f2f;
  font-size: 12.5px;
  line-height: 1.5;
}

.purchase-options {
  background-color: var(--color-bg-light);
  border: 1px solid #eaeaea;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 30px;
}

.purchase-option-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  cursor: pointer;
}

.purchase-option-row:last-child {
  margin-bottom: 0;
}

.purchase-option-row input[type="radio"] {
  accent-color: var(--color-gold-light);
}

.purchase-option-label {
  font-weight: 600;
  font-size: 14px;
}

.purchase-option-desc {
  font-size: 12px;
  color: var(--color-text-muted);
  display: block;
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.quantity-selector label {
  font-size: 14px;
  font-weight: 600;
}

.quantity-control {
  display: flex;
  border: 1px solid #cccccc;
  border-radius: 4px;
  overflow: hidden;
}

.quantity-btn {
  background-color: #f0f0f0;
  border: none;
  color: var(--color-text-dark);
  width: 35px;
  height: 35px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color var(--transition-speed);
}

.quantity-btn:hover {
  background-color: #dddddd;
}

.quantity-input {
  background-color: #ffffff;
  border: none;
  color: var(--color-text-dark);
  width: 50px;
  text-align: center;
  font-family: var(--font-primary);
  font-weight: 600;
}

/* --- CART PAGE --- */
.cart-layout {
  display: flex;
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.cart-table-container {
  flex: 0.7;
}

.cart-summary-container {
  flex: 0.3;
}

.cart-empty {
  text-align: center;
  padding: 50px;
  background-color: var(--color-bg-light);
  border: 1px solid #eaeaea;
  border-radius: 8px;
}

.cart-empty i {
  font-size: 50px;
  color: var(--color-gold-light);
  margin-bottom: 20px;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.cart-table th, .cart-table td {
  padding: 18px;
  text-align: left;
}

.cart-table th {
  background-color: #f7f7f7;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid #eaeaea;
}

.cart-table td {
  border-bottom: 1px solid #f0f0f0;
}

.cart-item-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.cart-item-img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 4px;
}

.cart-item-title {
  font-weight: 600;
  font-size: 15px;
  font-style: italic;
}

.cart-item-type {
  font-size: 12px;
  color: var(--color-text-muted);
}

.btn-remove {
  background: transparent;
  border: none;
  color: #ff4a4a;
  cursor: pointer;
  transition: opacity var(--transition-speed);
}

.btn-remove:hover {
  opacity: 0.8;
}

.cart-summary {
  background-color: var(--color-bg-light);
  border: 1px solid #eaeaea;
  border-radius: 8px;
  padding: 25px;
  height: fit-content;
}

.cart-summary h3 {
  font-family: var(--font-secondary);
  font-size: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #eaeaea;
  padding-bottom: 10px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 14px;
}

.summary-row.total {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-gold-light);
  border-top: 1px solid #eaeaea;
  padding-top: 15px;
  margin-top: 15px;
}

.payment-methods {
  margin-top: 25px;
}

.payment-methods p {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-muted);
  margin-bottom: 10px;
}

.payment-logos {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.payment-logos span {
  display: inline-block;
  background-color: #ffffff;
  border: 1px solid #ddd;
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: bold;
}

/* --- LOGIN & REGISTER PAGE --- */
.login-layout {
  max-width: 900px;
  margin: 60px auto;
  display: flex;
  gap: 50px;
  background-color: #ffffff;
  border: var(--border-silver-subtle);
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.login-form-side {
  flex: 1;
}

.login-divider {
  width: 1px;
  background-color: #eaeaea;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 4px;
  padding: 12px 15px;
  color: var(--color-text-dark);
  font-family: var(--font-primary);
  font-size: 14px;
  transition: border-color var(--transition-speed);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-gold);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 25px;
}

.checkbox-group input {
  margin-top: 4px;
  accent-color: var(--color-gold);
}

.checkbox-group label {
  font-size: 12.5px;
  color: var(--color-text-muted);
  line-height: 1.4;
  cursor: pointer;
}

/* --- AUTOMATIC OVERLAY REGISTRATION POPUP --- */
.register-popup-overlay {
  display: none; /* Auto shown by JS */
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s;
}

.register-popup-box {
  background-color: #ffffff;
  border: 3px solid var(--color-gold);
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
  animation: popUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.register-popup-close {
  position: absolute;
  right: 15px;
  top: 15px;
  font-size: 24px;
  color: #999;
  cursor: pointer;
  background: none;
  border: none;
}

.register-popup-close:hover {
  color: #111;
}

.register-popup-logo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 3px solid var(--color-gold);
  margin-bottom: 20px;
  box-shadow: var(--gold-glow);
}

.register-popup-title {
  font-family: var(--font-secondary);
  font-size: 26px;
  margin-bottom: 10px;
  color: var(--color-black-deep);
}

.register-popup-desc {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 25px;
  line-height: 1.5;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes popUp {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* --- ADMIN DASHBOARD --- */
.admin-layout {
  margin-top: 40px;
  margin-bottom: 60px;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  border-bottom: 1px solid #eaeaea;
  padding-bottom: 20px;
}

.admin-tabs {
  display: flex;
  list-style: none;
  border-bottom: 1px solid #eaeaea;
  margin-bottom: 35px;
  gap: 15px;
}

.admin-tab {
  font-size: 15px;
  font-weight: 600;
  padding: 10px 20px;
  cursor: pointer;
  color: var(--color-text-muted);
  border-bottom: 2px solid transparent;
  transition: all var(--transition-speed);
}

.admin-tab:hover, .admin-tab.active {
  color: var(--color-gold-light);
  border-bottom-color: var(--color-gold);
}

.admin-panel {
  display: none;
}

.admin-panel.active {
  display: block;
}

.admin-grid {
  display: flex;
  gap: 30px;
}

.admin-form-container {
  flex: 0.35;
  background-color: var(--color-bg-light);
  border: 1px solid #eaeaea;
  border-radius: 8px;
  padding: 25px;
}

.admin-list-container {
  flex: 0.65;
  background-color: var(--color-bg-light);
  border: 1px solid #eaeaea;
  border-radius: 8px;
  padding: 25px;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th, .admin-table td {
  padding: 12px 15px;
  text-align: left;
  font-size: 13.5px;
}

.admin-table th {
  background-color: #f7f7f7;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--color-black-deep);
  font-weight: 600;
}

.admin-table td {
  border-bottom: 1px solid #eaeaea;
  background-color: #ffffff;
}

.btn-edit, .btn-delete {
  background: transparent;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 3px;
  margin-right: 5px;
}

.btn-edit {
  color: var(--color-gold-light);
  border: 1px solid var(--color-gold-light);
}

.btn-delete {
  color: #ff4a4a;
  border: 1px solid #ff4a4a;
}

.btn-edit:hover {
  background: var(--color-gold-light);
  color: #fff;
}

.btn-delete:hover {
  background: #ff4a4a;
  color: #fff;
}

/* Email Logs style */
.email-log-item {
  border: 1px solid #eaeaea;
  border-radius: 6px;
  padding: 15px;
  margin-bottom: 15px;
  background-color: #ffffff;
  cursor: pointer;
  transition: border-color var(--transition-speed);
}

.email-log-item:hover {
  border-color: var(--color-gold);
}

.email-log-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.email-log-recipient {
  font-weight: 600;
  font-size: 14px;
}

.email-log-time {
  font-size: 11px;
  color: var(--color-text-muted);
}

.email-log-subject {
  font-size: 13.5px;
  color: var(--color-gold-light);
}

/* Modal for email preview */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 200;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: #ffffff;
  border: 2px solid var(--color-gold);
  border-radius: 8px;
  max-width: 650px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.modal-header {
  padding: 15px 20px;
  border-bottom: 1px solid #eaeaea;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-title {
  font-family: var(--font-secondary);
  font-size: 18px;
}

.btn-close-modal {
  background: transparent;
  border: none;
  color: #999;
  font-size: 24px;
  cursor: pointer;
}

.modal-body {
  padding: 20px;
}

/* --- FOOTER --- */
footer {
  background-color: var(--color-black-deep);
  border-top: var(--border-gold-subtle);
  padding: 60px 0 20px 0;
  color: #ffffff;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.footer-col h3 {
  font-family: var(--font-secondary);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-gold);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  font-size: 13.5px;
  color: #bbbbbb;
}

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

.footer-bottom {
  border-top: 1px solid #222;
  padding-top: 20px;
  text-align: center;
  font-size: 12.5px;
  color: #bbbbbb;
}

.footer-bottom p {
  margin: 5px 0;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--color-gold);
  transition: all var(--transition-speed);
}

.social-link:hover {
  background: var(--gold-gradient);
  color: var(--color-black-deep);
  border-color: transparent;
  box-shadow: var(--gold-glow);
}

/* Cart notification count */
.cart-count {
  background: var(--gold-gradient);
  color: var(--color-black-deep);
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-left: 5px;
  vertical-align: middle;
}

/* Notification banner alert */
.toast-notification {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #ffffff;
  border: 2px solid var(--color-gold);
  color: var(--color-text-dark);
  padding: 15px 25px;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1), var(--gold-glow);
  z-index: 10000;
  display: none;
  animation: slideUp 0.3s forwards;
}

@keyframes slideUp {
  from { transform: translateY(100px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .promo-section {
    flex-direction: column;
  }
  .join-cards {
    flex-direction: column;
    align-items: center;
  }
  .join-card {
    width: 100%;
  }
  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
  }
  .catalog-layout, .product-detail-layout, .cart-layout, .login-layout {
    flex-direction: column;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .header-side-tools {
    position: static;
    transform: none;
    margin-top: 15px;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .categories-grid, .products-grid, .footer-columns {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: 30px;
  }
  .logo-img {
    width: 100px;
    height: 100px;
  }
}

/* --- CART DRAWER SLIDE-OUT --- */
.cart-drawer-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2999;
  display: none;
  animation: fadeIn 0.3s;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -480px; /* Hidden by default */
  width: 480px;
  max-width: 100%;
  height: 100vh;
  background-color: #ffffff;
  box-shadow: -10px 0 35px rgba(0, 0, 0, 0.15);
  z-index: 3000;
  transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.cart-drawer.open {
  right: 0;
}

.cart-drawer-header {
  padding: 20px 25px;
  border-bottom: 1px solid #eaeaea;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--color-black-deep);
  color: #fff;
  border-bottom: 3px solid var(--color-gold);
}

.cart-drawer-title {
  font-family: var(--font-secondary);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: 1px;
}

.cart-drawer-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  transition: color 0.2s;
}

.cart-drawer-close:hover {
  color: var(--color-gold);
}

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 25px;
}

.cart-drawer-footer {
  padding: 25px;
  border-top: 1px solid #eaeaea;
  background-color: #fafafa;
}

/* --- PRODUCT DETAIL POPUP MODAL --- */
.product-modal {
  display: none; /* Hidden by default */
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 2500;
  justify-content: center;
  align-items: center;
  padding: 20px;
  animation: fadeIn 0.3s;
}

.product-modal-content {
  background-color: #ffffff;
  border: 3px solid var(--color-gold);
  border-radius: 12px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  display: flex;
  box-shadow: 0 15px 45px rgba(212, 175, 55, 0.2);
  animation: popUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-modal-close {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 32px;
  color: #999;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
  transition: color 0.2s;
}

.product-modal-close:hover {
  color: #111;
}

.product-modal-media {
  flex: 0.9;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  border-right: 1px solid #f0f0f0;
}

.product-modal-img {
  max-width: 100%;
  max-height: 380px;
  object-fit: contain;
}

.product-modal-info {
  flex: 1.1;
  padding: 40px;
}

/* Official contact buttons style */
.contact-btn {
  padding: 4px 8px;
  border-radius: 4px;
  color: #ffffff !important;
  font-weight: bold;
  font-size: 11px;
  text-transform: uppercase;
  transition: opacity 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.contact-btn:hover {
  opacity: 0.85;
}
.phone-btn {
  background-color: #007bff; /* Phone call blue */
}
.whatsapp-btn {
  background-color: #25d366; /* Official WhatsApp green */
}
.sms-btn {
  background-color: #17a2b8; /* SMS cyan/teal */
}
.tiktok-btn {
  background-color: #010101; /* TikTok black */
  border: 1px solid #ff0050; /* Red accent border */
}
.instagram-btn {
  background-color: #e1306c; /* Official Instagram pink/magenta */
}
.phone-btn-large {
  background-color: #007bff;
}
.whatsapp-btn-large {
  background-color: #25d366;
}
.sms-btn-large {
  background-color: #17a2b8;
}
.tiktok-btn-large {
  background-color: #010101;
  border: 1px solid #ff0050;
}
.instagram-btn-large {
  background-color: #e1306c;
}

/* Circular contact buttons for footer */
.contact-btn-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #ffffff !important;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}
.contact-btn-circle:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

/* Default hidden elements on desktop */
.mobile-app-bar {
  display: none;
}
.mobile-bottom-nav {
  display: none;
}
.mobile-search-bar {
  display: none;
}
.mobile-contact-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 2999;
  justify-content: center;
  align-items: center;
}
.mobile-contact-backdrop.open {
  display: flex;
}
.mobile-contact-sheet {
  display: none;
  background-color: #FAF6EE;
  border: 2px solid var(--color-gold);
  border-radius: 12px;
  width: 750px;
  max-width: 95%;
  padding: 30px;
  box-shadow: 0 10px 45px rgba(0,0,0,0.25);
  z-index: 3000;
  box-sizing: border-box;
}
.mobile-contact-sheet.open {
  display: block;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.mobile-contact-sheet-body {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
  margin-top: 20px;
}
.mobile-sheet-btn {
  width: 100%;
  padding: 12px 18px;
  border-radius: 6px;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
  margin-bottom: 8px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  box-sizing: border-box;
}
.mobile-sheet-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}
.mobile-contact-sheet-close {
  background-color: #222;
  border: 1px solid #444;
  color: #fff;
  padding: 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 10px;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.2s;
}
.mobile-contact-sheet-close:hover {
  background-color: #333;
}

/* Native-feeling mobile app adaptations */
@media (max-width: 768px) {
  /* Hide desktop header & top navigation */
  .top-nav, .middle-nav, .bottom-nav {
    display: none !important;
  }
  
  /* Body spacing for sticky header and tab navigation */
  body {
    padding-top: 60px !important;
    padding-bottom: 70px !important;
    background-color: #fafafa !important;
  }

  /* Sticky Top App Bar */
  .mobile-app-bar {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: var(--color-black-deep);
    border-bottom: 2px solid var(--color-gold);
    z-index: 2000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  }
  .mobile-app-bar-container {
    height: 100%;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .mobile-app-logo-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
  }
  .mobile-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: transparent;
    object-fit: contain;
  }
  .mobile-logo-text {
    font-family: var(--font-secondary);
    font-size: 15px;
    font-weight: 700;
    color: var(--color-gold);
    letter-spacing: 0.5px;
  }
  .mobile-app-bar-actions {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  .mobile-lang-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: inline-flex;
    align-items: center;
  }
  .mobile-cart-link {
    color: var(--color-gold);
    font-size: 20px;
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 5px;
  }
  .mobile-cart-link .cart-count {
    position: absolute;
    top: -5px;
    right: -8px;
    font-size: 9px;
    padding: 2px 5px;
  }

  /* Slide-down Mobile Search Bar */
  .mobile-search-bar {
    display: flex;
    position: fixed;
    top: -60px; /* Hidden above */
    left: 0;
    width: 100%;
    height: 50px;
    background-color: #111111;
    border-bottom: 1px solid var(--color-gold);
    z-index: 1999;
    align-items: center;
    padding: 0 15px;
    transition: top 0.3s ease;
  }
  .mobile-search-bar.open {
    top: 60px; /* Slides down below the app bar */
  }
  .mobile-search-bar .search-icon {
    color: var(--color-gold);
    font-size: 16px;
    margin-right: 10px;
  }
  .mobile-search-bar .search-input {
    flex: 1;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 14px;
    outline: none;
  }

  /* Sticky Bottom Navigation Bar */
  .mobile-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: var(--color-black-deep);
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    z-index: 2000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    justify-content: space-around;
    align-items: center;
    padding-bottom: env(safe-area-inset-bottom); /* iOS notch adaptation */
  }
  .mobile-nav-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #8E959A;
    text-decoration: none;
    font-size: 10px;
    font-weight: 600;
    gap: 4px;
    flex: 1;
    height: 100%;
    transition: color 0.2s;
  }
  .mobile-nav-tab i {
    font-size: 18px;
  }
  .mobile-nav-tab.active {
    color: var(--color-gold);
  }

  /* Mobile Contact Bottom Sheet */
  .mobile-contact-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 2999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .mobile-contact-backdrop.open {
    opacity: 1;
    pointer-events: auto;
  }
  .mobile-contact-sheet {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    background-color: #161616;
    border-top: 3px solid var(--color-gold);
    border-radius: 20px 20px 0 0;
    z-index: 3000;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 20px 20px 30px 20px;
    box-shadow: 0 -5px 25px rgba(0,0,0,0.5);
    visibility: hidden;
  }
  .mobile-contact-sheet.open {
    transform: translateY(0);
    visibility: visible;
  }
  .mobile-contact-sheet-header {
    text-align: center;
    margin-bottom: 20px;
  }
  .mobile-contact-sheet-indicator {
    width: 40px;
    height: 4px;
    background-color: #444;
    border-radius: 2px;
    margin: 0 auto 12px auto;
  }
  .mobile-contact-sheet-header h3 {
    color: var(--color-gold);
    font-family: var(--font-secondary);
    font-size: 19px;
    margin-bottom: 4px;
  }
  .mobile-contact-sheet-header p {
    color: var(--color-text-muted);
    font-size: 12.5px;
  }
  .mobile-contact-sheet-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .mobile-sheet-btn {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    color: #ffffff !important;
    font-weight: 700;
    font-size: 13.5px;
    text-transform: uppercase;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  }
  .mobile-contact-sheet-close {
    background-color: #222;
    border: 1px solid #444;
    color: #fff;
    padding: 12px;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 5px;
    cursor: pointer;
  }

  /* 2-Column Grid & Compact Product Cards */
  .products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    padding: 10px !important;
  }
  .product-card {
    border-radius: 8px !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05) !important;
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
  }
  .product-img-container {
    height: 140px !important;
    padding: 10px !important;
  }
  .product-img {
    max-height: 120px !important;
  }
  .product-card h3 {
    font-size: 14.5px !important;
    margin-bottom: 5px !important;
    line-height: 1.2 !important;
    height: 36px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .product-card p {
    display: none !important; /* Hide description in 2-column mobile layout to keep it clean */
  }
  .product-card div[style*="padding: 20px"] {
    padding: 10px !important;
  }
  .product-card span[style*="font-size: 18px"] {
    font-size: 15px !important;
  }
  .product-card div[style*="display: flex; gap: 8px"] {
    gap: 4px !important;
    width: 100%;
    margin-top: 8px;
  }
  .product-card button {
    padding: 6px 8px !important;
    font-size: 10.5px !important;
    flex: 1;
    text-align: center;
    justify-content: center;
  }

  /* Horizontal Category Chips (Swipeable) */
  .catalog-filter-container {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    justify-content: flex-start !important;
    padding: 5px 15px 15px 15px !important;
    margin-bottom: 20px !important;
    gap: 8px !important;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .catalog-filter-container::-webkit-scrollbar {
    display: none;
  }
  .catalog-filter-container button {
    flex-shrink: 0 !important;
    white-space: nowrap !important;
    font-size: 12px !important;
    padding: 6px 15px !important;
    border-radius: 15px !important;
  }

  /* Full Screen Cart Drawer */
  .cart-drawer {
    width: 100% !important;
    max-width: 100% !important;
    right: -100% !important;
  }
  .cart-drawer.open {
    right: 0 !important;
  }

  /* Mobile Bottom Sheet Modal for Product Details */
  .product-modal {
    align-items: flex-end !important;
    padding: 0 !important;
  }
  .product-modal-content {
    border-radius: 20px 20px 0 0 !important;
    border-left: none !important;
    border-right: none !important;
    border-bottom: none !important;
    height: 85vh !important;
    max-height: 85vh !important;
    flex-direction: column !important;
    animation: slideUpSheet 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  }
  .product-modal-media {
    border-right: none !important;
    border-bottom: 1px solid #f0f0f0 !important;
    padding: 20px !important;
    flex: none !important;
    height: 200px !important;
  }
  .product-modal-img {
    max-height: 160px !important;
  }
  .product-modal-info {
    padding: 20px !important;
    overflow-y: auto !important;
    flex: 1 !important;
  }
  .product-modal-close {
    top: 15px !important;
    right: 15px !important;
    background-color: rgba(0,0,0,0.05) !important;
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    font-size: 20px !important;
  }
}

@keyframes slideUpSheet {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

/* ===== Mobile Hamburger Menu & Side Drawer (Native App Style) ===== */
.mobile-menu-btn { display: none; }
.mobile-drawer,
.mobile-drawer-backdrop { display: none; }

@media (max-width: 768px) {
  .mobile-bottom-nav { display: none !important; }

  body { padding-bottom: 0 !important; }

  .mobile-menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: var(--color-gold);
    font-size: 22px;
    padding: 6px 8px;
    margin-right: 4px;
    cursor: pointer;
  }

  .mobile-drawer-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background-color: rgba(0,0,0,0.55);
    z-index: 4998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
  }
  .mobile-drawer-backdrop.open { opacity: 1; pointer-events: auto; }

  .mobile-drawer {
    display: flex;
    position: fixed;
    top: 0; left: 0;
    width: 82%;
    max-width: 320px;
    height: 100%;
    background-color: #0a0a0a;
    border-right: 2px solid var(--color-gold);
    z-index: 4999;
    transform: translateX(-105%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    box-shadow: 4px 0 25px rgba(0,0,0,0.5);
  }
  .mobile-drawer.open { transform: translateX(0); }

  .mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 18px 14px 18px;
    border-bottom: 1px solid rgba(212,175,55,0.3);
  }
  .mobile-drawer-header .brand {
    display: flex; align-items: center; gap: 10px;
    color: var(--color-gold);
    font-family: var(--font-secondary);
    font-weight: 700; font-size: 16px;
    text-decoration: none;
  }
  .mobile-drawer-header img {
    width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid var(--color-gold); object-fit: cover;
  }
  .mobile-drawer-close {
    background: none; border: none; color: #fff;
    font-size: 22px; cursor: pointer; padding: 4px 8px;
  }

  .mobile-drawer-nav { display: flex; flex-direction: column; padding: 10px 0; }
  .mobile-drawer-nav a,
  .mobile-drawer-nav button {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 22px;
    color: #f3f3f3;
    text-decoration: none;
    font-size: 15px; font-weight: 600;
    background: none; border: none; text-align: left; width: 100%;
    cursor: pointer;
    border-bottom: 1px solid rgba(255,255,255,0.04);
  }
  .mobile-drawer-nav a i,
  .mobile-drawer-nav button i {
    color: var(--color-gold); width: 20px; text-align: center;
  }
  .mobile-drawer-nav a:active { background-color: rgba(212,175,55,0.08); }

  .mobile-drawer-contact {
    margin-top: auto;
    padding: 16px 22px 24px 22px;
    border-top: 1px solid rgba(212,175,55,0.3);
  }
  .mobile-drawer-contact h4 {
    color: var(--color-gold);
    font-size: 12px; letter-spacing: 1px; text-transform: uppercase;
    margin-bottom: 12px;
  }
  .mobile-drawer-socials { display: flex; gap: 10px; flex-wrap: wrap; }
  .mobile-drawer-socials a {
    width: 38px; height: 38px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff; font-size: 15px; text-decoration: none;
    background-color: #1c1c1c; border: 1px solid rgba(212,175,55,0.4);
  }
  .mobile-drawer-email { margin-top: 14px; font-size: 12.5px; color: #bbb; word-break: break-all; }
  .mobile-drawer-email a { color: var(--color-gold); text-decoration: none; }
}



