/* =========================================================
   VOYLLA E-COMMERCE LUXURY JEWELRY THEME
   Inspired by Voylla Women's Earrings Collection
   ========================================================= */

:root {
  --primary-color: #891e36;        /* Voylla signature rich wine/ruby */
  --primary-hover: #70162a;
  --secondary-color: #c59b27;      /* Regal gold */
  --secondary-light: #f7eed7;
  --accent-color: #d33c53;
  --dark-text: #222222;
  --body-text: #555555;
  --muted-text: #888888;
  --bg-light: #faf8f5;            /* Soft warm ivory background */
  --bg-white: #ffffff;
  --border-color: #e8e4df;
  --border-light: #f0ece7;
  --card-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  --card-hover-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-light);
  color: var(--dark-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  width: 100%;
}

button, a, input, select, textarea, .category-pill, .product-card {
  touch-action: manipulation;
}

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

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  outline: none;
  background: none;
  transition: var(--transition);
}

input, select, textarea {
  font-family: inherit;
  outline: none;
}

/* ---------------- TOP ANNOUNCEMENT BAR ---------------- */
.announcement-bar {
  background: linear-gradient(90deg, #6c1125 0%, #891e36 50%, #9e233f 100%);
  color: #fff;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.4px;
  padding: 8px 16px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.announcement-bar .badge-pill {
  background: #fdf2d0;
  color: #6c1125;
  padding: 2px 8px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 11px;
}

/* ---------------- MAIN HEADER ---------------- */
.site-header {
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 990;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid var(--border-light);
}

.header-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.logo-text {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--primary-color);
  text-transform: uppercase;
}

.logo-tagline {
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--secondary-color);
  text-transform: uppercase;
  font-weight: 600;
  margin-top: -4px;
}

/* Header Search Bar */
.search-container {
  flex: 1;
  max-width: 520px;
  position: relative;
}

.search-input-wrap {
  display: flex;
  align-items: center;
  background: #f7f6f4;
  border: 1px solid var(--border-color);
  border-radius: 25px;
  padding: 6px 16px;
  transition: var(--transition);
}

.search-input-wrap:focus-within {
  background: #ffffff;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(137, 30, 54, 0.12);
}

.search-input-wrap input {
  width: 100%;
  border: none;
  background: transparent;
  font-size: 13.5px;
  color: var(--dark-text);
  padding: 4px 8px;
}

.search-input-wrap .search-icon {
  color: var(--muted-text);
  font-size: 16px;
}

.search-clear {
  color: #999;
  font-size: 16px;
  display: none;
}

/* Search Dropdown / Autocomplete */
.search-results-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: var(--card-hover-shadow);
  margin-top: 8px;
  max-height: 380px;
  overflow-y: auto;
  border: 1px solid var(--border-color);
  display: none;
  z-index: 1000;
}

.search-result-item {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  gap: 12px;
  border-bottom: 1px solid var(--border-light);
  cursor: pointer;
  transition: var(--transition);
}

.search-result-item:hover {
  background: #fdf9f7;
}

.search-result-img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 4px;
}

.search-result-info h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-text);
}

.search-result-info .price {
  font-size: 12px;
  color: var(--primary-color);
  font-weight: 700;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--dark-text);
  position: relative;
  font-size: 11px;
  font-weight: 500;
}

.action-btn .icon {
  font-size: 22px;
  line-height: 1;
  color: #333;
}

.action-badge {
  position: absolute;
  top: -4px;
  right: -6px;
  background: var(--primary-color);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
}

/* ---------------- MAIN NAVIGATION ---------------- */
.nav-bar {
  background: #ffffff;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-color);
}

.nav-inner {
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-item > a {
  display: block;
  padding: 12px 4px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--dark-text);
  position: relative;
}

.nav-item > a:hover,
.nav-item.active > a {
  color: var(--primary-color);
}

.nav-item.active > a::after,
.nav-item > a:hover::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary-color);
}

.nav-item .sale-tag {
  background: #ff4757;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 3px;
  margin-left: 4px;
}

