/* ==========================================
   BHOJAN CRAFT INDIA - B2B DESIGN SYSTEM
   ========================================== */

:root {
  --primary-dark: #12161f;
  --primary-navy: #1a202c;
  --surface-dark: #1e232f;
  --gold-primary: #c5a059;
  --gold-bright: #d4af37;
  --gold-dark: #99752b;
  --gold-light: #f4e8c1;
  --accent-red: #c0392b;
  --accent-red-light: #fadbd8;
  --accent-green: #27ae60;
  --accent-green-light: #d4efdf;
  --bg-light: #f8f9fa;
  --bg-card: #ffffff;
  --text-main: #2b2d42;
  --text-muted: #6c757d;
  --text-light: #f8f9fa;
  --border-light: #e9ecef;
  --border-gold: rgba(197, 160, 89, 0.3);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --transition-fast: all 0.25s ease;
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

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

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

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

ul {
  list-style: none;
}

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

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

/* ==========================================
   TOP ANNOUNCEMENT BAR & MOQs NOTICE
   ========================================== */
.top-bar {
  background: var(--primary-dark);
  color: var(--text-light);
  padding: 8px 0;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--border-gold);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.moq-badge-banner {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-bright));
  color: #000;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 6px rgba(212, 175, 55, 0.4);
}

.top-contact {
  display: flex;
  gap: 15px;
  align-items: center;
}

.top-contact a {
  color: var(--gold-light);
}

.top-contact a:hover {
  color: #fff;
}

/* ==========================================
   CONTAINER & LAYOUT GRID
   ========================================== */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 60px 0;
}

.section-bg-alt {
  background-color: #ffffff;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px auto;
}

.section-subtitle {
  color: var(--gold-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.85rem;
  margin-bottom: 8px;
  display: block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 15px;
}

.section-title span {
  color: var(--gold-primary);
}

.section-description {
  color: var(--text-muted);
  font-size: 1rem;
}

/* ==========================================
   HEADER & NAVBAR
   ========================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(26, 32, 44, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-md);
  transition: var(--transition-fast);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
}

.logo-icon {
  display: none;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-brand {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.5px;
  line-height: 1.1;
}

.logo-brand span {
  color: var(--gold-bright);
}

.logo-sub {
  font-size: 0.68rem;
  color: var(--gold-light);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  color: #e2e8f0;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 6px 0;
}

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

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold-bright);
  border-radius: 2px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cart-icon-btn {
  position: relative;
  color: #ffffff;
  font-size: 1.35rem;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.cart-icon-btn:hover {
  color: var(--gold-bright);
  transform: scale(1.05);
}

.cart-count-badge {
  position: absolute;
  top: 0;
  right: -4px;
  background: var(--accent-red);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--primary-navy);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
  padding: 5px;
}

/* Mobile Drawer */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: var(--primary-dark);
  z-index: 1050;
  padding: 80px 25px 30px 25px;
  box-shadow: -5px 0 25px rgba(0,0,0,0.5);
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav-close {
  position: absolute;
  top: 25px;
  right: 25px;
  background: none;
  border: none;
  color: var(--gold-light);
  font-size: 1.8rem;
  cursor: pointer;
}

.mobile-nav .nav-link {
  font-size: 1.1rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.6);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
}

.overlay.open {
  opacity: 1;
  visibility: visible;
}

/* ==========================================
   BUTTONS & BADGES
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-fast);
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-dark));
  color: #12161f;
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.5);
  background: linear-gradient(135deg, #e5be38, #a87f2e);
}

.btn-secondary {
  background: var(--primary-dark);
  color: #ffffff;
  border: 1px solid var(--border-gold);
}

.btn-secondary:hover {
  background: var(--primary-navy);
  color: var(--gold-bright);
  border-color: var(--gold-bright);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--primary-dark);
  border: 1.5px solid var(--primary-dark);
}

.btn-outline:hover {
  background: var(--primary-dark);
  color: #fff;
}

.btn-whatsapp {
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: #1eb956;
  transform: translateY(-2px);
  color: #fff;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.btn-block {
  width: 100%;
}

.badge-moq {
  background: rgba(192, 57, 43, 0.1);
  color: var(--accent-red);
  border: 1px solid rgba(192, 57, 43, 0.25);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  background: linear-gradient(135deg, #0d1017 0%, #1a202c 100%);
  color: #ffffff;
  padding: 80px 0 100px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, rgba(0,0,0,0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero-content {
  z-index: 2;
}

.hero-notice {
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-title span {
  background: linear-gradient(135deg, var(--gold-bright), #f4e8c1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subheading {
  font-size: 1.2rem;
  color: #cbd5e1;
  margin-bottom: 25px;
  font-weight: 400;
  max-width: 540px;
}

.hero-moq-highlight {
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid var(--gold-bright);
  padding: 14px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 35px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-moq-highlight i {
  color: var(--gold-bright);
  font-size: 1.4rem;
}

.hero-moq-text {
  font-weight: 700;
  font-size: 1.05rem;
  color: #ffffff;
}

.hero-moq-sub {
  font-size: 0.85rem;
  color: #a0aec0;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-image-wrapper {
  position: relative;
  z-index: 2;
}

.hero-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  border: 1px solid var(--border-gold);
}

.hero-image-card img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-image-card:hover img {
  transform: scale(1.03);
}

.hero-stats-floating {
  position: absolute;
  bottom: -20px;
  left: 20px;
  background: rgba(26, 32, 44, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-gold);
  padding: 15px 25px;
  border-radius: var(--radius-md);
  display: flex;
  gap: 25px;
  box-shadow: var(--shadow-lg);
}

.hero-stat-item {
  text-align: center;
}

.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold-bright);
}

.hero-stat-lbl {
  font-size: 0.75rem;
  color: #a0aec0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ==========================================
   CATEGORY CARDS SECTION
   ========================================== */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.category-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 30px 20px;
  text-align: center;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-primary);
}

