/* ============================================
   GLOBAL RESPONSIVE RESET - DO NOT DUPLICATE
   ============================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


html {
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}

img,
video,
iframe,
embed,
object {
  max-width: 100%;
  height: auto;
}

/* Prevent any element from exceeding viewport */
* {
  max-width: 100%;
}

:root {
  --primary-color: #e53e3e;
  --secondary-color: #ffd700;
  --accent-color: #8a6a3c;
  --text-dark: #1a1a1a;
  --text-light: #666;
  --text-white: #ffffff;
  --text-yellow: #ffd700;
  --bg-light: #fff8f0;
  --bg-white: #ffffff;
  --bg-red: #e53e3e;
  --border-color: #e0e0e0;
  --shadow: 0 2px 10px rgba(229, 62, 62, 0.1);
  --shadow-hover: 0 4px 20px rgba(229, 62, 62, 0.2);
  --transition: all 0.3s ease;
  --header-height: 140px;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(0.5rem, 2vw, 1rem);
}

/* Top Bar */
.top-bar {
  background: var(--primary-color);
  color: #fff;
  padding: clamp(0.5rem, 2vw, 0.5rem) 0;
  font-size: clamp(0.7rem, 2vw, 0.85rem);
  position: relative;
  z-index: 1500;
  width: 100%;
}


.top-bar .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.top-bar-left {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  width: 100%;
  text-align: center;
}

.top-bar-text {
  font-weight: 400;
  font-size: clamp(0.65rem, 2vw, 0.85rem);
}

.top-bar-right {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(0.5rem, 2vw, 1.5rem);
  width: 100%;
}

.top-bar-center {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  width: 100%;
}

.top-bar-search {
  display: flex;
  align-items: center;
  background: var(--bg-white);
  border-radius: 999px;
  padding: 2px 2px;
  width: min(420px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.top-search-input {
  border: none;
  background: transparent;
  padding: 2px 4px;
  flex: 1;
  font-size: 0.85rem;
  outline: none;
}

.top-search-btn {
  border: none;
  background: transparent;
  padding: 2px 4px;
  cursor: pointer;
  color: #333;
}

.top-bar-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 4px 8px;
  border-radius: 6px;
}

.top-bar-phone:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

/* Tablet and Desktop Top Bar */
@media (min-width: 768px) {
  .top-bar .container {
    flex-direction: row;
    justify-content: space-between;
  }

  .top-bar-left {
    width: auto;
    justify-content: flex-start;
  }

  .top-bar-right {
    width: auto;
    justify-content: flex-end;
  }

  .top-bar-center {
    width: auto;
    justify-content: center;
  }
}

.top-bar-link {
  color: var(--text-white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
  transition: var(--transition);
  padding: 5px 10px;
  border-radius: 4px;
}

.top-bar-link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--secondary-color);
}

.top-bar-icon {
  font-size: 0.9rem;
}

/* Gold Saving Schemes in Top Bar */
.gold-saving-top {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  /* color: var(--primary-color); */
  color: #fff;
  font-weight: 200;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 4px;
  transition: var(--transition);
  text-decoration: none;
}

.gold-saving-top:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--secondary-color);
  text-decoration: none;
}

/* Metal Rates in Top Bar */
.metal-rates-top {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  /* color: var(--primary-color); */
  color: #fff;
  font-weight: 500;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 4px;
  transition: var(--transition);
}

.metal-rates-top:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--secondary-color);
}

.rates-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--bg-white);
  border: 2px solid var(--primary-color);
  border-radius: 8px;
  padding: 15px;
  min-width: 280px;
  box-shadow: 0 5px 15px rgba(229, 62, 62, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 2000;
}

.metal-rates-top:hover .rates-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.rates-header {
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
}

.rates-header h4 {
  color: var(--primary-color);
  font-size: 1rem;
  margin: 0 0 5px 0;
  font-weight: 600;
}

.last-updated {
  color: var(--text-light);
  font-size: 0.75rem;
}

.rates-dropdown .rate-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
}

.rates-dropdown .rate-item:last-child {
  border-bottom: none;
}

.metal-info {
  display: flex;
  flex-direction: column;
}

.rates-dropdown .metal-name {
  color: var(--text-dark);
  font-weight: 400;
  font-size: 0.9rem;
}

.metal-unit {
  color: var(--text-light);
  font-size: 0.75rem;
}

.price-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.rates-dropdown .metal-price {
  color: black;
  font-weight: 400;
  font-size: 0.9rem;
}

.price-change {
  font-size: 0.75rem;
  font-weight: 600;
}

.price-change.positive {
  color: #27ae60;
}

.price-change.negative {
  color: #e74c3c;
}

.rates-footer {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--border-color);
  text-align: center;
}

.rates-footer small {
  color: var(--text-light);
  font-size: 0.7rem;
}

/* Header */
.header {
  background: linear-gradient(135deg, #ffffff 0%, #fff8f0 100%);
  /*border-bottom: 2px solid var(--text-dark);*/
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(229, 62, 62, 0.15);
  width: 100%;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(0.75rem, 2vw, 1rem) 0;
  gap: 0.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 2vw, 0.75rem);
  font-size: clamp(1rem, 3vw, 1.5rem);
  font-weight: bold;
  color: var(--primary-color);
  text-decoration: none;
  letter-spacing: 0.0625rem;
  text-shadow: 1px 1px 2px rgba(229, 62, 62, 0.3);
  transition: var(--transition);
  flex-shrink: 0;
}

.logo:hover {
  color: var(--primary-color);
  text-shadow: 1px 1px 3px rgba(255, 215, 0, 0.5);
}

.logo-image {
  width: clamp(2.5rem, 8vw, 3.125rem);
  height: clamp(2.5rem, 8vw, 3.125rem);
  object-fit: contain;
  border-radius: 0.25rem;
}

.logo-text {
  font-size: clamp(1rem, 3vw, 1.5rem);
  font-weight: bold;
  letter-spacing: 0.0625rem;
  display: none;
}

/* Mobile Navigation - Hidden by default */
.nav {
  display: none;
}

/* Mobile menu when active */
.nav.active {
  display: flex;
  position: fixed;
  top: calc(var(--header-height, 8.75rem));
  left: 0;
  right: 0;
  background: var(--bg-white);
  flex-direction: column;
  padding: 1.25rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  gap: 0.9375rem;
  z-index: 999;
  max-height: calc(100vh - var(--header-height, 8.75rem));
  overflow-y: auto;
  width: 100%;
}

.nav-link {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s;
  position: relative;
  padding: 0.75rem;
  border-radius: 0.25rem;
  text-align: center;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
}

.nav-link:hover {
  color: var(--primary-color);
  background: var(--bg-light);
}

.nav-link.active {
  color: var(--primary-color);
  font-weight: 500;
  background: var(--bg-light);
}

.header-actions {
  display: flex;
  gap: clamp(0.5rem, 2vw, 0.9375rem);
  align-items: center;
  flex-shrink: 0;
}

.icon-btn {
  background: none;
  border: none;
  font-size: clamp(1rem, 3vw, 1.2rem);
  cursor: pointer;
  padding: 0.3125rem;
  transition: transform 0.2s;
  position: relative;
  min-width: 2.75rem;
  min-height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-btn:hover {
  transform: scale(1.1);
}

.badge {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--text-dark);
  color: var(--text-white);
  font-size: clamp(0.6rem, 1.5vw, 0.7rem);
  padding: 0.125rem 0.375rem;
  border-radius: 50%;
  min-width: 1.125rem;
  text-align: center;
  font-weight: bold;
  box-shadow: 0 2px 4px rgba(229, 62, 62, 0.3);
}

.mobile-toggle {
  display: none; /* Hidden by default on desktop */
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  font-size: clamp(1.25rem, 4vw, 1.5rem);
  cursor: pointer;
  min-width: 2.75rem;
  min-height: 2.75rem;
  padding: 0.3125rem;
  color: var(--text-dark);
}

.mobile-toggle svg {
  stroke: var(--text-dark);
}

/* Tablet - Show logo text */
@media (min-width: 768px) {
  .logo-text {
    display: inline;
  }
}

/* Desktop Navigation */
@media (min-width: 1024px) {
  .nav {
    display: flex;
    position: static;
    flex-direction: row;
    padding: 0;
    box-shadow: none;
    gap: clamp(1.5rem, 2vw, 1.875rem);
    background: transparent;
    max-height: none;
    overflow: visible;
    width: auto;
  }

  .nav-link {
    padding: 0;
    text-align: left;
  }

  .nav-link:hover {
    background: transparent;
  }

  .nav-link.active {
    background: transparent;
  }

  .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -0.3125rem;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
  }

  .mobile-toggle {
    display: none;
  }
}

/* Hero Slider */
/*.hero-slider {*/
/*  position: relative;*/
/*  height: clamp(14rem, 35vw, 26.25rem);*/
/*  overflow: hidden;*/
/*  width: 100%;*/
/*  margin: 0 auto;*/
/*}*/

.hero-slider {
  position: relative;
  height: clamp(14rem, 35vw, 26.25rem);
  overflow: hidden;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: var(--text-white);
  width: 90%;
  max-width: 100%;
  text-align: center;
}

.slide-title {
  font-size: clamp(1.5rem, 5vw, 3.5rem);
  font-weight: bold;
  margin-bottom: clamp(0.75rem, 2vw, 0.9375rem);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.slide-subtitle {
  font-size: clamp(0.9rem, 2.5vw, 1.25rem);
  margin-bottom: clamp(1.5rem, 3vw, 1.875rem);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: var(--text-white);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  width: clamp(2.5rem, 8vw, 3.125rem);
  height: clamp(2.5rem, 8vw, 3.125rem);
  border-radius: 50%;
  cursor: pointer;
  z-index: 3;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-prev {
  left: clamp(0.5rem, 2vw, 1.875rem);
}

.slider-next {
  right: clamp(0.5rem, 2vw, 1.875rem);
}

.slider-btn:hover {
  background-color: rgba(255, 255, 255, 0.3);
  border-color: var(--text-white);
}

.slider-dots {
  position: absolute;
  bottom: clamp(1rem, 3vw, 1.875rem);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: clamp(0.5rem, 1.5vw, 0.625rem);
  z-index: 3;
}

.dot {
  width: clamp(0.625rem, 2vw, 0.75rem);
  height: clamp(0.625rem, 2vw, 0.75rem);
  border-radius: 50%;
  border: 2px solid var(--text-white);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background-color: var(--text-white);
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 2;
  color: var(--text-white);
  width: 100%;
}

.slide-title {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.slide-subtitle {
  font-size: 1.25rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: var(--text-white);
  font-size: 2.5rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 3;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-prev {
  left: 30px;
}

.slider-next {
  right: 30px;
}

.slider-btn:hover {
  background-color: rgba(255, 255, 255, 0.3);
  border-color: var(--text-white);
}

.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--text-white);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background-color: var(--text-white);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, #d32f2f 100%);
  color: var(--text-white);
  border: none;
  box-shadow: 0 3px 8px rgba(229, 62, 62, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #d32f2f 0%, var(--primary-color) 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(229, 62, 62, 0.4);
}

.btn-secondary {
  background: var(--secondary-color);
  color: var(--text-dark);
  border: 2px solid var(--secondary-color);
  font-weight: 600;
}

.btn-secondary:hover {
  background: var(--text-white);
  color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--text-white);
}

.btn-add-cart {
  width: 100%;
  margin-top: 10px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #d32f2f 100%);
  color: var(--text-white);
  border: none;
  font-weight: 600;
  box-shadow: 0 3px 8px rgba(229, 62, 62, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 10px;
}

.product-card:hover .btn-add-cart {
  opacity: 1;
  transform: translateY(0);
}

.btn-add-cart:hover {
  background: linear-gradient(135deg, #d32f2f 0%, var(--primary-color) 100%);
  box-shadow: 0 5px 12px rgba(229, 62, 62, 0.4);
}

.btn-add-cart svg {
  width: 20px;
  height: 20px;
}

/* Promotional Banners */
.promo-banners {
  padding: 30px 0;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.promo-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 300px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.promo-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.promo-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.promo-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: var(--text-white);
}

.promo-title {
  font-size: 1.75rem;
  margin-bottom: 10px;
}

.promo-text {
  margin-bottom: 15px;
  font-size: 1.1rem;
}

/* Best Seller Collections Section */
.bestseller-collections-section {
  padding: 20px 0;
  background-color: var(--bg-light);
}

.bestseller-collections-section .section-header {
  text-align: center;
  margin-bottom: 30px;
}

.bestseller-collections-section .section-title {
  font-family: 'Playfair Display', serif;
  /* font-size: 2.5rem; */
  /* margin-bottom: 10px; */
  color: var(--text-dark);
  font-weight: 400;
}

.bestseller-collections-section .section-subtitle {
  /* font-size: 1.2rem; */
  color: var(--text-dark);
}

.bestseller-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 10rem), 1fr));
  gap: clamp(0.75rem, 2vw, 1.25rem);
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

@media (min-width: 480px) {
  .bestseller-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 12rem), 1fr));
  }
}

@media (min-width: 768px) {
  .bestseller-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr));
  }
}