/* ---------------- COLLECTION BANNER & BREADCRUMBS ---------------- */
.collection-hero {
  background: linear-gradient(135deg, #fdf6ec 0%, #fbf1e8 50%, #f5e6dc 100%);
  border-bottom: 1px solid var(--border-color);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-text-side {
  max-width: 650px;
}

.breadcrumbs {
  font-size: 12px;
  color: var(--muted-text);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.breadcrumbs a:hover {
  color: var(--primary-color);
}

.collection-title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: #2b1117;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.collection-description {
  font-size: 14px;
  color: var(--body-text);
  line-height: 1.5;
}

.hero-badges-side {
  display: flex;
  gap: 20px;
}

.hero-badge-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.hero-badge-card .num {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary-color);
  font-family: var(--font-heading);
}

.hero-badge-card .lbl {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted-text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ---------------- CATEGORY PILLS BAR ---------------- */
.category-pills-bar {
  background: #ffffff;
  border-bottom: 1px solid var(--border-color);
  padding: 14px 20px;
}

.pills-container {
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: thin;
  padding-bottom: 4px;
}

.category-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #f6f4f0;
  border: 1px solid var(--border-color);
  color: var(--dark-text);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 30px;
  white-space: nowrap;
  transition: var(--transition);
}

.category-pill:hover {
  background: #ede9e2;
  border-color: #d8d2c8;
}

.category-pill.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(137, 30, 54, 0.25);
}

/* ---------------- STORE LAYOUT (SIDEBAR & GRID) ---------------- */
.store-container {
  max-width: 1360px;
  margin: 24px auto 60px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
}

/* ---------------- FILTERS SIDEBAR ---------------- */
.filters-sidebar {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  padding: 22px;
  height: fit-content;
  position: sticky;
  top: 90px;
}

.filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 18px;
}

.filter-header h3 {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--dark-text);
}

.clear-filters-btn {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: underline;
}

.filter-group {
  margin-bottom: 22px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 18px;
}

.filter-group:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.filter-group-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Price Range Slider */
.price-slider-wrap {
  padding: 6px 0;
}

.price-slider {
  width: 100%;
  accent-color: var(--primary-color);
  cursor: pointer;
}

.price-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--dark-text);
  margin-top: 6px;
}

/* Filter Checkboxes */
.filter-options-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  max-height: 220px;
  overflow-y: auto;
}

.filter-option-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--body-text);
  cursor: pointer;
  user-select: none;
}

.filter-option-label:hover {
  color: var(--primary-color);
}

.filter-option-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--primary-color);
  cursor: pointer;
}

.filter-count {
  font-size: 11px;
  color: var(--muted-text);
  margin-left: auto;
}

/* Mobile Filter Toggle Button */
.mobile-filter-btn {
  display: none;
  background: var(--primary-color);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 13px;
  align-items: center;
  gap: 8px;
}

/* ---------------- CATALOG CONTROLS BAR ---------------- */
.catalog-content {
  display: flex;
  flex-direction: column;
}

.catalog-topbar {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  padding: 14px 20px;
  margin-bottom: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.results-count {
  font-size: 13.5px;
  color: var(--body-text);
}

.results-count strong {
  color: var(--dark-text);
  font-weight: 700;
}

.catalog-actions-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* Sort Select */
.sort-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sort-wrap label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--muted-text);
  text-transform: uppercase;
}

.sort-select {
  border: 1px solid var(--border-color);
  background: #fbf9f6;
  border-radius: 4px;
  padding: 6px 12px;
  font-size: 13px;
  color: var(--dark-text);
  cursor: pointer;
}

.sort-select:focus {
  border-color: var(--primary-color);
}

/* Grid Switcher */
.grid-switcher {
  display: flex;
  gap: 4px;
  background: #f2efea;
  padding: 3px;
  border-radius: 4px;
}

.grid-btn {
  padding: 4px 8px;
  border-radius: 3px;
  color: var(--muted-text);
  font-size: 14px;
  font-weight: 700;
}