.category-icon {
  width: 70px;
  height: 70px;
  background: rgba(197, 160, 89, 0.1);
  color: var(--gold-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 18px;
  transition: var(--transition-fast);
}

.category-card:hover .category-icon {
  background: var(--gold-bright);
  color: var(--primary-dark);
  transform: rotate(5deg) scale(1.1);
}

.category-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

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

/* ==========================================
   PRODUCT CARDS GRID & MOQ QUANTITY SELECTOR
   ========================================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.product-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(197, 160, 89, 0.4);
}

.product-thumb {
  position: relative;
  height: 220px;
  background: #f1f5f9;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-thumb img {
  max-height: 190px;
  width: auto;
  object-fit: contain;
  transition: transform 0.4s ease;
}

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

.product-tag-moq {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent-red);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 6px rgba(192, 57, 43, 0.3);
}

.product-cat-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(26, 32, 44, 0.8);
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
}

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

.product-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 8px;
  line-height: 1.35;
}

.product-title a:hover {
  color: var(--gold-dark);
}

.product-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-price-box {
  margin-bottom: 15px;
}

.price-main {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary-dark);
}

.price-unit {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 400;
}

.moq-note {
  font-size: 0.8rem;
  color: var(--accent-red);
  font-weight: 600;
  margin-top: 2px;
}

/* Quantity Box Control */
.quantity-control-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 15px;
}

.quantity-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
}

.qty-picker {
  display: flex;
  align-items: center;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  width: 100%;
}

.qty-btn {
  background: #f1f5f9;
  border: none;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-dark);
  cursor: pointer;
  transition: var(--transition-fast);
}

.qty-btn:hover {
  background: var(--gold-bright);
  color: #000;
}

.qty-input {
  flex: 1;
  height: 38px;
  border: none;
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary-dark);
  background: #fff;
}

.qty-input:focus {
  outline: none;
  background: #fdfbf7;
}

.product-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.product-actions .btn {
  flex: 1;
}

/* ==========================================
   WHY CHOOSE US FEATURE CARDS
   ========================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

.feature-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 30px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-gold);
}

.feature-icon-box {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-navy));
  color: var(--gold-bright);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.feature-info h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

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

/* ==========================================
   BULK ORDER CTA SECTION
   ========================================== */
.cta-bulk-banner {
  background: linear-gradient(135deg, #12161f 0%, #212836 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-lg);
}

.cta-bulk-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-bright), var(--accent-red), var(--gold-bright));
}

.cta-title {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.cta-title span {
  color: var(--gold-bright);
}

.cta-text {
  font-size: 1.1rem;
  color: #cbd5e1;
  max-width: 650px;
  margin: 0 auto 30px auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================
   ENQUIRY FORM & CONTACT STYLING
   ========================================== */
.form-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 35px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary-dark);
}

.form-label span {
  color: var(--accent-red);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  transition: var(--transition-fast);
  background: #ffffff;
}

.form-control:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.2);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* ==========================================
   SHOP CATALOG & FILTER STYLING
   ========================================== */
.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 30px;
  align-items: start;
}

.filter-sidebar {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 25px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 100px;
}

.filter-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.filter-group {
  margin-bottom: 25px;
}

.filter-group-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.category-list li {
  margin-bottom: 8px;
}

.category-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-main);
  cursor: pointer;
  transition: var(--transition-fast);
  text-align: left;
}

.category-btn:hover, .category-btn.active {
  background: rgba(197, 160, 89, 0.15);
  color: var(--gold-dark);
  font-weight: 700;
}