@media (min-width: 1024px) {
  .bestseller-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.bestseller-item {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-decoration: none;
  transition: var(--transition);
  padding: 0;
  border-radius: clamp(0.75rem, 1.5vw, 0.875rem);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  width: 100%;
}

.bestseller-item:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
  text-decoration: none;
}

.bestseller-image-wrap {
  width: 100%;
  height: 0;
  padding-bottom: 125%;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.bestseller-item:hover .bestseller-image-wrap {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.bestseller-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: var(--transition);
}

.bestseller-item:hover .bestseller-image {
  transform: scale(1.08);
}

.bestseller-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: clamp(0.75rem, 2vw, 0.875rem) clamp(0.625rem, 1.5vw, 0.75rem) clamp(0.625rem, 1.5vw, 0.75rem);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.08));
  transition: all 0.25s ease;
}

.bestseller-item:hover .bestseller-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.18));
  padding-bottom: clamp(0.875rem, 2vw, 1rem);
}

.bestseller-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(0.85rem, 2vw, 1rem);
  color: #fff;
  text-align: left;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: clamp(0.25rem, 1vw, 0.3125rem);
}

.bestseller-link {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #f3f3f3;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  padding-bottom: 2px;
}

/* Filter Sidebar Styles */
.category-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 30px;
  align-items: start;
}

.filter-sidebar {
  background: var(--bg-light);
  border-radius: 8px;
  padding: 20px;
  position: sticky;
  top: 20px;
}

.filter-header {
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 15px;
  margin-bottom: 20px;
}

.filter-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}

.filter-group {
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 15px;
}

.filter-group:last-child {
  border-bottom: none;
}

.filter-group-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  background: none;
  border: none;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
}

.filter-group-header:hover {
  color: var(--primary-color);
}

.filter-icon {
  transition: transform 0.3s ease;
}

.filter-group-header.collapsed .filter-icon {
  transform: rotate(-90deg);
}

.filter-group-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0;
}

.filter-group-content.active {
  max-height: 500px;
  padding-bottom: 15px;
}

.filter-option {
  display: flex;
  align-items: center;
  padding: 8px 0;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.filter-option:hover {
  color: var(--primary-color);
}

.filter-checkbox {
  width: 18px;
  height: 18px;
  margin-right: 10px;
  cursor: pointer;
  accent-color: var(--primary-color);
}

.price-range {
  padding: 10px 0;
}

.price-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 15px;
}

.price-input-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.price-input-group label {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
}

.price-input {
  padding: 8px 10px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-size: 0.9rem;
  width: 100%;
}

.price-input:focus {
  outline: none;
  border-color: var(--primary-color);
}

.price-slider {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--bg-light);
  outline: none;
  -webkit-appearance: none;
}

.price-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary-color);
  cursor: pointer;
}

.price-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary-color);
  cursor: pointer;
  border: none;
}

.products-container {
  min-width: 0;
}

/* Collections Section */
.collections-section {
  padding: 20px 0;
  background-color: var(--bg-light);
}

.collections-section .section-header {
  text-align: center;
  margin-bottom: 20px;
}

/* .collections-section .section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: var(--text-dark);
  font-weight: 400;
} */

/* .collections-section .section-subtitle {
  font-size: 1.1rem;
  color: var(--text-dark);
} */

.section-header {
  text-align: center;
  margin-bottom: 30px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  /* margin-bottom: clamp(0.625rem, 1.5vw, 0.625rem); */
  color: var(--text-dark);
  font-weight: 400;
}

.section-subtitle {
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  color: var(--text-dark);
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 auto 0px;
  max-width: 420px;
}

.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, rgba(201, 162, 39, 0), var(--secondary-color), rgba(201, 162, 39, 0));
}

.section-divider-icon {
  width: 30px;
  height: 30px;
  display: inline-block;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.section-divider-icon--diamond {
  background-image: url('diamond.png');
}

.section-divider-icon--lotus {
  background-image: url('lotus.png');
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 13.75rem), 1fr));
  gap: clamp(1rem, 2vw, 1.25rem);
  align-items: stretch;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.collection-card {
  position: relative;
  height: 350px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.collection-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.collection-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: var(--transition);
  flex: 1;
}

.collection-card:hover .collection-image {
  transform: scale(1.1);
}

.collection-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: var(--text-white);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 120px;
}

.collection-name {
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-weight: 600;
  text-align: center;
}

.collection-link {
  color: var(--text-white);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  text-align: center;
  padding: 8px 0;
}

.collection-link:hover {
  color: var(--secondary-color);
}

/* Best Sellers Section */
.best-sellers-section {
  padding: 20px 0;
  background-color: var(--bg-light);
}

/* New Arrivals Section */
.new-arrivals-section {
  padding: 20px 0;
  background-color: var(--bg-light);
}

/* Featured Products */
.featured-products {
  padding: 30px 0;
  background-color: var(--bg-white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 10rem), 1fr));
  gap: clamp(0.75rem, 2vw, 1.5rem);
  margin-bottom: clamp(1.5rem, 3vw, 1.875rem);
  width: 100%;
}

@media (min-width: 480px) {
  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 12rem), 1fr));
  }
}

@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
  }
}

.product-card {
  position: relative;  
  background-color: var(--bg-white);
  border-radius: clamp(0.5rem, 1vw, 0.5rem);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: var(--transition);
  width: 100%;
}

.product-card-clickable {
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-0.3125rem);
  border-color: var(--border-color);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.product-image-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  overflow: hidden;
  background-color: var(--bg-light);
}

.product-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: var(--transition);
  pointer-events: none;
}

.product-card:hover .product-image {
  transform: scale(1.1);
}

.product-badge {
  position: absolute;
  top: clamp(0.5rem, 2vw, 0.9375rem);
  left: clamp(0.5rem, 2vw, 0.9375rem);
  background: linear-gradient(135deg, var(--secondary-color) 0%, #ffed4e 100%);
  color: var(--text-dark);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(255, 215, 0, 0.4);
}

.product-badge.sale {
  background: linear-gradient(135deg, var(--primary-color) 0%, #d32f2f 100%);
  color: var(--text-white);
  box-shadow: 0 2px 6px rgba(229, 62, 62, 0.4);
}

.product-actions {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transition: var(--transition);
}

.product-card:hover .product-actions {
  opacity: 1;
}

.action-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--bg-white);
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.action-btn:hover {
  background-color: var(--primary-color);
  color: var(--text-white);
  transform: scale(1.1);
  box-shadow: 0 3px 8px rgba(229, 62, 62, 0.3);
}

.action-btn svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.6;
}

.whatsapp-btn{
  color: #25D366;
}

.info-kicker {
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 8px;
    display: inline-block;
}
.product-info {
  padding: 20px;
  position: relative;
  min-height: 160px;
}

.product-name {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--text-dark);
  font-weight: 400;
}

.product-category {
  font-size: 0.875rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
}

.stars {
  color: var(--secondary-color);
  font-size: 0.875rem;
  text-shadow: 1px 1px 1px rgba(255, 215, 0, 0.3);
}

.rating-count {
  font-size: 0.875rem;
  color: var(--text-light);
}

.product-price {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.current-price {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  text-shadow: none;
}

.original-price {
  font-size: 1.1rem;
  color: var(--text-light);
  text-decoration: line-through;
}

.section-footer {
  text-align: center;
}

/* Features Section */
.features-section {
  padding: 20px 0;
  background-color: var(--bg-light);
  overflow: hidden;
  width: 100%;
}

.features-section .section-title {
  font-family: 'Playfair Display', serif;
  text-align: center;
  /* margin-bottom: 10px; */
  padding: 0 20px;
}

.features-carousel-wrapper {
  overflow: visible;
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.features-carousel {
  display: flex;
  gap: 30px;
  animation: scrollFeatures 25s linear infinite;
  width: fit-content;
  padding: 0 30px;
}

.features-carousel:hover {
  animation-play-state: paused;
}

@keyframes scrollFeatures {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.feature-item {
  flex: 0 0 240px;
  text-align: center;
  padding: 35px 25px;
  background: var(--bg-white);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.feature-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 110px;
}

.feature-icon svg {
  width: 90px;
  height: 90px;
  filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.feature-title {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--text-dark);
  font-weight: 600;
}

.feature-text {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* Testimonials */
.testimonials-section {
  padding: 20px 0;
}

.testimonials-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto 40px;
  min-height: 300px;
}

.testimonial-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  text-align: center;
  padding: 30px;
}

.testimonial-card.active {
  opacity: 1;
  position: relative;
}

.testimonial-rating {
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 30px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
}

.author-name {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.author-location {
  font-size: 0.875rem;
  color: var(--text-light);
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.testimonial-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--bg-light);
  border: 2px solid var(--border-color);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-btn:hover {
  background-color: var(--secondary-color);
  color: var(--text-white);
  border-color: var(--secondary-color);
}

.testimonial-dots {
  display: flex;
  gap: 10px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background-color: var(--border-color);
  cursor: pointer;
  transition: var(--transition);
}

.testimonial-dot.active {
  background-color: var(--secondary-color);
}

/* Newsletter */
.newsletter-section {
  padding: 30px 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, #d32f2f 100%);
  color: var(--text-white);
}

.newsletter-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-title {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.newsletter-subtitle {
  font-size: 1.1rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.newsletter-form {
  display: flex;
  justify-content: center;
}

.form-group {
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 500px;
}

.newsletter-input {
  flex: 1;
  padding: 15px 20px;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  outline: none;
}

.newsletter-input:focus {
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3);
}

/* Footer */
.main-footer {
  background-color: white;
  color: var(--primary-color);
  padding: clamp(1rem, 5vw, 0.125rem) 0 clamp(1rem, 2vw, 1.25rem);
  width: 100%;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: clamp(0.5rem, 3vw, 0.5rem);
  width: 100%;
}

@media (min-width: 480px) {
  .footer-content {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 12.5rem), 1fr));
  }
}

.footer-title {
  font-size: clamp(1.1rem, 2.5vw, 1.25rem);
  margin-bottom: clamp(1rem, 2vw, 1.25rem);
  color:var(--text-dark);
  text-shadow: 1px 1px 1px rgba(229, 62, 62, 0.2);
}

.footer-text {
  color:var(--text-dark);
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.25rem);
  font-size: clamp(0.875rem, 2vw, 1rem);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: clamp(0.5rem, 1.5vw, 0.625rem);
}

.footer-link {
  color:var(--text-dark);
  text-decoration: none;
  transition: var(--transition);
  font-size: clamp(0.875rem, 2vw, 1rem);
}

.footer-link:hover {
  color: var(--secondary-color);
}

.social-links {
  display: flex;
  gap: clamp(0.75rem, 2vw, 0.9375rem);
  flex-wrap: wrap;
}

.social-link {
  width: clamp(2.5rem, 6vw, 2.5rem);
  height: clamp(2.5rem, 6vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  text-decoration: none;
  color:var(--text-dark);
  transition: var(--transition);
}

.social-link:hover {
  background-color: var(--secondary-color);
  color: var(--text-dark);
  transform: translateY(-0.1875rem);
  box-shadow: 0 4px 8px rgba(255, 215, 0, 0.3);
}

.social-link svg {
  width: clamp(1.125rem, 3vw, 1.25rem);
  height: clamp(1.125rem, 3vw, 1.25rem);
  fill: currentColor;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: clamp(1rem, 2vw, 0.875rem);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.25rem);
  text-align: center;
  width: 100%;
}

.footer-bottom-center {
  display: inline-flex;   /* NOT flex — inline-flex */
  gap: 12px;
}

.footer-bottom-center a {
  display: inline-block;  /* prevents full-width stacking */
}