.grid-btn.active {
  background: #ffffff;
  color: var(--primary-color);
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

/* Active Filter Badges */
.active-filters-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.active-chip {
  background: #f0e6e8;
  color: var(--primary-color);
  border: 1px solid rgba(137, 30, 54, 0.2);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.active-chip .remove-chip {
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
}

/* ---------------- PRODUCT GRID & CARDS ---------------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.products-grid.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.products-grid.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

/* Individual Product Card */
.product-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-hover-shadow);
  border-color: #d1c7bc;
}

/* Card Image Area */
.product-image-box {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.15;
  background: #f7f5f2;
  overflow: hidden;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease, transform 0.6s ease;
}

.product-img.img-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.product-card:hover .product-img.img-main {
  opacity: 0;
}

.product-card:hover .product-img.img-hover {
  opacity: 1;
  transform: scale(1.04);
}

/* Product Badges */
.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 3px 8px;
  border-radius: 3px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 2;
}

.badge-bestseller {
  background: #c59b27;
  color: #fff;
}

.badge-discount {
  background: #d33c53;
  color: #fff;
}

.badge-hot, .badge-new {
  background: #111111;
  color: #fff;
}

/* Wishlist Button on Card */
.wishlist-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #666;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 2;
  transition: var(--transition);
}

.wishlist-btn:hover {
  background: #ffffff;
  color: var(--accent-color);
  transform: scale(1.1);
}

.wishlist-btn.active {
  color: var(--accent-color);
  background: #ffffff;
}

/* Quick View Hover Button */
.quick-view-btn {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  color: var(--dark-text);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 10px;
  text-align: center;
  opacity: 0;
  transform: translateY(100%);
  transition: var(--transition);
  z-index: 3;
}

.product-card:hover .quick-view-btn {
  opacity: 1;
  transform: translateY(0);
}

.quick-view-btn:hover {
  background: var(--primary-color);
  color: #ffffff;
}

/* Card Details Area */
.product-info {
  padding: 16px 14px 14px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-collection-tag {
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--secondary-color);
  letter-spacing: 0.8px;
  margin-bottom: 4px;
}

.product-title {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--dark-text);
  line-height: 1.35;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 38px;
}

.product-title:hover {
  color: var(--primary-color);
}

/* Rating */
.product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
  font-size: 11.5px;
}

.stars {
  color: #ff9800;
  letter-spacing: -1px;
}

.rating-count {
  color: var(--muted-text);
}

/* Price Box */
.product-price-box {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: auto;
  margin-bottom: 12px;
}

.current-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-color);
}

.mrp-price {
  font-size: 13px;
  color: var(--muted-text);
  text-decoration: line-through;
}

.discount-tag {
  font-size: 11px;
  font-weight: 700;
  color: #27ae60;
}

/* Add to Cart Button */
.add-to-cart-btn {
  background: #ffffff;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  transition: var(--transition);
}

.add-to-cart-btn:hover {
  background: var(--primary-color);
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(137, 30, 54, 0.2);
}

/* Product Card Actions (Dual Buttons: Add to Bag + Buy Now) */
.card-actions {
  display: flex;
  gap: 6px;
  width: 100%;
  margin-top: 8px;
}