.shop-toolbar {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 15px 20px;
  border: 1px solid var(--border-light);
  margin-bottom: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.search-box {
  position: relative;
  flex: 1;
  min-width: 240px;
}

.search-box input {
  padding-left: 40px;
}

.search-box i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.sort-box {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.page-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  background: #fff;
  color: var(--primary-dark);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.page-btn.active, .page-btn:hover {
  background: var(--gold-bright);
  color: #12161f;
  border-color: var(--gold-bright);
}

/* ==========================================
   PRODUCT DETAILS PAGE STYLING
   ========================================== */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.gallery-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.main-image-box {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 30px;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.main-image-box img {
  max-height: 360px;
  width: auto;
  object-fit: contain;
}

.thumbnail-row {
  display: flex;
  gap: 12px;
}

.thumb-item {
  width: 80px;
  height: 80px;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 5px;
  cursor: pointer;
  background: #fff;
  transition: var(--transition-fast);
}

.thumb-item.active, .thumb-item:hover {
  border-color: var(--gold-bright);
}

.thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pd-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.pd-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #f39c12;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.pd-price-box {
  background: rgba(197, 160, 89, 0.08);
  border: 1px solid var(--border-gold);
  padding: 18px 22px;
  border-radius: var(--radius-md);
  margin-bottom: 25px;
}

.pd-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.pd-price-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-dark);
}

.pd-moq-alert {
  margin-top: 8px;
  font-size: 0.9rem;
  color: var(--accent-red);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pd-dynamic-total {
  background: #ffffff;
  border-top: 1px solid var(--border-gold);
  margin-top: 12px;
  padding-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.pd-spec-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 0.92rem;
}

.pd-spec-table th, .pd-spec-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border-light);
  text-align: left;
}

.pd-spec-table th {
  background: #f8f9fa;
  color: var(--primary-dark);
  width: 35%;
}

/* ==========================================
   CART & CHECKOUT TABLE STYLING
   ========================================== */
.cart-table-wrapper {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow-x: auto;
  box-shadow: var(--shadow-sm);
  margin-bottom: 30px;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 650px;
}

.cart-table th {
  background: var(--primary-dark);
  color: #ffffff;
  padding: 16px 20px;
  font-weight: 600;
  font-size: 0.9rem;
}

.cart-table td {
  padding: 20px;
  border-bottom: 1px solid var(--border-light);
  vertical-align: middle;
}

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

.cart-item-img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  background: #f8f9fa;
  padding: 5px;
  border: 1px solid var(--border-light);
}

.cart-item-title {
  font-weight: 700;
  color: var(--primary-dark);
  font-size: 1rem;
}

.cart-item-moq-label {
  font-size: 0.75rem;
  color: var(--accent-red);
  font-weight: 600;
}

.btn-remove-item {
  color: var(--accent-red);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  padding: 6px;
  transition: var(--transition-fast);
}

.btn-remove-item:hover {
  transform: scale(1.2);
}

.cart-summary-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 30px;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-md);
}

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

.summary-row.grand-total {
  border-top: 2px solid var(--border-light);
  padding-top: 15px;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary-dark);
}

/* ==========================================
   FOOTER STYLING
   ========================================== */
.footer {
  background: var(--primary-dark);
  color: #cbd5e1;
  padding: 70px 0 30px 0;
  border-top: 4px solid var(--gold-bright);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-about p {
  font-size: 0.9rem;
  margin-top: 15px;
  line-height: 1.7;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background: var(--gold-bright);
}

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

.footer-links a {
  color: #cbd5e1;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--gold-bright);
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.9rem;
}

.footer-contact-item i {
  color: var(--gold-bright);
  font-size: 1.1rem;
  margin-top: 3px;
}

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

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.social-icon:hover {
  background: var(--gold-bright);
  color: var(--primary-dark);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 25px;
  text-align: center;
  font-size: 0.85rem;
  color: #94a3b8;
}

/* ==========================================
   FLOATING WHATSAPP & BACK TO TOP
   ========================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 990;
  transition: var(--transition-fast);
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  color: #fff;
}

.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 35px;
  width: 42px;
  height: 42px;
  background: var(--primary-dark);
  color: var(--gold-bright);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 990;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

/* ==========================================
   TOAST NOTIFICATION SYSTEM
   ========================================== */
.toast-container {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: var(--primary-dark);
  color: #ffffff;
  padding: 14px 22px;
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--gold-bright);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  animation: slideInLeft 0.3s ease forwards;
}

.toast.error {
  border-left-color: var(--accent-red);
}

.toast.success {
  border-left-color: var(--accent-green);
}

@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* ==========================================
   RESPONSIVE MEDIA QUERIES
   ========================================== */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-moq-highlight {
    justify-content: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .shop-layout {
    grid-template-columns: 1fr;
  }

  .filter-sidebar {
    position: static;
  }

  .product-detail-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-bulk-banner {
    padding: 40px 20px;
  }
}