.store-badge-img {
  height: 45px;
  width: auto;
  display: block;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.copyright {
  color:var(--text-dark);
  font-size: clamp(0.8125rem, 2vw, 0.875rem);
}

.payment-methods {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(0.5rem, 1.5vw, 0.625rem);
}

.payment-text {
  color:var(--text-dark);
  font-size: 0.875rem;
}

.payment-icon {
  font-size: 1.5rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .collections-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .top-bar-left,
  .top-bar-right,
  .top-bar-center {
    justify-content: center;
    text-align: center;
  }

  .top-bar-text {
    font-size: 0.7rem;
  }

  .top-bar-search {
    width: 100%;
    max-width: 520px;
  }

  .top-bar-phone {
    font-size: 0.8rem;
  }
  /* Top Bar and Header styles removed - using mobile-first min-width approach defined above */

  /* CRITICAL: Hide ALL desktop navigation elements on mobile */
  .nav,
  .desktop-nav,
  .main-menu,
  .nav-menu,
  .menu,
  .navbar ul,
  .navbar li,
  .dropdown,
  .dropdown-menu,
  .nav-link {
    display: none !important;
  }

  /* Mobile menu when hamburger is clicked */
  .nav.active {
    display: flex !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-white);
    flex-direction: column;
    padding: 0;
    margin: 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    gap: 0;
    z-index: 999;
    width: 100%;
    max-height: none;
    min-height: unset !important;
    overflow: visible;
  }

  /* Show nav links only when mobile menu is active */
  .nav.active .nav-link {
    display: block !important;
    padding: 14px 20px;
    text-align: left;
    border-radius: 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--border-color);
    margin: 0;
    min-height: unset !important;
  }

  .nav.active .nav-link:last-child {
    border-bottom: none;
  }

  .nav.active .nav-link:hover {
    background: var(--bg-light);
  }

  .nav.active .nav-item.has-dropdown {
    width: 100%;
  }

  .nav.active .nav-item.has-dropdown .nav-link {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }

  .nav.active .nav-item.has-dropdown .nav-dropdown {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    padding: 0 16px 10px;
    background: transparent;
  }

  .nav.active .nav-item.has-dropdown.open .nav-dropdown {
    display: grid;
    grid-template-columns: 1fr;
  }

  .nav.active .nav-item.has-dropdown .dropdown-link,
  .nav.active .nav-item.has-dropdown .more-sub-link {
    min-height: unset;
    padding: 8px 6px;
  }

  /* Show hamburger menu button on mobile */
  .mobile-toggle {
    display: flex !important;
    position: relative;
    z-index: 1001;
  }

  .nav-link.active::after {
    display: none;
  }

  .header-actions {
    gap: 10px;
  }

  /* Mobile Header Layout: Hamburger | Logo (centered) | Icons */
  .header-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  /* Ensure header itself is positioned for absolute nav */
  .header {
    position: sticky;
  }

  /* Hamburger on the left */
  .mobile-toggle {
    order: -1;
    flex-shrink: 0;
    z-index: 1001;
  }

  /* Logo centered absolutely */
  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    z-index: 5;
    pointer-events: auto;
  }

  /* Hide logo text on very small screens */
  .logo-text {
    display: none;
  }

  /* Icons on the right */
  .header-actions {
    margin-left: auto;
    flex-shrink: 0;
    z-index: 10;
    display: flex;
    gap: 10px;
  }

  /* Ensure no floating menus */
  .nav:not(.active) {
    position: static !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }

  .slide-title {
    font-size: 2rem;
  }

  .slide-subtitle {
    font-size: 1rem;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 2rem;
  }

  .slider-prev {
    left: 15px;
  }

  .slider-next {
    right: 15px;
  }

  .collections-grid,
  .promo-grid,
  .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .bestseller-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .bestseller-name {
    font-size: 0.9rem;
  }

  .category-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .filter-sidebar {
    position: static;
    margin-bottom: 20px;
  }

  .collection-card {
    height: 300px;
  }

  .collection-overlay {
    padding: 20px;
    min-height: 100px;
  }

  .collection-name {
    font-size: 1.3rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .form-group {
    flex-direction: column;
  }

  .newsletter-input {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .testimonial-controls {
    flex-wrap: wrap;
  }

  /* Features Carousel Mobile */
  .features-carousel-wrapper {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
  }

  .feature-item {
    flex: 0 0 200px;
    padding: 28px 18px;
  }

  .feature-icon {
    font-size: 2.5rem;
    height: 95px;
  }

  .feature-icon svg {
    width: 75px;
    height: 75px;
  }

  .feature-title {
    font-size: 1rem;
  }

  .feature-text {
    font-size: 0.85rem;
  }

  @keyframes scrollFeatures {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 8px;
  }

  .hero-slider {
    height: 280px;
  }

  .slide-title {
    font-size: 1.5rem;
  }

  .slide-subtitle {
    font-size: 0.9rem;
  }

  .logo .logo-text {
    font-size: 0.8rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .bestseller-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .bestseller-name {
    font-size: 0.85rem;
  }

  .product-image-wrapper {
    height: 250px;
  }
}

/* ============================================
   MODAL STYLES
   ============================================ */

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.modal.active {
  display: flex;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-content {
  background: var(--bg-white);
  border-radius: 12px;
  width: 90%;
  max-width: 450px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.modal-header {
  padding: 25px 30px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-title {
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin: 0;
  text-shadow: 1px 1px 1px rgba(229, 62, 62, 0.2);
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--text-light);
  transition: var(--transition);
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  color: var(--primary-color);
}

.modal-body {
  padding: 30px;
}

/* Auth Forms */
.auth-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  border-bottom: 2px solid var(--border-color);
}

.auth-tab {
  flex: 1;
  padding: 12px;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
}

.auth-tab.active {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

.auth-form {
  display: none;
}

.auth-form.active {
  display: block;
}

.form-field {
  margin-bottom: 20px;
}

.form-field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-dark);
}

.form-field input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 1rem;
  transition: var(--transition);
}

.form-field input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

.form-actions {
  margin-top: 25px;
}

.form-actions .btn {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
}

.form-footer {
  margin-top: 20px;
  text-align: center;
  color: var(--text-light);
  font-size: 0.9rem;
}

.form-footer a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.form-footer a:hover {
  text-decoration: underline;
}

/* ============================================
   FULLSCREEN LOGIN MODAL (PNG Style)
   ============================================ */

.fullscreen-modal {
  display: none;
  position: fixed;
  top: var(--header-height, 140px);
  left: 0;
  width: 100vw;
  height: calc(100vh - var(--header-height, 140px));
  background: var(--bg-white);
  z-index: 999;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.fullscreen-modal.active {
  display: block;
}

/* Lock body scroll when modal is active */
body.modal-open {
  overflow: hidden;
}

body.modal-open .header,
body.modal-open .top-bar {
  position: fixed;
  width: 100%;
  z-index: 1000;
  top: 0;
}

body.modal-open .top-bar {
  top: 0;
}

body.modal-open .header {
  top: var(--top-bar-height, 40px);
}

.fullscreen-modal-content {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  position: relative;
}

.fullscreen-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2.5rem;
  color: #666;
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.fullscreen-modal-close:hover {
  color: #8B4789;
  transform: rotate(90deg);
}

.fullscreen-modal-body {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.login-heading {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: black;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 600;
  line-height: 1.3;
}

/* Golden Divider */
.golden-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 15px auto 10px;
  max-width: 300px;
  gap: 15px;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, #D4AF37, transparent);
}

.divider-emblem {
  flex-shrink: 0;
}

/* PNG Login Form */
.png-login-form {
  width: 100%;
}

.png-form-field {
  margin-bottom: 20px;
}

.png-input {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid var(--border-color);
  border-radius: 50px;
  font-size: 1rem;
  background: var(--bg-light);
  transition: all 0.3s ease;
  font-family: inherit;
}

.png-input:focus {
  outline: none;
  border-color: var(--border-color);
  background: var(--bg-white);
  box-shadow: 0 0 0 3px rgba(139, 71, 137, 0.1);
}

.png-input::placeholder {
  color: #999;
}

/* Auth Mode Toggle */
.auth-mode-switch {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 20px;
}

.auth-mode-btn {
  border: 1px solid var(--border-color);
  background: var(--bg-light);
  color: #333;
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.auth-mode-btn:hover {
  background: var(--bg-light);
}

.auth-mode-btn.active {
  background: var(--bg-white);
  border-color: var(--border-color);
  box-shadow: 0 0 0 2px rgba(139, 71, 137, 0.12);
}

.auth-mode-help {
  margin: 4px 0 0;
  text-align: center;
  color: #555;
  font-size: 0.92rem;
}

/* Button Group */
.png-button-group {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  margin-bottom: 25px;
}

.png-btn {
  padding: 16px 48px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  min-width: 200px;
}

.png-btn-primary {
  background: whitesmoke;
  color: black;
  font-weight: bold;
}

.png-btn-primary:hover {
  background: rgb(228, 74, 74);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 71, 137, 0.3);
}

.png-btn-secondary {
  background: var(--bg-light);
  color: black;
  border: 1px solid var(--border-color);
}

.png-btn-secondary:hover {
  background: var(--bg-light);
  transform: translateY(-2px);
}

/* Footer Link */
.png-footer-link {
  text-align: center;
  margin-top: 25px;
}

.create-account-link {
  color: black;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.create-account-link:hover {
  text-decoration: underline;
  color: #6d3669;
}

/* Account Profile Modal */
.account-modal-content {
  justify-content: flex-start;
  padding-top: 30px;
}

.account-modal-body {
  max-width: 960px;
}

.account-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.account-tab {
  border: 1px solid var(--border-color);
  background: var(--bg-light);
  color: #6c4b00;
  border-radius: 999px;
  padding: 9px 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.account-tab.active {
  background: linear-gradient(135deg, #c9a227, #e6c35c);
  color: #fff;
  border-color: var(--border-color);
}

.account-tab-panel {
  display: none;
}

.account-tab-panel.active {
  display: block;
}

.account-profile-form {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(201, 162, 39, 0.12);
  padding: 24px;
}

.account-profile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
}

.account-label {
  display: inline-block;
  margin-bottom: 6px;
  color: #6c4b00;
  font-size: 0.92rem;
  font-weight: 600;
}

.account-profile-form .png-input[readonly] {
  background: var(--bg-light);
  color: #555;
  cursor: not-allowed;
}

.account-textarea {
  min-height: 90px;
  resize: vertical;
  border-radius: 18px;
}

.account-profile-actions {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.account-profile-actions .png-btn {
  min-width: 180px;
}

.account-form-note {
  margin-top: 12px;
  margin-bottom: 10px;
  color: #7a6c57;
  font-size: 0.92rem;
}

.account-list-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(201, 162, 39, 0.12);
  padding: 20px;
}

.account-section-title {
  font-family: 'Playfair Display', serif;
  margin-bottom: 10px;
  color: #7a5600;
}

.account-address-subtitle {
  color: #8f7a52;
  margin-bottom: 16px;
  font-size: 0.92rem;
}

.account-address-list {
  margin-bottom: 18px;
}

.account-address-form {
  border: 1px solid var(--border-color);
  border-radius: 12px;
  background: var(--bg-light);
  padding: 16px;
}

.account-address-form-inline {
  margin-top: 8px;
  border-style: dashed;
}

.account-address-section + .account-address-section {
  margin-top: 12px;
}

.account-address-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.account-address-same-line {
  margin-top: 14px;
  margin-bottom: 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--accent-color);
}

.account-address-add-wrap {
  margin-top: 10px;
}

.account-address-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  margin-top: 12px;
}

.account-check-option {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #6a5632;
}

.account-check-option input {
  accent-color: #b68b26;
}

.account-items-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.account-item {
  display: flex;
  gap: 14px;
  align-items: center;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 10px;
  background: var(--bg-light);
}

.account-item-image {
  width: 74px;
  height: 74px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.account-item-details {
  flex: 1;
  min-width: 0;
}

.account-item-title {
  font-weight: 600;
  color: #2f2a1f;
  margin-bottom: 2px;
}

.account-item-meta {
  color: #7a6c57;
  font-size: 0.9rem;
}

.account-item-price {
  color: #c2901f;
  font-weight: 700;
  margin-top: 4px;
}

.account-item-actions {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.account-address-item .account-item-actions {
  min-width: 132px;
}

.account-address-type {
  font-size: 0.72rem;
  text-transform: uppercase;
  color: var(--accent-color);
  letter-spacing: 0.04em;
  margin-right: 8px;
}

.account-address-badge {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid var(--secondary-color);
  color: var(--accent-color);
  font-size: 0.74rem;
  font-weight: 600;
  vertical-align: middle;
  background: var(--bg-light);
}

.account-switch-form {
  width: 100%;
}

.account-switch-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 6px 8px;
  background: var(--bg-light);
}

.account-switch-label {
  font-size: 0.82rem;
  color: #7a5a16;
}

.account-switch {
  position: relative;
  width: 40px;
  height: 22px;
  display: inline-block;
}

.account-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.account-switch-slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-light);
  border-radius: 999px;
  transition: all 0.2s ease;
}

.account-switch-slider::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  left: 3px;
  top: 3px;
  border-radius: 50%;
  background: var(--bg-white);
  transition: transform 0.2s ease;
}

.account-switch input:checked + .account-switch-slider {
  background: var(--secondary-color);
}

.account-switch input:checked + .account-switch-slider::before {
  transform: translateX(18px);
}

.account-small-btn {
  border: 1px solid var(--border-color);
  color: var(--accent-color);
  background: var(--bg-white);
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
}

.account-small-btn.primary {
  background: var(--secondary-color);
  color: #fff;
  border-color: var(--secondary-color);
}

.account-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--secondary-color);
  border-radius: 8px;
  overflow: hidden;
}