.btn-card-add {
  flex: 1;
  background: #ffffff;
  border: 1.5px solid var(--primary-color);
  color: var(--primary-color);
  padding: 8px 6px;
  border-radius: var(--radius-sm);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-card-add:hover {
  background: #fdf3f5;
}

.btn-card-buy {
  flex: 1.15;
  background: linear-gradient(135deg, #891e36, #5a1827);
  border: 1.5px solid #5a1827;
  color: #ffffff;
  padding: 8px 6px;
  border-radius: var(--radius-sm);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(137, 30, 54, 0.25);
  white-space: nowrap;
}

.btn-card-buy:hover {
  background: #4a1320;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(137, 30, 54, 0.35);
}

/* ---------------- EMPTY STATE ---------------- */
.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px dashed var(--border-color);
}

.empty-state .icon {
  font-size: 48px;
  margin-bottom: 12px;
  color: var(--muted-text);
}

.empty-state h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.empty-state p {
  color: var(--muted-text);
  font-size: 14px;
  margin-bottom: 18px;
}

/* ---------------- OVERLAY BACKDROP ---------------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(3px);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* ---------------- SLIDE-OUT CART DRAWER ---------------- */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 440px;
  max-width: 100vw;
  background: #ffffff;
  box-shadow: -4px 0 25px rgba(0, 0, 0, 0.2);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-header {
  padding: 18px 22px;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fbf9f6;
}

.cart-header h3 {
  font-size: 17px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.close-drawer-btn {
  font-size: 22px;
  color: #777;
  padding: 4px;
}

.close-drawer-btn:hover {
  color: #000;
}

/* Free Shipping Bar in Cart */
.free-shipping-box {
  background: #fdf8f0;
  padding: 12px 20px;
  border-bottom: 1px solid var(--border-color);
  font-size: 12px;
}

.free-shipping-text {
  font-weight: 600;
  color: #3b2a1a;
  margin-bottom: 8px;
  display: block;
  text-align: center;
  line-height: 1.4;
}

.progress-bar-bg {
  width: 100%;
  height: 6px;
  background: #e0d7c7;
  border-radius: 10px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #c59b27, #27ae60);
  width: 0%;
  border-radius: 10px;
  transition: width 0.4s ease;
}

/* Cart Items Container */
.cart-items-list {
  flex: 1;
  overflow-y: auto;
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-item {
  display: flex;
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
}

.cart-item-img {
  width: 74px;
  height: 84px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background: #f8f6f4;
}

.cart-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cart-item-title {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--dark-text);
  line-height: 1.3;
  margin-bottom: 4px;
}

.cart-item-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.cart-item-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.qty-stepper {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  overflow: hidden;
  background: #fbf9f6;
}

.qty-btn {
  padding: 4px 10px;
  font-size: 14px;
  font-weight: bold;
  color: #444;
}

.qty-btn:hover {
  background: #ede9e1;
}

.qty-number {
  padding: 4px 8px;
  font-size: 13px;
  font-weight: 600;
  min-width: 24px;
  text-align: center;
}

.remove-cart-item {
  font-size: 12px;
  color: #d33c53;
  cursor: pointer;
}

.remove-cart-item:hover {
  text-decoration: underline;
}

/* Empty Cart State */
.empty-cart-view {
  text-align: center;
  padding: 40px 10px;
}

.empty-cart-view .icon {
  font-size: 44px;
  color: #aaa;
  margin-bottom: 10px;
}

/* Cart Footer / Checkout Area */
.cart-footer {
  border-top: 1px solid var(--border-color);
  padding: 16px 20px calc(18px + env(safe-area-inset-bottom, 12px));
  background: #ffffff;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.05);
}

/* Coupon Box */
.coupon-box {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.coupon-input {
  flex: 1;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-size: 12.5px;
  text-transform: uppercase;
  background: #fbf9f6;
}

.coupon-btn {
  background: #333333;
  color: #fff;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.coupon-applied-tag {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #e8f5e9;
  border: 1px solid #c8e6c9;
  color: #2e7d32;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}

.remove-coupon-btn {
  color: #c62828;
  font-size: 13px;
  font-weight: bold;
}

/* Price Breakdown Summary */
.cart-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--body-text);
  margin-bottom: 6px;
}

.cart-summary-row.total {
  font-size: 16px;
  font-weight: 800;
  color: var(--dark-text);
  border-top: 1px dashed var(--border-color);
  padding-top: 10px;
  margin-top: 8px;
}

.cart-checkout-btn {
  background: linear-gradient(135deg, #891e36, #5a1827);
  border: 1px solid #5a1827;
  color: #ffffff;
  width: 100%;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 12px;
  box-shadow: 0 4px 14px rgba(137, 30, 54, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cart-checkout-btn:hover {
  background: #4a1320;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(137, 30, 54, 0.45);
}

/* ---------------- QUICK VIEW MODAL ---------------- */
.quickview-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  width: 880px;
  max-width: 94vw;
  max-height: 90vh;
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  z-index: 1060;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.quickview-modal.open {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  pointer-events: all;
}

.quickview-content {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  position: relative;
}

.quickview-close-btn {
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 24px;
  color: #555;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f0ece7;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.quickview-gallery {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quickview-main-img {
  width: 100%;
  aspect-ratio: 1 / 1.1;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.quickview-thumbnails {
  display: flex;
  gap: 10px;
}

.quickview-thumb {
  width: 65px;
  height: 65px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
}

.quickview-thumb.active {
  border-color: var(--primary-color);
}

.quickview-details {
  padding: 28px 24px 28px 10px;
  display: flex;
  flex-direction: column;
}

.qv-collection {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--secondary-color);
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.qv-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--dark-text);
  line-height: 1.3;
  margin-bottom: 8px;
}

.qv-sku {
  font-size: 11.5px;
  color: var(--muted-text);
  margin-bottom: 12px;
}

.qv-price-box {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-light);
}

.qv-price {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary-color);
}

.qv-mrp {
  font-size: 15px;
  color: var(--muted-text);
  text-decoration: line-through;
}

.qv-discount {
  background: #e8f5e9;
  color: #2e7d32;
  font-weight: 700;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 4px;
}

.qv-description {
  font-size: 13.5px;
  color: var(--body-text);
  line-height: 1.6;
  margin-bottom: 18px;
}

/* Specifications Table */
.qv-specs-table {
  width: 100%;
  font-size: 12.5px;
  border-collapse: collapse;
  margin-bottom: 18px;
}

.qv-specs-table td {
  padding: 6px 8px;
  border-bottom: 1px solid var(--border-light);
}

.qv-specs-table td:first-child {
  font-weight: 600;
  color: var(--muted-text);
  width: 35%;
}

/* Indian Pincode Delivery Check */
.pincode-checker {
  background: #fbf9f6;
  border: 1px solid var(--border-color);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}

.pincode-checker label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--dark-text);
  display: block;
  margin-bottom: 6px;
}

.pincode-input-group {
  display: flex;
  gap: 8px;
}

.pincode-input {
  flex: 1;
  border: 1px solid var(--border-color);
  background: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 13px;
}

.pincode-check-btn {
  background: var(--primary-color);
  color: #fff;
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
}

.pincode-msg {
  font-size: 11.5px;
  margin-top: 6px;
  color: #27ae60;
  font-weight: 600;
}

.qv-actions {
  display: flex;
  gap: 12px;
  margin-top: auto;
}

.qv-add-cart-btn {
  flex: 1;
  background: var(--primary-color);
  color: #fff;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.qv-add-cart-btn:hover {
  background: var(--primary-hover);
}

.qv-buy-now-btn {
  flex: 1;
  background: #27ae60;
  color: #fff;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.qv-buy-now-btn:hover {
  background: #219653;
}

/* ---------------- CHECKOUT MODAL ---------------- */
.checkout-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  width: 720px;
  max-width: 94vw;
  max-height: 90vh;
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  z-index: 1070;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.checkout-modal.open {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  pointer-events: all;
}

.checkout-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-light);
  background: #fbf9f6;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.checkout-header h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-text);
  font-family: var(--font-heading);
}

.checkout-body {
  padding: 24px;
}

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

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

.form-group label {
  font-size: 12px;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 4px;
  display: block;
}

.form-group input, .form-group select {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 13px;
  background: #fcfbfa;
}

.form-group input:focus, .form-group select:focus {
  border-color: var(--primary-color);
  background: #ffffff;
}

/* Payment Method Selection */
.payment-methods-box {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 16px;
  background: #fbf9f6;
  margin-bottom: 20px;
}

.payment-methods-box h4 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.payment-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--border-color);
  background: #ffffff;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
}

.payment-option:hover {
  border-color: var(--primary-color);
}

.payment-option input[type="radio"] {
  accent-color: var(--primary-color);
}

/* Order Success Screen */
.order-success-box {
  text-align: center;
  padding: 30px 10px;
}