.account-qty button {
  border: none;
  background: var(--bg-light);
  color: var(--accent-color);
  font-weight: 700;
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.account-qty span {
  min-width: 30px;
  text-align: center;
  font-weight: 600;
}

.account-empty-text {
  color: #8f7a52;
  margin-top: 12px;
}

.account-cart-total-row {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--accent-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--accent-color);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .fullscreen-modal {
    top: var(--header-height, 120px);
    height: calc(100vh - var(--header-height, 120px));
  }

  .login-heading {
    font-size: 1.5rem;
  }
  
  .png-button-group {
    width: 100%;
  }
  
  .png-btn {
    width: 100%;
    max-width: 300px;
  }
  
  .fullscreen-modal-close {
    top: 15px;
    right: 15px;
    font-size: 2rem;
    width: 40px;
    height: 40px;
  }

  .account-modal-body {
    max-width: 100%;
  }

  .account-profile-form {
    padding: 16px;
  }

  .account-profile-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .account-profile-actions .png-btn {
    width: 100%;
    max-width: none;
  }

  .account-tabs {
    gap: 8px;
  }

  .account-tab {
    font-size: 0.88rem;
    padding: 8px 12px;
  }

  .account-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .account-item-actions {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .account-address-checks {
    flex-direction: column;
    gap: 8px;
  }

  .account-address-item .account-item-actions {
    min-width: 0;
  }
}

@media (max-width: 480px) {
  .fullscreen-modal {
    top: var(--header-height, 100px);
    height: calc(100vh - var(--header-height, 100px));
  }

  .fullscreen-modal-content {
    padding: 30px 15px;
  }
  
  .login-heading {
    font-size: 1.3rem;
    margin-bottom: 20px;
  }
  
  .golden-divider {
    margin: 20px auto 30px;
    max-width: 250px;
  }
  
  .png-input {
    padding: 14px 18px;
    font-size: 0.95rem;
  }
  
  .png-btn {
    padding: 14px 20px;
    font-size: 0.95rem;
  }
}

/* Cart & Wishlist Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 450px;
  height: 100%;
  background: var(--bg-white);
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  z-index: 2000;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
}

.sidebar.active {
  right: 0;
}

.sidebar-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1999;
}

.sidebar-overlay.active {
  display: block;
}

.sidebar-header {
  padding: 25px 30px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sidebar-title {
  font-size: 1.5rem;
  color: var(--text-dark);
  font-weight: 400;
  margin: 0;
}

.sidebar-close {
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--text-light);
  transition: var(--transition);
}

.sidebar-close:hover {
  color: var(--primary-color);
}

.sidebar-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 30px;
}

.sidebar-footer {
  padding: 20px 30px;
  border-top: 1px solid var(--border-color);
  background: var(--bg-light);
}

/* Cart Items */
.cart-items,
.wishlist-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cart-item,
.wishlist-item {
  display: flex;
  gap: 15px;
  padding: 15px;
  background: var(--bg-light);
  border-radius: 8px;
  position: relative;
}

.item-image {
  width: 80px;
  height: 80px;
  border-radius: 6px;
  object-fit: cover;
  background: var(--border-color);
}

.item-details {
  flex: 1;
}

.item-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.item-category {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 8px;
}

.item-price {
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--text-dark);
  text-shadow: 1px 1px 1px rgba(229, 62, 62, 0.2);
}

.item-quantity {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.qty-btn {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border-color);
  background: var(--bg-white);
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.qty-btn:hover {
  background: var(--primary-color);
  color: var(--text-white);
  border-color: var(--primary-color);
}

.qty-value {
  font-weight: 600;
  min-width: 30px;
  text-align: center;
}

.item-remove {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--text-light);
  transition: var(--transition);
}

.item-remove:hover {
  color: #e74c3c;
}

/* Cart Summary */
.cart-summary {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
}

.summary-row.total {
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--text-dark);
  padding-top: 15px;
  border-top: 2px solid var(--border-color);
  text-shadow: 1px 1px 1px rgba(229, 62, 62, 0.2);
}

.checkout-btn {
  width: 100%;
  margin-top: 15px;
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 60px 20px;
}

.empty-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  opacity: 0.3;
}

.empty-text {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 25px;
}

/* Responsive Modal & Sidebar */
@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    max-width: none;
  }

  .modal-body,
  .sidebar-body {
    padding: 20px;
  }

  .sidebar {
    max-width: 100%;
  }

  .cart-item,
  .wishlist-item {
    padding: 12px;
  }

  .item-image {
    width: 70px;
    height: 70px;
  }
}


/* Category Page Styles */
@media (max-width: 768px) {
  .page-title {
    font-size: 2rem;
  }

  .page-subtitle {
    font-size: 1rem;
  }
}


/* Category Page Styles */
.category-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, #d32f2f 100%);
  color: var(--text-white);
  padding: 10px 0;
  text-align: center;
}

.category-header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.category-header p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Product Grid for Categories */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

/* Category Page Styles */
.category-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, #d32f2f 100%);
  color: var(--text-white);
  padding: 0px 0;
  text-align: center;
}

.category-header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.category-header p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Product Grid for Categories */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 20px;
}

/* Section Styles */
.section {
  padding: 0px 0;
}

/* Responsive for Category Pages */
@media (max-width: 768px) {
  .category-header h1 {
    font-size: 2rem;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
  }

  .product-name {
    font-size: 0.9rem;
  }

  .product-price {
    font-size: 1rem;
  }
}

/* ============================================
   GOLD SAVING SCHEMES PAGE STYLES
   ============================================ */

/* Language Toggle */
.language-toggle {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
  position: relative;
  z-index: 3;
}

.lang-btn {
  background: rgba(255, 255, 255, 0.2);
  color: var(--text-white);
  border: 2px solid var(--text-white);
  padding: 10px 25px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
  font-size: 1rem;
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.lang-btn.active {
  background: var(--secondary-color);
  color: var(--text-dark);
  border-color: var(--secondary-color);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

/* Content Switching */
.content-english,
.content-marathi {
  display: none;
}

.content-english.active,
.content-marathi.active {
  display: block;
}

/* Schemes Header */
.schemes-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, #d32f2f 100%);
  color: var(--text-white);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.schemes-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="gold-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="rgba(255,215,0,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23gold-pattern)"/></svg>');
  opacity: 0.3;
}

.schemes-header h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.schemes-title {
  margin: 30px 0;
  position: relative;
  z-index: 2;
}

.hindi-title {
  display: inline-block;
  background: var(--secondary-color);
  color: var(--text-dark);
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 2rem;
  font-weight: bold;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
  border: 3px solid var(--text-white);
}

.schemes-header p {
  font-size: 1.2rem;
  opacity: 0.9;
  position: relative;
  z-index: 2;
}

/* Schemes Content */
.schemes-content {
  padding: 60px 0;
  background: var(--bg-light);
}

/* Scheme Table Section */
.scheme-table-section {
  margin-bottom: 50px;
}

.scheme-table-wrapper {
  background: var(--bg-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(229, 62, 62, 0.1);
  border: 2px solid var(--primary-color);
}

.scheme-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.1rem;
}

.scheme-table thead {
  background: var(--primary-color);
  color: var(--text-white);
}

.scheme-table th,
.scheme-table td {
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.scheme-table th {
  font-weight: 600;
  font-size: 1.2rem;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}

.scheme-table tbody tr {
  background: var(--bg-white);
  transition: var(--transition);
}

.scheme-table tbody tr:hover {
  background: var(--bg-light);
}

.scheme-table tbody tr:nth-child(even) {
  background: var(--bg-light);
}

.scheme-table tbody tr:nth-child(even):hover {
  background: var(--bg-light);
}

.highlight-row {
  background: linear-gradient(135deg, var(--secondary-color), #ffed4e) !important;
  font-weight: bold;
  color: var(--text-dark) !important;
}

.highlight-row:hover {
  background: linear-gradient(135deg, #ffed4e, var(--secondary-color)) !important;
}

.highlight-row td {
  text-shadow: 1px 1px 1px rgba(229, 62, 62, 0.2);
}

/* Terms Section */
.terms-section {
  background: var(--bg-white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(229, 62, 62, 0.1);
  border: 2px solid var(--secondary-color);
  margin-bottom: 40px;
}

.terms-title {
  text-align: center;
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 30px;
  font-weight: bold;
  text-shadow: 1px 1px 1px rgba(255, 215, 0, 0.3);
}

.terms-list {
  list-style: none;
  padding: 0;
}

.terms-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
  position: relative;
  padding-left: 30px;
  line-height: 1.6;
  color: var(--text-dark);
}

.terms-list li:last-child {
  border-bottom: none;
}

.terms-list li::before {
  content: '●';
  color: var(--secondary-color);
  font-size: 1.2rem;
  position: absolute;
  left: 0;
  top: 12px;
}

/* Contact Section */
.contact-section {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  background: var(--bg-white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(229, 62, 62, 0.1);
  border: 2px solid var(--primary-color);
  margin-bottom: 40px;
}

.contact-info h4 {
  color: var(--secondary-color);
  font-size: 1.3rem;
  margin-bottom: 20px;
  text-shadow: 1px 1px 1px rgba(229, 62, 62, 0.2);
}

.proprietor-info p {
  margin: 8px 0;
  color: var(--text-dark);
}

.phone-number {
  font-size: 0.85rem;
  font-weight: 400;
  color: white;
  text-shadow: 1px 1px 1px rgba(255, 215, 0, 0.3);
}

.visit-us {
  text-align: center;
}

.visit-us p {
  margin-bottom: 15px;
  color: var(--text-dark);
  font-weight: 600;
}

.social-icons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.social-icons span {
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  padding: 5px 10px;
  border-radius: 4px;
  background: rgba(229, 62, 62, 0.1);
}

.social-icons span:hover {
  transform: scale(1.05);
  background: rgba(229, 62, 62, 0.2);
}

.social-icon-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e53e3e;
  text-decoration: none;
  font-size: 1rem;
  padding: 5px 10px;
  border-radius: 4px;
  background: rgba(229, 62, 62, 0.1);
  transition: var(--transition);
}

.social-icon-link:hover {
  color: var(--primary-color);
  transform: scale(1.05);
  background: rgba(229, 62, 62, 0.2);
}

.social-icon-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Additional Schemes */
.additional-schemes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.scheme-card {
  background: var(--bg-white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(229, 62, 62, 0.1);
  border: 2px solid var(--secondary-color);
  text-align: center;
}

.scheme-card h4 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.scheme-details {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
}

.detail-row:last-child {
  border-bottom: none;
}

.detail-label {
  font-weight: 600;
  color: var(--text-dark);
}

.detail-value {
  font-weight: bold;
  color: var(--secondary-color);
  text-shadow: 1px 1px 1px rgba(229, 62, 62, 0.2);
}

/* Responsive Design for Schemes Page */
@media (max-width: 768px) {
  .language-toggle {
    gap: 5px;
    margin-bottom: 20px;
  }

  .lang-btn {
    padding: 8px 20px;
    font-size: 0.9rem;
  }

  .schemes-header {
    padding: 60px 0;
  }

  .schemes-header h1 {
    font-size: 2rem;
  }

  .hindi-title {
    font-size: 1.5rem;
    padding: 12px 30px;
  }

  .scheme-table {
    font-size: 0.9rem;
  }

  .scheme-table th,
  .scheme-table td {
    padding: 15px 10px;
  }

  .contact-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .terms-section,
  .contact-section,
  .scheme-card {
    padding: 25px;
  }

  .phone-number {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .schemes-header h1 {
    font-size: 1.5rem;
  }

  .hindi-title {
    font-size: 1.2rem;
    padding: 10px 20px;
  }

  .scheme-table {
    font-size: 0.8rem;
  }

  .scheme-table th,
  .scheme-table td {
    padding: 10px 5px;
  }

  .terms-list li {
    font-size: 0.9rem;
    padding-left: 25px;
  }

  .social-icons span {
    font-size: 1.5rem;
  }
}


/* ========================================
   TOP BAR SEARCH & PHONE - NEW LAYOUT
   ======================================== */

/* Top Bar 3-Column Layout */
.top-bar .container {
    padding: 0 20px;
}

.top-bar-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(0.5rem, 2vw, 0.75rem);
    min-height: auto;
    width: 100%;
}

@media (min-width: 768px) {
    .top-bar-layout {
        flex-direction: row;
        justify-content: space-between;
        min-height: 2.8125rem;
    }
}

.top-bar-left {
    flex: 0 0 auto;
    width: 100%;
    display: flex;
    justify-content: center;
}

@media (min-width: 768px) {
    .top-bar-left {
        width: auto;
        justify-content: flex-start;
    }
}

.top-bar-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.75rem, 2vw, 0.9375rem);
    flex: 0 0 auto;
    width: 100%;
}

@media (min-width: 768px) {
    .top-bar-center {
        width: auto;
        flex: 1;
    }
}

.top-bar-right {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: clamp(0.5rem, 2vw, 1.25rem);
    flex: 0 0 auto;
    width: 100%;
}

@media (min-width: 768px) {
    .top-bar-right {
        width: auto;
        justify-content: flex-end;
        margin-left: auto;
    }
}

/* Phone Number Styling */
.top-bar-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.375rem, 1vw, 0.375rem);
    text-decoration: none;
    color: #333;
    font-size: clamp(0.8125rem, 2vw, 0.875rem);
    font-weight: 500;
    white-space: nowrap;
    transition: color 0.3s ease;
    flex-wrap: wrap;
}

.top-bar-phone:hover {
    color: #b8860b;
}

.phone-icon {
    width: 20px;
    height: 20px;
    background-color: white;
    border-radius: 50%;
    font-size: small;

    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-number {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Search Bar Styling */
.top-bar-search {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 100%;
}

.top-search-input {
    width: 100%;
    height: clamp(2.125rem, 5vw, 2.375rem);
    padding: clamp(0.5rem, 1.5vw, 0.5rem) clamp(2.5rem, 6vw, 2.8125rem) clamp(0.5rem, 1.5vw, 0.5rem) clamp(0.875rem, 2vw, 1rem);
    border: 1px solid var(--border-color);
    border-radius: clamp(1.25rem, 3vw, 1.25rem);
    font-size: clamp(0.8125rem, 2vw, 0.875rem);
    outline: none;
    background: var(--bg-white);
    color: #000;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.top-search-input::placeholder {
    color: #999;
}

.top-search-input:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
}

.top-search-btn {
    position: absolute;
    right: 0.25rem;
    top: 50%;
    transform: translateY(-50%);
    width: clamp(1.75rem, 4vw, 2rem);
    height: clamp(1.75rem, 4vw, 2rem);
    border: none;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.top-search-btn:hover {
    background: var(--secondary-color);
}

.top-search-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.top-search-btn svg {
    stroke: #fff;
    width: clamp(0.875rem, 2vw, 1.125rem);
    height: clamp(0.875rem, 2vw, 1.125rem);
}

@media (min-width: 768px) {
    .top-bar-search {
        width: auto;
        max-width: 17.5rem;
    }

    .top-search-input {
        width: 17.5rem;
    }
}

/* ========================================
   RESPONSIVE DESIGN - CONSOLIDATED
   ======================================== */

/* Remove conflicting max-width media queries - using min-width mobile-first approach defined above */
    
    .top-bar-search {
        width: 100%;
    }
    
    .top-search-input {
        width: 100%;
        max-width: 100%;
    }
    
    .top-bar-right {
        flex-direction: row;
        gap: 8px;
    }
    
    .gold-saving-top,
    .metal-rates-top {
        font-size: 0.875rem;
    }


/* Remove conflicting Small Mobile max-width media query - using min-width mobile-first approach */


/* Footer bottom styles already defined above with mobile-first approach */

.app-store-badge:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.store-badge-img {
    height: 40px;
    width: auto;
    display: block;
}

/* Right Column - Payment Icons */
.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}

.footer-bottom-right .payment-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-right: 8px;
    white-space: nowrap;
}

.payment-icons-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.payment-methods-img {
    height: 85px;
    width: 285px;
    display: block;
    transition: transform 0.3s ease;
}


/* Legacy support for individual payment icons (if needed) */
.payment-icon-img {
    height: 28px;
    width: auto;
    display: block;
    border-radius: 4px;
    background: var(--bg-white);
    padding: 4px;
    transition: transform 0.3s ease;
}

.payment-icon-img:hover {
    transform: scale(1.1);
}

/* ========================================
   RESPONSIVE DESIGN - FOOTER BOTTOM
   ======================================== */

/* Tablet View */
@media (max-width: 1024px) {
    .footer-bottom {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        gap: 15px;
    }
    
    .footer-bottom-left {
        flex: 1 1 100%;
        order: 1;
    }
    
    .footer-bottom-center {
        flex: 1 1 100%;
        order: 2;
        justify-content: center;
    }
    
    .footer-bottom-right {
        flex: 1 1 100%;
        order: 3;
        justify-content: center;
    }
}

/* Mobile View */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        padding-top: 15px;
        margin-top: 20px;
    }
    
    .footer-bottom-left,
    .footer-bottom-center,
    .footer-bottom-right {
        width: 100%;
        justify-content: center;
    }
    
    .footer-bottom-left .copyright {
        font-size: 13px;
        text-align: center;
    }
    
    .store-badge-img {
        height: 36px;
    }
    
    .payment-methods-img {
        height: 28px;
    }
    
    .payment-icon-img {
        height: 24px;
    }
    
    .footer-bottom-right {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-bottom-right .payment-text {
        margin-right: 0;
        margin-bottom: 5px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .footer-bottom {
        gap: 12px;
    }
    
    .footer-bottom-center {
        flex-direction: row;
        gap: 8px;
    }
    
    .store-badge-img {
        height: 32px;
    }
    
    .payment-methods-img {
        height: 70px;
    }
    
    .payment-icons-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px;
    }
    
    .payment-icon-img {
        height: 22px;
    }
}