.order-success-box .success-icon {
  font-size: 54px;
  color: #27ae60;
  margin-bottom: 14px;
}

.order-success-box h3 {
  font-family: var(--font-heading);
  font-size: 26px;
  margin-bottom: 8px;
  color: #2b1117;
}

.order-id-badge {
  display: inline-block;
  background: #e8f5e9;
  color: #2e7d32;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  margin: 12px 0 20px;
  font-size: 13px;
}

/* ---------------- WISHLIST DRAWER ---------------- */
.wishlist-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 400px;
  max-width: 90vw;
  background: #ffffff;
  box-shadow: -4px 0 25px rgba(0, 0, 0, 0.2);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.wishlist-drawer.open {
  transform: translateX(0);
}

.wishlist-items-list {
  flex: 1;
  overflow-y: auto;
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ---------------- TRUST GUARANTEE STRIP ---------------- */
.trust-strip {
  background: #ffffff;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 28px 20px;
}

.trust-inner {
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.trust-card {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-icon {
  font-size: 32px;
  color: var(--secondary-color);
}

.trust-text h4 {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 2px;
}

.trust-text p {
  font-size: 11.5px;
  color: var(--muted-text);
}

/* ---------------- FOOTER ---------------- */
.site-footer {
  background: #191516;
  color: #d1c8c5;
  padding: 50px 20px 24px;
  font-size: 13px;
}

.footer-inner {
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a:hover {
  color: var(--secondary-color);
}

.newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.newsletter-form input {
  flex: 1;
  background: #2a2426;
  border: 1px solid #443c3f;
  padding: 8px 12px;
  border-radius: 4px;
  color: #fff;
  font-size: 12.5px;
}

.newsletter-form button {
  background: var(--secondary-color);
  color: #191516;
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 12px;
}

.footer-bottom {
  max-width: 1360px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid #2e2628;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #8c8285;
}

.payment-badges {
  display: flex;
  gap: 8px;
  font-size: 18px;
}

/* Toast Notification */
.toast-notice {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #2b1117;
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2000;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition);
}

.toast-notice.show {
  transform: translateY(0);
  opacity: 1;
}

/* WhatsApp Floating Support Widget */
.whatsapp-float-btn {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: #25D366;
  color: #ffffff;
  padding: 11px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
}

.whatsapp-float-btn:hover {
  background: #20b858;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  color: #fff;
}

/* Direct Order & Channel Pills */
.channel-pill {
  background: #ffffff;
  border: 1px solid #e2dcd5;
  padding: 4px 12px;
  border-radius: 14px;
  font-size: 11.5px;
  font-weight: 600;
  color: #4a383d;
  box-shadow: 0 1px 4px rgba(0,0,0,0.03);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.channel-pill:hover {
  background: #fae8eb;
  border-color: #881337;
  color: #881337;
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(136, 19, 55, 0.12);
}

/* Instagram Header Action Button */
.instagram-header-btn {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #ffffff !important;
  border-radius: 20px;
  padding: 6px 14px;
  font-weight: 700;
  font-size: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 6px rgba(220, 39, 67, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.instagram-header-btn:hover {
  opacity: 0.95;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220, 39, 67, 0.4);
  color: #ffffff !important;
}

/* Quick Price Select Buttons */
.price-quick-btn {
  flex: 1;
  background: #f6f3ee;
  border: 1px solid #e5dfd7;
  color: var(--dark-text);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 6px;
  border-radius: 4px;
  text-align: center;
  transition: var(--transition);
}

.price-quick-btn:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #ffffff;
}

/* ==========================================================================
   17. SEO & Buyer Guide Section
   ========================================================================== */
.seo-guide-section {
  background: #ffffff;
  border-top: 1px solid var(--border-color);
  padding: 60px 20px;
}

.seo-guide-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.seo-heading-block {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 40px;
}

.seo-badge {
  display: inline-block;
  background: #fdf2f4;
  color: var(--primary-color);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 14px;
  border-radius: 20px;
  border: 1px solid #f2cfd7;
  margin-bottom: 12px;
}

.seo-heading-block h2 {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--dark-text);
  margin-bottom: 14px;
  line-height: 1.3;
}

.seo-intro-text {
  font-size: 14px;
  color: var(--light-text);
  line-height: 1.8;
}

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

.seo-card {
  background: #faf8f5;
  border: 1px solid #eee8e0;
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.seo-card:hover {
  transform: translateY(-4px);
  border-color: var(--secondary-gold);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  background: #ffffff;
}

.seo-card-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.seo-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 12px;
  line-height: 1.4;
}

.seo-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 16px;
}

.seo-card-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}

.seo-card-link:hover {
  color: var(--secondary-gold);
  transform: translateX(4px);
}

/* ==========================================================================
   18. FAQ Section & Interactive Accordion
   ========================================================================== */
.faq-section {
  background: #fdfbf9;
  border-top: 1px solid var(--border-color);
  padding: 60px 20px;
}

.faq-inner {
  max-width: 900px;
  margin: 0 auto;
}

.faq-heading-block {
  text-align: center;
  margin-bottom: 40px;
}

.faq-heading-block h2 {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--dark-text);
  margin-bottom: 10px;
}

.faq-heading-block p {
  font-size: 14px;
  color: var(--light-text);
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #ece5dd;
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: #dcd0c2;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  background: none;
  border: none;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark-text);
  text-align: left;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: background 0.2s ease, color 0.2s ease;
}

.faq-question:hover {
  color: var(--primary-color);
  background: #faf7f5;
}

.faq-question[aria-expanded="true"] {
  color: var(--primary-color);
  background: #fcf6f7;
  border-bottom: 1px solid #f1e2e6;
}

.faq-icon {
  font-size: 20px;
  font-weight: 400;
  color: var(--primary-color);
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out, padding 0.35s ease;
  padding: 0 22px;
  background: #ffffff;
}

.faq-question[aria-expanded="true"] + .faq-answer {
  max-height: 300px;
  padding: 18px 22px;
}

.faq-answer p {
  font-size: 13.5px;
  color: #555;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .seo-columns-grid {
    grid-template-columns: 1fr;
  }
  .seo-guide-section, .faq-section {
    padding: 40px 16px;
  }
  .seo-heading-block h2, .faq-heading-block h2 {
    font-size: 22px;
  }
}

/* ==========================================================================
   19. Owner Tool & Security Authentication Styles
   ========================================================================== */
/* Hidden from general public visitors by default */
.owner-add-btn,
.owner-only-elem {
  display: none !important;
}

/* Only visible when owner unlocks with PIN */
body.owner-authenticated .owner-add-btn {
  display: inline-flex !important;
}

body.owner-authenticated .owner-only-elem {
  display: flex !important;
}

.owner-add-btn {
  background: linear-gradient(135deg, #5a1827 0%, #891e36 100%) !important;
  color: #ffffff !important;
  border-radius: 20px !important;
  padding: 8px 14px !important;
  font-weight: 700 !important;
  box-shadow: 0 2px 8px rgba(90, 24, 39, 0.25) !important;
  border: 1px solid #c59b27 !important;
  transition: all 0.2s ease !important;
}

.owner-add-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(90, 24, 39, 0.35) !important;
}

/* Owner Login Security PIN Modal */
.owner-login-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 380px;
  max-width: 90vw;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
  z-index: 1060;
  overflow: hidden;
  border: 1px solid #e0d7c7;
}

/* Product Manager Modal */
.product-manager-modal,
.upi-qr-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  width: 95%;
  max-width: 560px;
  max-height: 90vh;
  background: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-modal);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.product-manager-modal.open,
.upi-qr-modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.product-manager-modal .checkout-body,
.upi-qr-modal .checkout-body {
  overflow-y: auto;
}

/* Custom Product Items inside Manager */
.custom-product-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  background: #faf8f5;
  border: 1px solid #eee;
  border-radius: 6px;
  font-size: 13px;
}

.custom-product-item img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 4px;
  margin-right: 10px;
}