/* ========================================
   CATEGORY INTRODUCTION SECTION
   ======================================== */

/* Import Playfair Display font */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&display=swap');

/* Category Introduction Container */
.category-intro {
    background: var(--bg-white);
    padding: 15px 20px;
    text-align: center;
}

.category-intro-content {
    max-width: 100%;
    margin: 0 auto;
}

/* Category Heading */
.category-intro-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 600;
    color: #3a1f2b;
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.2;
}

/* Category Description */
.category-intro-description {
    font-family: inherit;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #222;
    text-align: center;
    width: 80%;
    max-width: 100%;
    margin: 0 auto 1rem auto;
    padding: 0 20px;
}

/* ========================================
   RESPONSIVE DESIGN - CATEGORY INTRO
   ======================================== */

/* Tablet View */
@media (max-width: 1024px) {
    .category-intro {
        padding: 50px 20px;
    }
    
    .category-intro-heading {
        font-size: 2.4rem;
    }
    
    .category-intro-description {
        font-size: 1.02rem;
    }
}

/* Mobile View */
@media (max-width: 768px) {
    .category-intro {
        padding: 40px 15px;
    }
    
    .category-intro-heading {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .category-intro-description {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .category-intro {
        padding: 30px 15px;
    }
    
    .category-intro-heading {
        font-size: 1.8rem;
    }
    
    .category-intro-description {
        font-size: 0.95rem;
    }
}


/* ========================================
   FOOTER DIVIDER LINE
   ======================================== */

/* Divider line above footer */
.main-footer::before {
    content: '';
    display: block;
    width: 100%;
    max-width: 1400px;
    height: 1px;
    background: linear-gradient(to right, 
        transparent 0%, 
        #d4af37 20%, 
        #d4af37 80%, 
        transparent 100%);
    margin: 40px auto 30px auto;
}

/* ========================================
   RESPONSIVE DESIGN - FOOTER DIVIDER
   ======================================== */

/* Tablet View */
@media (max-width: 1024px) {
    .main-footer::before {
        margin: 35px auto 25px auto;
    }
}

/* Mobile View */
@media (max-width: 768px) {
    .main-footer::before {
        margin: 30px auto 20px auto;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .main-footer::before {
        margin: 25px auto 20px auto;
    }
}


/* Blog + Contact pages */

.blog-section{
  padding: 20px 0;
  background-color: var(--bg-light);
}
.blog-page {
  background: linear-gradient(180deg, #f8f7f4 0%, #ffffff 28%);
  padding: 36px 0 60px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.blog-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(24, 18, 12, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-color);
  box-shadow: 0 16px 30px rgba(28, 21, 12, 0.12);
}

.blog-card-media {
  height: 220px;
  background: linear-gradient(135deg, #fbf8f2, #f6f2ea);
  overflow: hidden;
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-card-body {
  padding: 16px 18px 20px;
  display: grid;
  gap: 8px;
}

.blog-card-title {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
}

.blog-card-excerpt {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-dark);
}

.blog-card-link {
  align-self: flex-start;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  color: var(--accent-color);
  text-align: center;
}

.blog-card-link:hover {
  color: var(--accent-color);
}

.blog-empty {
  text-align: center;
  color: var(--accent-color);
  font-size: 14px;
}


.blog-card-clickable {
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card-clickable:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.blog-detail-container{
  max-width: 1000px;
  margin: 0 auto;
}


.blog-detail {
  /* background: linear-gradient(180deg, #f8f7f4 0%, #ffffff 28%); */
  padding: 10px 0 10px;
}

.blog-detail-card {
  background: var(--bg-white);
  border-radius: 18px;
  padding: 26px;
}

.blog-detail-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.1rem);
  padding: 0 40px;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.blog-detail-media {
  margin-bottom: 18px;
  border-radius: 14px;
  overflow: hidden;
}

.blog-detail-media img {
  width: 100%;
  display: block;
}

.blog-detail-content {
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-dark);
  padding: 0 40px;
}

.btn-back {
  background: none;
  border: none;
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  margin-bottom: 15px;
}

.btn-back:hover {
  text-decoration: underline;
}

.blog-detail-date{
  font-size: 14px;
  color: var(--accent-color);
  margin-bottom: 20px;
  letter-spacing: 0.2em;
}

.contact-page {
  background: linear-gradient(180deg, #f8f7f4 0%, #ffffff 28%);
}

.contact-hero {
  background: linear-gradient(135deg, #d9c3a1, var(--accent-color));
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.contact-hero h1 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 8px;
}

.contact-hero p {
  font-size: 15px;
  opacity: 0.95;
}

.contact-section {
  padding: 40px 0 60px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-card {
  background: var(--bg-white);
  padding: 18px;
  border-radius: 14px;
  border: 1px solid var(--border-color);
  box-shadow: 0 8px 18px rgba(24, 18, 12, 0.05);
}

.contact-card h4 {
  margin-bottom: 8px;
  color: var(--accent-color);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-card a {
  color: var(--text-dark);
  text-decoration: none;
}

.contact-card a:hover {
  color: var(--accent-color);
}

.contact-form {
  background: var(--bg-white);
  padding: 22px;
  border-radius: 14px;
  border: 1px solid var(--border-color);
  box-shadow: 0 8px 18px rgba(24, 18, 12, 0.05);
}

.contact-form h3 {
  margin-bottom: 12px;
  color: var(--text-dark);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  background: var(--bg-light);
  font-size: 14px;
}

.contact-form button {
  width: 100%;
  padding: 12px 14px;
  background: var(--accent-color);
  border: none;
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
}

.contact-form button:hover {
  background: var(--accent-color);
}

/* Contact Modern Layout */
.contact-modern {
  background: linear-gradient(180deg, #f8f7f4 0%, #ffffff 30%);
}

.contact-hero-modern {
  padding: 40px 0 30px;
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 24px;
  align-items: center;
}

.contact-hero-copy {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 22px;
  padding: 28px 30px;
  box-shadow: 0 12px 26px rgba(24, 19, 12, 0.06);
}

.contact-kicker {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 10px;
  font-weight: 600;
}

.contact-hero-copy h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  margin-bottom: 10px;
  color: var(--text-dark);
}

.contact-hero-copy p {
  color: var(--text-dark);
  line-height: 1.8;
  font-size: 14px;
  margin-bottom: 16px;
}

.contact-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border-color);
  color: var(--text-dark);
  text-decoration: none;
  font-size: 12px;
  background: var(--bg-light);
}

.contact-pill:hover {
  border-color: var(--secondary-color);
  color: var(--accent-color);
}

.contact-hero-card {
  background: var(--text-dark);
  color: #f6f2ea;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 14px 26px rgba(18, 13, 8, 0.2);
}

.contact-hero-card h3 {
  margin-bottom: 10px;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-hero-card p {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 14px;
}

.contact-hero-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.contact-hero-meta span {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-color);
  margin-bottom: 4px;
}

.contact-hero-meta strong {
  font-size: 13px;
  color: #fff;
}

.contact-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  background: var(--accent-color);
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-hero-btn:hover {
  background: var(--accent-color);
}

.contact-main {
  padding: 24px 0 60px;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: start;
}

.contact-info-panel {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 10px 22px rgba(24, 19, 12, 0.05);
}

.contact-info-panel h2 {
  margin-bottom: 8px;
  color: var(--text-dark);
  font-size: 20px;
}

.contact-info-subtitle {
  color: var(--text-dark);
  font-size: 13px;
  margin-bottom: 16px;
}

.contact-info-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-info-card {
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 14px 16px;
  background: var(--bg-light);
}

.contact-info-card h4 {
  margin-bottom: 6px;
  font-size: 13px;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.contact-info-card p {
  margin: 0;
  font-size: 13px;
  color: var(--text-dark);
  line-height: 1.6;
}

.contact-form-panel {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 10px 22px rgba(24, 19, 12, 0.05);
}

.contact-form-panel h3 {
  margin-bottom: 12px;
  color: var(--text-dark);
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
  font-size: 12px;
  color: var(--text-dark);
}

.contact-field input,
.contact-field textarea {
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 14px;
}

.contact-form-panel button {
  width: 100%;
  padding: 12px 14px;
  border: 0;
  background: var(--accent-color);
  color: #fff;
  border-radius: 12px;
  font-size: 14px;
  cursor: pointer;
}

.contact-form-panel button:hover {
  background: var(--accent-color);
}

.contact-form-note {
  margin-top: 10px;
  font-size: 12px;
  color: var(--text-dark);
}

@media (max-width: 1024px) {
  .contact-hero-grid,
  .contact-main-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-cards {
    grid-template-columns: 1fr;
  }
}

.btn-whatsapp {
  display: inline-block;
  background: #25d366;
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 13px;
}

.map-section iframe {
  width: 100%;
  height: 350px;
  border: 0;
  border-radius: 14px;
}

@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .contact-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .bestseller-grid {
    grid-template-columns: 1fr;
  }
}

/* Global responsive helpers */
img {
  max-width: 100%;
  height: auto;
}

.table-responsive {
  overflow-x: auto;
}

@media (max-width: 1024px) {
  .products-grid,
  .bestseller-grid,
  .collections-grid,
  .new-arrivals-section .products-grid,
  .best-sellers-section .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .products-grid,
  .bestseller-grid,
  .collections-grid,
  .new-arrivals-section .products-grid,
  .best-sellers-section .products-grid {
    grid-template-columns: 1fr;
  }
}



/* ============================================
   MOBILE OVERHAUL - PREMIUM CLASSY LOOK
   Target: All screens ≤768px, especially iPhone
   ============================================ */

.bestseller-name-mobile{
  display: none;
}

@media (max-width: 768px) {

  /* ── TOP BAR ── */
  .top-bar {
    padding: 6px 12px;
  }

  .top-bar .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0;
  }

  .top-bar-left {
    display: flex;
    width: auto;
    flex: 1;
    overflow: hidden;
  }

  .top-bar-text {
    font-size: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    width: 100%;
  }

  .top-bar-center {
    display: none; /* search moves below header */
  }

  .top-bar-right {
    display: flex;
    width: auto;
    flex-shrink: 0;
    gap: 8px;
    margin-left: 8px;
  }

  .gold-saving-top { display: none; }

  .metal-rates-top {
    font-size: 10px;
    padding: 3px 8px;
    gap: 4px;
    font-weight: 500;
  }

  .metal-rates-top .top-bar-icon { font-size: 0.75rem; }

  .rates-dropdown {
    right: -10px;
    left: auto;
    min-width: 240px;
  }


  /* ── HEADER ── */
  .header-content {
    padding: 8px 0;
    position: relative;
  }

  .mobile-toggle {
    display: flex !important;
    order: 1;
    flex-shrink: 0;
  }

  .logo {
    position: static !important;
    transform: none !important;
    order: 2;
    flex: 1;
    justify-content: center;
    gap: 6px;
  }

  .logo-image {
    width: 36px;
    height: 36px;
  }

  /* Show a short logo text on mobile */
  .logo-text {
    display: block !important;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--text-dark);
    white-space: nowrap;
  }

  .header-actions {
    order: 3;
    flex-shrink: 0;
    margin-left: 0;
    gap: 8px;
  }

  .icon-btn {
    min-width: 36px;
    min-height: 36px;
    font-size: 1rem;
    padding: 4px;
  }

  .badge {
    font-size: 9px;
    min-width: 16px;
    padding: 1px 4px;
    top: -2px;
    right: -2px;
  }


  /* ── MOBILE SEARCH BAR (below header) ── */
  .header::after {
    content: '';
    display: none;
  }

  /* Insert search bar via a separate div — add this div in header.php */
  .mobile-search-bar {
    display: block;
    background: var(--bg-white);
    padding: 8px 12px 10px;
    border-bottom: 1px solid var(--border-color);
  }

  .mobile-search-bar .top-bar-search {
    display: flex !important;
    width: 100%;
    max-width: 100%;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 999px;
    padding: 1px 4px;
  }

  .mobile-search-bar .top-search-input {
    width: 100%;
    height: 36px;
    font-size: 13px;
    background: transparent;
    border: none;
    padding: 6px 10px;
  }

  .mobile-search-bar .top-search-btn {
    width: 30px;
    height: 30px;
  }


  /* ── METAL RATES TICKER (mobile full-width strip) ── */
  .metal-rates-ticker {
    display: flex;
    gap: 0;
    overflow-x: auto;
    background: #1a1a1a;
    padding: 8px 12px;
    scrollbar-width: none;
  }

  .metal-rates-ticker::-webkit-scrollbar { display: none; }

  .metal-rate-chip {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 14px;
    border-right: 1px solid #333;
    gap: 1px;
  }

  .metal-rate-chip:last-child { border-right: none; }

  .metal-rate-chip .chip-label {
    font-size: 9px;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    white-space: nowrap;
  }

  .metal-rate-chip .chip-price {
    font-size: 12px;
    color: #fff;
    font-weight: 600;
    white-space: nowrap;
  }

  .metal-rate-chip .chip-unit {
    font-size: 8px;
    color: #666;
  }


  /* ── HERO SLIDER ── */
  .hero-slider {
    height: 220px;
  }

  .slide-content {
    left: 16px;
    transform: translateY(-50%);
    text-align: left;
    width: auto;
    max-width: 65%;
  }

  .slide-title {
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 8px;
  }

  .slide-subtitle {
    font-size: 11px;
    margin-bottom: 12px;
    opacity: 0.9;
  }

  .btn {
    padding: 8px 18px;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .slider-btn {
    width: 32px;
    height: 32px;
    font-size: 1.2rem;
  }

  .slider-prev { left: 10px; }
  .slider-next { right: 10px; }

  .slider-dots { bottom: 12px; }
  .dot { width: 6px; height: 6px; }


  /* ── SECTION HEADERS ── */
  .section-header {
    padding: 0 4px;
    margin-bottom: 12px;
  }

  .section-title {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.01em;
  }

  .section-subtitle {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 2px;
  }

  .section-divider {
    margin-bottom: 8px;
  }


  /* ── BEST SELLER COLLECTIONS (horizontal scroll circles) ── */
  .bestseller-collections-section {
    padding: 16px 0 4px;
  }

  /* .bestseller-collections-section .section-header {
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
  } */

  .bestseller-grid {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto;
    gap: 12px;
    padding: 0 16px 16px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .bestseller-grid::-webkit-scrollbar { display: none; }

  .bestseller-item {
    flex-shrink: 0 !important;
    /* width: 114px !important; */
    width: 124px !important;
    border-radius: 0 !important;
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 0;
  }

  .bestseller-item:hover { transform: none; }

  .bestseller-image-wrap {
    width: 120px !important;
    height: 120px !important;
    padding-bottom: 0 !important;
    border-radius: 50% !important;
    border: 2.5px solid var(--secondary-color) !important;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(255,215,0,0.2);
  }

  .bestseller-image {
    position: static !important;
    width: 120px;
    height: 120px;
    background-size: cover;
    background-position: center;
    transform: none !important;
  }

  .bestseller-overlay {
    display: none !important;
  }

  /* Category name below circle */
  .bestseller-item::after {
    content: attr(data-name);
    font-size: 10px;
    color: var(--text-dark);
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
    max-width: 76px;
  }

  /* Override: show name from PHP — we add a visible span */
  .bestseller-name-mobile {
    font-size: 12px;
    color: var(--text-dark);
    font-weight: 500;
    text-align: center;
    line-height: 1.3;
    display: block;
    max-width: 124px;
  }


  /* ── PRODUCT SECTIONS (horizontal scroll) ── */
  .best-sellers-section,
  .new-arrivals-section {
    padding: 16px 0 4px;
  }

  /* .best-sellers-section .section-header,
  .new-arrivals-section .section-header {
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
  } */

  .best-sellers-section .products-grid,
  .new-arrivals-section .products-grid {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    gap: 12px !important;
    padding: 4px 16px 16px !important;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 0 !important;
    grid-template-columns: unset !important;
  }

  .best-sellers-section .products-grid::-webkit-scrollbar,
  .new-arrivals-section .products-grid::-webkit-scrollbar { display: none; }

  .best-sellers-section .product-card,
  .new-arrivals-section .product-card {
    flex-shrink: 0 !important;
    width: 150px !important;
    min-width: 150px !important;
    border-radius: 12px !important;
  }

  .best-sellers-section .product-image-wrapper,
  .new-arrivals-section .product-image-wrapper {
    height: 150px !important;
    padding-bottom: 0 !important;
  }

  .best-sellers-section .product-image,
  .new-arrivals-section .product-image {
    position: static !important;
    width: 100% !important;
    height: 150px !important;
  }

  .best-sellers-section .product-info,
  .new-arrivals-section .product-info {
    padding: 10px 10px 12px !important;
    min-height: unset !important;
  }

  .best-sellers-section .product-name,
  .new-arrivals-section .product-name {
    font-size: 12px !important;
    line-height: 1.3 !important;
  }

  .best-sellers-section .product-category,
  .new-arrivals-section .product-category {
    font-size: 10px !important;
    margin-bottom: 6px !important;
  }

  .best-sellers-section .current-price,
  .new-arrivals-section .current-price {
    font-size: 14px !important;
  }

  .product-actions {
    opacity: 1 !important; /* always show on mobile */
    top: 8px;
    right: 8px;
    gap: 6px;
  }

  .action-btn {
    width: 30px !important;
    height: 30px !important;
    font-size: 0.9rem !important;
  }

  .action-btn svg {
    width: 14px !important;
    height: 14px !important;
  }


  /* ── OCCASION SECTION ── */
  .collections-section {
    padding: 16px 0 8px;
  }

  /* .collections-section .section-header {
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
  } */

  .collections-grid {
    display: flex !important;
    flex-direction: row !important;
    justify-content: flex-start !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    gap: 10px !important;
    padding: 0 16px 16px !important;
    width: 100% !important;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    touch-action: pan-x;
  }

  .collections-grid::-webkit-scrollbar { display: none; }

  .collection-card {
    flex-shrink: 0 !important;
    flex: 0 0 auto !important;
    width: 120px !important;
    height: 150px !important;
    border-radius: 12px !important;
    scroll-snap-align: start;
  }

  .collection-overlay {
    padding: 10px !important;
    min-height: 60px !important;
  }

  .collection-name {
    font-size: 12px !important;
    margin-bottom: 4px !important;
    text-align: center;
  }

  .collection-link { font-size: 10px !important; }


  /* ── FEATURES (smaller, tidier) ── */
  .features-section {
    padding: 14px 0;
  }

  .features-section .section-title {
    font-size: 16px;
    padding: 0 16px;
    margin-bottom: 12px;
  }

  .feature-item {
    flex: 0 0 120px;
    padding: 16px 12px;
  }

  .feature-icon {
    height: 56px;
    font-size: 1.8rem;
  }

  .feature-icon svg {
    width: 46px;
    height: 46px;
  }

  .feature-title { font-size: 11px; margin-bottom: 4px; }
  .feature-text { font-size: 10px; }


  /* ── BLOG SECTION ── */
  .blog-section { padding: 16px 0 8px; }

  .blog-section .section-header { padding: 0 16px; margin-bottom: 12px; }

  .blog-grid {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    gap: 12px !important;
    padding: 0 16px 16px !important;
    scrollbar-width: none;
  }

  .blog-grid::-webkit-scrollbar { display: none; }

  .blog-card {
    flex-shrink: 0 !important;
    width: 220px !important;
    border-radius: 12px !important;
  }

  .blog-card-media { height: 130px !important; }
  .blog-card-title { font-size: 13px !important; }
  .blog-card-excerpt { font-size: 11px !important; -webkit-line-clamp: 3; overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; }


  /* ── FOOTER ── */
  .main-footer {
    padding: 20px 0 12px;
  }

  .main-footer::before {
    margin: 0 auto 20px;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr !important;
    gap: 20px;
    padding: 0 16px;
  }

  .footer-title { font-size: 13px; margin-bottom: 10px; text-align: center;}
  .footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }
  .footer-link { font-size: 12px; }
  .footer-text { font-size: 12px; text-align: center; }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    padding: 12px 16px 0;
    text-align: center;
  }

  .copyright { font-size: 11px; }

  .social-links { justify-content: center; }
  .social-link { width: 34px; height: 34px; }


  /* ── NEWSLETTER ── */
  .newsletter-section { padding: 24px 16px; }
  .newsletter-title { font-size: 20px; margin-bottom: 10px; }
  .newsletter-subtitle { font-size: 13px; margin-bottom: 24px; }
  .form-group { flex-direction: column; gap: 10px; }
  .newsletter-input { padding: 12px 16px; font-size: 14px; border-radius: 8px; }

} /* end @media 768px */


/* ── SMALL PHONES (iPhone SE, 375px and below) ── */
@media (max-width: 390px) {

  .hero-slider { height: 190px; }
  .slide-title { font-size: 18px; }
  .slide-content { max-width: 60%; }

  .logo-text { font-size: 10px; }
  .logo-image { width: 30px; height: 30px; }

  .section-title { font-size: 16px; }

  .bestseller-image-wrap {
    width: 120px !important;
    height: 120px !important;
  }

  .bestseller-item { width: 104px !important; }

  .best-sellers-section .product-card,
  .new-arrivals-section .product-card {
    width: 135px !important;
    min-width: 135px !important;
  }

  .best-sellers-section .product-image-wrapper,
  .new-arrivals-section .product-image-wrapper,
  .best-sellers-section .product-image,
  .new-arrivals-section .product-image {
    height: 130px !important;
  }

  .collection-card {
    width: 105px !important;
    height: 130px !important;
  }

  .blog-card { width: 190px !important; }
  .blog-card-media { height: 110px !important; }

  .footer-content {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  .top-bar-text { display: none; }

  .header-icons, .header-actions { gap: 6px; }
  .icon-btn { min-width: 32px; min-height: 32px; }

} /* end @media 390px */

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
}

/* Hide mobile-only elements on desktop */
.mobile-search-bar,
.metal-rates-ticker {
  display: none;
}

@media (max-width: 768px) {
  .mobile-search-bar {
    display: block;
  }

  .metal-rates-ticker {
    display: flex;        /* was: block — must be flex for horizontal scroll */
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .metal-rates-ticker::-webkit-scrollbar {
    display: none;
  }
}




/* ============================================
   COLLECTIONS PAGE - MOBILE FIX
   ============================================ */

@media (max-width: 980px) {

  /* ── INTRO CARD ── */
  .collections-modern .category-intro {
    padding: 12px 0 6px;
  }

  .collections-modern .category-intro-content {
    border-radius: 14px;
    padding: 20px 16px;
    margin: 0 12px;
  }

  .collections-modern .category-intro-heading {
    font-size: 22px;
    margin-bottom: 8px;
  }

  .collections-modern .category-intro-description {
    font-size: 13px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* ── LAYOUT: stack filter below a toggle button ── */
  .collections-modern .category-layout {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* ── FILTER SIDEBAR: hidden by default, shown via toggle ── */
  .collections-modern .filter-sidebar {
    position: fixed !important;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    overflow-y: auto;
    z-index: 3000;
    border-radius: 0 16px 16px 0;
    padding: 20px 16px;
    box-shadow: 4px 0 24px rgba(0,0,0,0.15);
    transition: left 0.3s ease;
    -webkit-overflow-scrolling: touch;
  }

  .collections-modern .filter-sidebar.drawer-open {
    left: 0;
  }

  /* Overlay behind filter drawer */
  #filterOverlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 2999;
  }

  #filterOverlay.active { display: block; }

  /* ── FILTER DRAWER HEADER ── */
  .filter-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--secondary-color);
  }

  .filter-drawer-header h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
  }

  .filter-drawer-close {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: var(--text-dark);
    padding: 4px;
    line-height: 1;
  }

  /* ── MOBILE TOOLBAR ── */
  .collections-modern .products-toolbar {
    flex-wrap: nowrap;
    gap: 8px;
    margin-bottom: 12px;
    align-items: center;
  }

  .collections-modern .products-toolbar-left {
    gap: 8px;
    font-size: 12px;
    flex-wrap: nowrap;
  }

  /* Hide grid view toggles on mobile — just use 2-col grid */
  .collections-modern .view-toggle {
    display: none;
  }

  .collections-modern .products-toolbar-right {
    flex-wrap: nowrap;
    gap: 6px;
  }

  /* Filter toggle button (injected via JS) */
  .mobile-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border: 1px solid var(--border-color);
    border-radius: 999px;
    background: #fff;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    white-space: nowrap;
  }

  .mobile-filter-btn svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
  }

  .collections-modern .sort-select {
    padding: 8px 10px;
    font-size: 12px;
    border-radius: 999px;
  }

  /* ── PRODUCT GRID: 2 column ── */
  .collections-modern .products-grid,
  .collections-modern .products-grid.grid-4,
  .collections-modern .products-grid.grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  /* ── PRODUCT CARDS ── */
  .collections-modern .product-card {
    border-radius: 12px !important;
  }

  .collections-modern .product-image-wrapper {
    padding-bottom: 100% !important;
  }

  .collections-modern .product-info {
    padding: 10px !important;
    min-height: unset !important;
  }

  .collections-modern .product-name {
    font-size: 12px !important;
    margin-bottom: 2px !important;
    font-weight: 500 !important;
  }

  .collections-modern .product-category {
    font-size: 10px !important;
    margin-bottom: 4px !important;
  }

  .collections-modern .current-price {
    font-size: 13px !important;
    font-weight: 700 !important;
  }

  /* Always show wishlist/whatsapp icons on mobile */
  .collections-modern .product-actions {
    opacity: 1 !important;
    top: 6px !important;
    right: 6px !important;
    gap: 5px !important;
  }

  .collections-modern .action-btn {
    width: 28px !important;
    height: 28px !important;
  }

  .collections-modern .action-btn svg {
    width: 13px !important;
    height: 13px !important;
  }

  /* ── LIST VIEW: revert to single column card on mobile ── */
  .collections-modern .products-grid.list-view {
    grid-template-columns: 1fr !important;
  }

  .collections-modern .products-grid.list-view .product-card {
    grid-template-columns: 110px 1fr !important;
    gap: 10px !important;
    padding: 10px !important;
  }

  /* ── FILTER ACTIONS inside drawer ── */
  .collections-modern .filter-actions {
    position: sticky;
    bottom: 0;
    background: #fff;
    padding: 12px 0 4px;
    margin-top: 8px;
    border-top: 1px solid var(--border-color);
  }

  .collections-modern .btn-apply,
  .collections-modern .btn-reset {
    padding: 11px 10px;
    font-size: 13px;
  }

}

/* ── VERY SMALL PHONES ── */
@media (max-width: 390px) {

  .collections-modern .category-intro-content {
    margin: 0 8px;
    padding: 16px 12px;
  }

  .collections-modern .category-intro-heading {
    font-size: 19px;
  }

  .collections-modern .products-grid,
  .collections-modern .products-grid.grid-4,
  .collections-modern .products-grid.grid-3 {
    gap: 8px !important;
  }

  .collections-modern .product-name {
    font-size: 11px !important;
  }

  .collections-modern .current-price {
    font-size: 12px !important;
  }

  .collections-modern .product-info {
    padding: 8px !important;
  }

}




/* ============================================
   SINGLE PRODUCT PAGE - MOBILE
   ============================================ */

@media (max-width: 768px) {

  .product-detail-modern {
    padding: 10px 0 32px;
  }

  /* ── BREADCRUMB ── */
  .single-breadcrumb-wrap {
    padding-inline: 12px;
    margin: 4px 0 8px;
  }

  .single-breadcrumb {
    font-size: 11px;
    gap: 6px;
    /* Show only last 2 segments on mobile */
  }

  /* Hide middle breadcrumb items, keep first and last */
  .single-breadcrumb a:not(:first-child):not(:last-child),
  .single-breadcrumb .sep:not(:last-of-type) {
    display: none;
  }

  /* ── PRODUCT LAYOUT ── */
  .single-product-wrapper {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* ── IMAGE PANEL ── */
  .single-product-image {
    position: static !important;
    top: auto;
    padding: 12px;
    border-radius: 16px;
    box-shadow: 0 6px 16px rgba(24,19,12,0.07);
  }

  .single-product-image img {
    border-radius: 10px;
    width: 100%;
    max-height: 340px;
    object-fit: contain;
  }

  .zoom-lens,
  .zoom-result {
    display: none !important;
  }

  .thumbnail-wrapper {
    gap: 8px;
    margin-top: 10px;
    justify-content: center;
  }

  .thumb-img {
    width: 52px !important;
    height: 52px;
    border-radius: 8px;
  }

  /* ── DETAILS PANEL ── */
  .single-product-details {
    padding: 16px 14px 18px;
    border-radius: 16px;
  }

  .single-product-details h1 {
    font-size: 19px;
    margin-bottom: 6px;
    line-height: 1.25;
  }

  .category {
    font-size: 10px;
    letter-spacing: 0.14em;
    margin-bottom: 12px;
  }

  .price {
    font-size: 21px;
    margin-bottom: 2px;
  }

  .tax-note {
    font-size: 11px;
    margin-bottom: 12px;
  }

  /* ── PINCODE ROW ── */
  .pincode-row {
    flex-direction: column;
    gap: 10px;
  }

  .pincode-check-left,
  .pincode-check-right {
    max-width: 100%;
    width: 100%;
  }

  .pincode-check {
    max-width: 100%;
    gap: 8px;
  }

  .pincode-check input {
    height: 42px;
    font-size: 13px;
    padding: 8px 10px;
  }

  .pincode-check button {
    height: 42px;
    font-size: 13px;
    padding: 0 12px;
    white-space: nowrap;
  }

  .pincode-label {
    font-size: 10px;
    margin-bottom: 4px;
  }

  /* ── PRICE BREAKDOWN ── */
  .breakdown-toggle {
    font-size: 12px;
    margin-top: 10px;
  }

  .price-breakdown.active {
    padding: 10px 12px;
  }

  .price-breakdown td {
    font-size: 12px;
    padding: 7px 0;
  }

  .price-breakdown .final-row td {
    font-size: 15px;
  }

  /* ── ACTION BUTTONS ── */
  .single-product-actions {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin: 16px 0 6px;
  }

  .btn-outline-gold,
  .btn-gold {
    height: 44px;
    font-size: 13px;
    border-radius: 10px;
    padding: 0 10px;
  }

  /* WhatsApp enquiry button — full width on very small */
  .single-product-actions a.btn-gold[href*="wa.me"] {
    font-size: 12px;
    gap: 6px;
  }

  /* ── DESCRIPTION ── */
  .product-description {
    margin-top: 16px;
    padding-top: 14px;
  }

  .product-description h2 {
    font-size: 16px;
  }

  .product-description h3 {
    font-size: 15px;
  }

  .product-description p {
    font-size: 13px;
    line-height: 1.65;
  }

  .product-meta {
    max-width: 100%;
    padding: 12px;
    border-radius: 10px;
    margin: 10px 0 12px;
  }

  .product-meta h3 {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .product-meta th,
  .product-meta td {
    font-size: 13px;
    padding: 5px 0;
  }

  /* ── YOU MAY ALSO LIKE ── */
  .you-may-like-section {
    margin-top: 28px;
  }

  .you-may-like-title {
    font-size: 20px;
  }

  .you-may-like-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .you-may-like-grid .product-card {
    border-radius: 12px;
  }

  .you-may-like-grid .product-image-wrapper {
    padding-bottom: 100%;
  }

  .you-may-like-grid .product-info {
    padding: 10px;
    min-height: unset;
  }

  .you-may-like-grid .product-name {
    font-size: 12px;
    font-weight: 500;
  }

  .you-may-like-grid .product-category {
    font-size: 10px;
    margin-bottom: 4px;
  }

  .you-may-like-grid .current-price {
    font-size: 13px;
    font-weight: 700;
  }

  /* Always show action buttons on mobile */
  .you-may-like-grid .product-actions {
    opacity: 1 !important;
    top: 6px;
    right: 6px;
    gap: 5px;
  }

  .you-may-like-grid .action-btn {
    width: 28px;
    height: 28px;
  }

  .you-may-like-grid .action-btn svg {
    width: 13px;
    height: 13px;
  }

} /* end 768px */

@media (max-width: 390px) {

  .single-product-details h1 { font-size: 17px; }
  .price { font-size: 19px; }

  .single-product-actions {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .you-may-like-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .you-may-like-grid .product-name { font-size: 11px; }
  .you-may-like-grid .current-price { font-size: 12px; }

  .thumb-img {
    width: 44px !important;
    height: 44px;
  }

}


/* ============================================
   BLOG LIST PAGE - MOBILE
   ============================================ */

@media (max-width: 768px) {

  .blog-page {
    padding: 16px 0 32px;
  }

  .blog-page .section-header {
    margin-bottom: 16px;
    padding: 0 4px;
  }

  .blog-page .section-title {
    font-size: 22px;
  }

  .blog-page .section-subtitle {
    font-size: 12px;
  }

  /* ── BLOG GRID: single column, card style ── */
  .blog-page .blog-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .blog-page .blog-card {
    border-radius: 14px;
    display: grid;
    grid-template-columns: 110px 1fr;  /* horizontal card layout */
    align-items: stretch;
    min-height: 110px;
    overflow: hidden;
  }

  /* Cards without image stay vertical */
  .blog-page .blog-card:not(:has(.blog-card-media)) {
    grid-template-columns: 1fr;
  }

  .blog-page .blog-card-media {
    height: 100%;
    min-height: 110px;
  }

  .blog-page .blog-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .blog-page .blog-card-body {
    padding: 12px 12px 12px 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    justify-content: center;
  }

  .blog-page .blog-card-title {
    font-size: 13px;
    line-height: 1.35;
    font-weight: 600;
    margin: 0;
    /* Clamp to 2 lines */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .blog-page .blog-card-date {
    font-size: 10px;
    color: var(--accent-color);
    margin: 0;
  }

  .blog-page .blog-card-excerpt {
    font-size: 11px;
    line-height: 1.5;
    color: var(--text-light);
    /* Clamp to 2 lines */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
  }

  .blog-page .blog-card-link {
    font-size: 11px;
    margin-top: 2px;
    align-self: flex-start;
  }

} /* end 768px */

@media (max-width: 390px) {

  .blog-page .blog-card {
    grid-template-columns: 90px 1fr;
    min-height: 96px;
  }

  .blog-page .blog-card-media {
    min-height: 96px;
  }

  .blog-page .blog-card-title {
    font-size: 12px;
  }

  .blog-page .blog-card-excerpt {
    display: none; /* hide excerpt on very small phones */
  }

}


/* ============================================
   BLOG DETAIL PAGE - MOBILE
   ============================================ */

@media (max-width: 768px) {

  .blog-detail {
    padding: 10px 0 24px;
  }

  .blog-detail-container {
    max-width: 100%;
    padding: 0 12px;
  }

  .blog-detail-card {
    background: #fff;
    border-radius: 14px;
    padding: 0 0 20px;
    box-shadow: none;
    border: none;
  }

  /* ── MAIN IMAGE ── */
  .blog-detail-media {
    margin-bottom: 14px;
    border-radius: 14px;
    overflow: hidden;
  }

  .blog-detail-media img {
    width: 100%;
    max-height: 240px;
    object-fit: cover;
    display: block;
  }

  /* ── TITLE ── */
  .blog-detail-title {
    font-size: 20px;
    line-height: 1.25;
    padding: 0 12px;
    margin-bottom: 10px;
  }

  /* ── META ROW (date + share) ── */
  .blog-meta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin: 8px 12px 14px;
  }

  .blog-detail-date {
    font-size: 11px;
  }

  /* ── SHARE BUTTONS ── */
  .blog-share {
    margin: 0;
    flex-wrap: wrap;
    gap: 7px;
  }

  .blog-share span {
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .blog-share .share-btn,
  .blog-share .share-copy {
    padding: 5px 11px;
    font-size: 11px;
    gap: 5px;
  }

  .blog-share .share-btn svg,
  .blog-share .share-copy svg {
    width: 13px;
    height: 13px;
  }

  /* ── CONTENT BODY ── */
  .blog-detail-content {
    padding: 0 12px;
    font-size: 14px;
    line-height: 1.75;
    color: var(--text-dark);
  }

  /* Typography inside rendered blog HTML */
  .blog-detail-content h1,
  .blog-detail-content h2 {
    font-size: 18px;
    margin: 16px 0 8px;
    line-height: 1.2;
  }

  .blog-detail-content h3,
  .blog-detail-content h4 {
    font-size: 16px;
    margin: 14px 0 6px;
  }

  .blog-detail-content p {
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 12px;
  }

  .blog-detail-content img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 12px 0;
  }

  .blog-detail-content ul,
  .blog-detail-content ol {
    padding-left: 20px;
    font-size: 14px;
    line-height: 1.7;
  }

  .blog-detail-content blockquote {
    border-left: 3px solid var(--secondary-color);
    margin: 14px 0;
    padding: 8px 14px;
    background: var(--bg-light);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    font-size: 13px;
  }

  .blog-detail-content table {
    width: 100%;
    overflow-x: auto;
    display: block;
    font-size: 13px;
  }

} /* end 768px */

@media (max-width: 390px) {

  .blog-detail-title {
    font-size: 18px;
    padding: 0 10px;
  }

  .blog-detail-content {
    padding: 0 10px;
    font-size: 13px;
  }

  .blog-detail-media img {
    max-height: 200px;
  }

  .blog-meta-row {
    margin: 6px 10px 12px;
  }

  .blog-share .share-btn,
  .blog-share .share-copy {
    padding: 4px 9px;
    font-size: 10px;
  }

}




/* ============================================
   ACCOUNT DASHBOARD - MOBILE
   ============================================ */

@media (max-width: 768px) {

  .account-dashboard-wrapper {
    padding: 12px 10px 32px;
  }

  .account-dashboard-header {
    margin-bottom: 14px;
  }

  .account-dashboard-header h1 {
    font-size: 22px;
    margin-bottom: 6px;
  }

  /* ── LAYOUT: sidebar becomes top tab bar ── */
  .account-layout {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .account-sidebar {
    position: static;
  }

  /* ── TABS: horizontal scrollable pill row ── */
  .account-tabs {
    display: flex !important;
    flex-direction: row;
    overflow-x: auto;
    gap: 8px;
    padding: 10px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(24,18,12,0.05);
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .account-tabs::-webkit-scrollbar { display: none; }

  .account-tab {
    flex-shrink: 0;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    border: 1px solid transparent;
    background: #f8f5ef;
    color: #6c5f4f;
    text-align: center;
  }

  .account-tab.active {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
    box-shadow: none;
  }

  /* ── CARDS ── */
  .account-list-card {
    padding: 16px 14px;
    border-radius: 14px;
  }

  .account-section-title {
    font-size: 16px;
    margin-bottom: 12px;
  }

  /* ── PROFILE SUMMARY ── */
  .account-profile-summary {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 14px;
  }

  .account-summary-field {
    padding: 10px 12px;
    border-radius: 10px;
  }

  .account-summary-field small {
    font-size: 10px;
    margin-bottom: 3px;
  }

  .account-summary-field strong {
    font-size: 13px;
    word-break: break-word;
  }

  /* Full-width for address field */
  .account-profile-summary .account-summary-field:last-child {
    grid-column: 1 / -1;
  }

  /* ── PROFILE ACTION BUTTONS ── */
  div[style*="display:flex"] .account-form-toggle,
  div[style*="display:flex"] .account-small-btn,
  div[style*="display:flex"] a.account-form-toggle {
    font-size: 12px;
    padding: 7px 12px;
  }

  /* ── EDIT PROFILE FORM ── */
  .account-profile-form {
    margin-top: 14px !important;
  }

  .account-profile-grid {
    grid-template-columns: 1fr !important;
    gap: 10px;
  }

  .png-input {
    padding: 10px 12px;
    font-size: 13px;
    border-radius: 10px;
  }

  .account-label {
    font-size: 11px;
    margin-bottom: 4px;
  }

  .account-profile-actions {
    flex-direction: column;
    gap: 8px;
  }

  .account-profile-actions .png-btn {
    width: 100%;
    padding: 12px;
    font-size: 13px;
    text-align: center;
  }

  /* ── WISHLIST / CART ITEMS ── */
  .account-item {
    padding: 10px;
    gap: 10px;
    border-radius: 10px;
    align-items: flex-start;
  }

  .account-item-image {
    width: 64px !important;
    height: 64px !important;
    border-radius: 8px;
    flex-shrink: 0;
  }

  .account-item-title {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 2px;
  }

  .account-item-meta {
    font-size: 11px;
  }

  .account-item-price {
    font-size: 13px !important;
    font-weight: 700 !important;
    margin-top: 4px !important;
  }

  .account-item-actions {
    flex-direction: row !important;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 6px;
  }

  .account-small-btn {
    font-size: 11px !important;
    padding: 5px 10px !important;
    border-radius: 6px !important;
  }

  .account-small-btn.primary {
    font-size: 11px !important;
    padding: 5px 10px !important;
  }

  /* ── CART TOTALS ── */
  .account-cart-total-row {
    font-size: 13px;
    padding-top: 10px;
    margin-top: 10px;
  }

  .account-cart-actions {
    margin-top: 12px;
  }

  .account-cart-actions .png-btn {
    width: 100%;
    text-align: center;
    padding: 12px;
    font-size: 13px;
  }

  /* ── ORDERS ── */
  .account-order-item {
    padding: 12px;
    border-radius: 12px;
  }

  .account-order-item .account-item-title {
    font-size: 14px !important;
  }

  .account-order-item .account-item-meta {
    font-size: 11px !important;
    margin-bottom: 2px !important;
  }

  .account-order-item .account-item-price {
    font-size: 14px !important;
  }

  .account-order-item .account-item-actions {
    flex-direction: row !important;
    margin-top: 8px;
  }

  .account-order-details {
    padding: 12px !important;
    border-radius: 10px !important;
    font-size: 12px;
    margin: 6px 0 14px !important;
  }

  .account-order-details div[style*="display:flex"] {
    font-size: 12px !important;
    padding: 5px 0 !important;
  }

  /* ── ADDRESS PANEL ── */
  .account-address-subtitle {
    font-size: 12px;
    margin-bottom: 12px;
    line-height: 1.5;
  }

  .account-address-item {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px;
  }

  .account-address-item .account-item-actions {
    width: 100%;
    flex-direction: row !important;
    flex-wrap: wrap;
    gap: 6px;
  }

  .account-switch-wrap {
    padding: 6px 8px;
    font-size: 11px;
  }

  .account-switch-label {
    font-size: 11px;
  }

  .account-address-form {
    padding: 12px !important;
    border-radius: 10px !important;
  }

  .account-address-section-title {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .account-address-same-line {
    margin: 12px 0 10px;
    padding-top: 10px;
  }

  .account-address-checks {
    flex-direction: row;
    gap: 10px 16px;
    flex-wrap: wrap;
  }

  .account-check-option {
    font-size: 12px;
  }

  /* ── LOGIN FORM ── */
  .png-login-form {
    margin-top: 4px;
  }

  .auth-mode-switch {
    border-radius: 999px;
    background: #f3ede4;
    padding: 4px;
    border: 1px solid var(--border-color);
    gap: 4px;
  }

  .auth-mode-btn {
    border-radius: 999px;
    font-size: 13px;
    padding: 10px 16px;
  }

  .auth-mode-btn.active {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
  }

  .png-button-group {
    margin-top: 20px;
    margin-bottom: 16px;
  }

  .png-btn {
    padding: 12px 20px;
    font-size: 13px;
  }

  .auth-mode-help {
    font-size: 11px;
    text-align: center;
    color: var(--text-light);
  }

  .account-empty-text {
    padding: 28px 16px;
    font-size: 13px;
  }

} /* end 768px */

@media (max-width: 390px) {

  .account-dashboard-wrapper { padding: 10px 8px 28px; }
  .account-dashboard-header h1 { font-size: 20px; }

  .account-tab { padding: 7px 12px; font-size: 11px; }

  .account-profile-summary { grid-template-columns: 1fr; gap: 8px; }

  .account-summary-field strong { font-size: 12px; }

  .account-item-image {
    width: 54px !important;
    height: 54px !important;
  }

  .account-order-item .account-item-title { font-size: 13px !important; }

}


/* ============================================
   ORDER SUCCESS PAGE - REDESIGNED + MOBILE
   ============================================ */

/* Desktop enhancement */
.checkout-success-modern {
  background: linear-gradient(160deg, #fff8f0 0%, #ffffff 40%);
  padding: 40px 0 64px;
}

.checkout-success-wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 16px;
}

.checkout-success-card {
  border: 1px solid var(--border-color);
  border-radius: 24px;
  background: #fff;
  padding: 40px 36px 32px;
  text-align: center;
  box-shadow: 0 20px 48px rgba(24,18,11,0.08);
  position: relative;
  overflow: hidden;
}

/* Gold top accent line */
.checkout-success-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

/* Success icon */
.checkout-success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f0faf3, #d4f4dd);
  border: 2px solid #b2e5c0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.checkout-success-icon svg {
  width: 36px;
  height: 36px;
  stroke: #27ae60;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.checkout-success-title {
  font-size: 28px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 0 6px;
  font-family: 'Playfair Display', serif;
}

.checkout-success-sub {
  color: var(--text-light);
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 1.6;
}

.checkout-success-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  text-align: left;
  margin: 0 0 24px;
}

.checkout-success-field {
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 12px 14px;
  background: #fffdf9;
  transition: border-color 0.2s ease;
}

.checkout-success-field:hover {
  border-color: var(--secondary-color);
}

.checkout-success-field small {
  display: block;
  color: var(--text-light);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
  font-weight: 600;
}

.checkout-success-field strong {
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 600;
}

/* Highlight payable field */
.checkout-success-field.highlight {
  background: linear-gradient(135deg, #fff8e6, #fffdf2);
  border-color: var(--secondary-color);
}

.checkout-success-field.highlight strong {
  color: #8a6a3c;
  font-size: 16px;
}

.checkout-success-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
}

.checkout-success-divider::before,
.checkout-success-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border-color), transparent);
}

.checkout-success-divider span {
  font-size: 10px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.checkout-success-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.checkout-btn {
  border: 1px solid #1a1a1a;
  background: #1a1a1a;
  color: #fff;
  border-radius: 999px;
  padding: 12px 28px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s ease;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.checkout-btn.secondary {
  background: #fff;
  color: #1a1a1a;
  border-color: var(--border-color);
}

.checkout-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(23,18,11,0.15);
}

.checkout-btn.secondary:hover {
  border-color: #1a1a1a;
}

/* Add this inside your success page PHP to inject the icon + extra markup */
/* See note below for PHP changes */

@media (max-width: 640px) {

  .checkout-success-modern {
    padding: 20px 0 40px;
  }

  .checkout-success-wrap {
    padding: 0 12px;
  }

  .checkout-success-card {
    padding: 28px 16px 24px;
    border-radius: 18px;
  }

  .checkout-success-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
  }

  .checkout-success-icon svg {
    width: 28px;
    height: 28px;
  }

  .checkout-success-title {
    font-size: 22px;
    margin-bottom: 6px;
  }

  .checkout-success-sub {
    font-size: 13px;
    margin-bottom: 18px;
  }

  .checkout-success-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 18px;
  }

  .checkout-success-field {
    padding: 10px 10px;
    border-radius: 10px;
  }

  .checkout-success-field small {
    font-size: 9px;
  }

  .checkout-success-field strong {
    font-size: 12px;
  }

  .checkout-success-field.highlight strong {
    font-size: 14px;
  }

  .checkout-success-actions {
    flex-direction: column;
    gap: 8px;
  }

  .checkout-btn {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
    font-size: 13px;
  }

}

@media (max-width: 390px) {

  .checkout-success-card { padding: 24px 12px 20px; }
  .checkout-success-title { font-size: 20px; }
  .checkout-success-grid { grid-template-columns: 1fr; gap: 8px; }
  .checkout-success-field strong { font-size: 13px; }

}

/* ============================================
   FINAL MOBILE OVERRIDE - HERO SLIDER FIT
   Show the full banner on phones instead of cropping it.
   ============================================ */

@media (max-width: 768px) {
  .hero-slider {
    height: auto !important;
  }

  .slider-wrapper {
    height: auto !important;
    aspect-ratio: 3 / 1;
  }

  .slide {
    height: 100% !important;
    position: absolute !important;
  }

  .slide-image {
    background-size: cover !important;
    background-position: center center !important;
  }

  .slide-content {
    width: 100% !important;
    max-width: 100% !important;
  }
}

@media (max-width: 390px) {
  .slider-wrapper {
    aspect-ratio: 2.8 / 1;
  }
}


/* MOBILE SQUARE SLIDER FIX */
@media (max-width:768px){

  .hero-slider{
      height:auto !important;
      aspect-ratio: 1 / 1 !important;
  }

  .slider-wrapper,
  .slide,
  .slide-image{
      height:100% !important;
  }

  .slide-image{
      background-size: contain !important;
      background-repeat:no-repeat !important;
      background-position:center center !important;
      background-color:#fff !important;
  }

}