.custom-product-item .del-btn {
  background: #ff4d4f;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 11.5px;
  cursor: pointer;
  transition: background 0.2s;
}

.custom-product-item .del-btn:hover {
  background: #d9363e;
}

/* Payment Gateway Options Styling */
.payment-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid #e5dfd7;
  border-radius: 8px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: var(--transition);
  background: #ffffff;
  position: relative;
}

.payment-option:hover {
  border-color: var(--secondary-gold);
  background: #fdfbf9;
}

.payment-option.highlight-option {
  border: 1.5px solid #5a1827;
  background: #fdf7f8;
}

.payment-option-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.payment-option-info strong {
  font-size: 13.5px;
  color: var(--dark-text);
  line-height: 1.3;
}

.payment-sub {
  font-size: 11px;
  color: #777;
  margin-top: 2px;
}

.pg-badge {
  font-size: 9.5px;
  font-weight: 800;
  background: #2e7d32;
  color: #fff;
  padding: 2px 7px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* ==========================================================================
   20. Embedded UPI QR Box inside Checkout
   ========================================================================== */
.upi-checkout-box {
  background: #ffffff;
  border: 1.5px solid #25D366;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 14px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.08);
}

.upi-header-banner {
  background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 100%);
  color: #ffffff;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.upi-step-badge {
  background: #ffffff;
  color: #1b5e20;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 3px 8px;
  border-radius: 4px;
}

.upi-body-grid {
  padding: 18px 16px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 20px;
  align-items: center;
  background: #fdfdfd;
}

.upi-qr-display {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.upi-amount-tag {
  font-size: 22px;
  font-weight: 800;
  color: #1b5e20;
  margin-bottom: 8px;
}

.qr-img-box {
  width: 170px;
  height: 170px;
  background: #ffffff;
  padding: 8px;
  border-radius: 8px;
  border: 1.5px solid #2e7d32;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}

.qr-img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mobile-upi-app-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #5a1827;
  color: #ffffff !important;
  font-size: 11.5px;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 6px;
  text-decoration: none;
  margin-top: 10px;
  width: 100%;
  transition: var(--transition);
}

.mobile-upi-app-btn:hover {
  background: #891e36;
}

.upi-id-pill {
  background: #f4f6f4;
  border: 1px solid #d0ded0;
  padding: 8px 12px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12.5px;
  color: #333;
  margin-bottom: 12px;
}

.upi-id-pill strong {
  font-family: monospace;
  font-size: 13.5px;
  color: #1b5e20;
}

.copy-upi-btn {
  background: #ffffff;
  border: 1px solid #bbb;
  border-radius: 4px;
  padding: 3px 8px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}

.upi-apps-icons {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 11.5px;
  color: #666;
  margin-bottom: 14px;
}

.app-chip {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  color: #333;
}

.upi-steps-guide {
  background: #fbfbfb;
  border: 1px dashed #ddd;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 12px;
  color: #555;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .upi-body-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .upi-instructions {
    text-align: left;
  }
}

/* ---------------- MOBILE BOTTOM NAVIGATION BAR ---------------- */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid #e8e2da;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  z-index: 990;
  padding: 0 4px;
}

.mobile-bottom-bar-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.mob-nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  background: none;
  border: none;
  color: #554448;
  font-size: 10px;
  font-weight: 600;
  position: relative;
  padding: 6px 10px;
  cursor: pointer;
  text-decoration: none;
  border-radius: 8px;
  transition: transform 0.15s ease, color 0.15s ease;
  min-width: 52px;
}

.mob-nav-btn:active {
  transform: scale(0.92);
  color: #891e36;
}

.mob-nav-btn .mob-icon {
  font-size: 18px;
  line-height: 1;
}

.mob-nav-btn.active-tab {
  color: #891e36;
  font-weight: 700;
}

.mob-badge {
  position: absolute;
  top: 3px;
  right: 8px;
  background: #891e36;
  color: #ffffff;
  font-size: 9px;
  font-weight: 800;
  min-width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1px;
}




