/* Shree Sarees - Storefront Main Stylesheet */
body {
  background-color: #f4efe7;
}

.card-collection {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-collection:hover {
  transform: translateY(-6px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.card-collection img {
  height: 300px;
  object-fit: cover;
}

@media (min-width: 768px) {
  .card-collection img {
    height: 400px;
  }
}

.card-collection .card-title {
  font-size: 1.1rem;
  font-weight: 600;
}

/* Wishlist animation */
.js-wishlist-toggle i {
  transition: transform 0.2s ease, color 0.2s ease;
}

.js-wishlist-toggle:active i {
  transform: scale(1.2);
}

/* Top Announcement Note Bar */
.top-announcement-bar {
  background: linear-gradient(90deg, #672628 0%, #4a191b 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
  letter-spacing: 0.015em;
}

.top-announcement-bar .announcement-text {
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.top-announcement-bar .announcement-btn {
  font-size: 0.75rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  line-height: 1.5;
}

.top-announcement-bar .announcement-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25) !important;
}

/* Live Search (Collection & In-Page) */
.header-search-bar-row {
  background: transparent;
}

.header-search-container,
.collection-search-container {
  max-width: 580px;
  width: 100%;
}

.header-search-form .input-group {
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.header-search-form .input-group:focus-within {
  border-color: #672628 !important;
  box-shadow: 0 0 0 0.2rem rgba(103, 38, 40, 0.15) !important;
}

.header-search-form .form-control:focus {
  box-shadow: none;
}

.header-search-form .btn-search-submit {
  background-color: #672628;
  border-color: #672628;
  font-size: 0.8rem;
  font-weight: 500;
}

.header-search-form .btn-search-submit:hover {
  background-color: #531e20;
  border-color: #531e20;
}

.search-suggestions-dropdown {
  top: 100%;
  left: 0;
  max-height: 420px;
  overflow-y: auto;
  border-color: rgba(0, 0, 0, 0.08) !important;
  z-index: 1050;
}

.search-suggestion-item {
  transition: background-color 0.15s ease;
  border-radius: 0.375rem;
}

.search-suggestion-item:hover,
.search-suggestion-item.active {
  background-color: #fbf5ef;
}

.search-suggestion-img {
  width: 46px;
  height: 60px;
  object-fit: cover;
  border-radius: 0.25rem;
}

/* Faceted Filtering & Catalog */
.filter-sidebar {
  background-color: #ffffff;
  position: sticky;
  top: 80px;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  overscroll-behavior: contain;
}

/* Custom sleek scrollbar for filter sidebar */
.filter-sidebar::-webkit-scrollbar,
.filter-checkbox-list::-webkit-scrollbar {
  width: 5px;
}

.filter-sidebar::-webkit-scrollbar-track,
.filter-checkbox-list::-webkit-scrollbar-track {
  background: #f8f9fa;
  border-radius: 4px;
}

.filter-sidebar::-webkit-scrollbar-thumb,
.filter-checkbox-list::-webkit-scrollbar-thumb {
  background: #d8cebe;
  border-radius: 4px;
}

.filter-sidebar::-webkit-scrollbar-thumb:hover,
.filter-checkbox-list::-webkit-scrollbar-thumb:hover {
  background: #672628;
}

/* Accordion adjustments inside filters */
.filter-accordion .accordion-button {
  font-size: 0.9rem;
  color: #212529;
}

.filter-accordion .accordion-button:not(.collapsed) {
  color: #672628;
}

.filter-accordion .accordion-button::after {
  background-size: 0.8rem;
  transition: transform 0.2s ease;
}

.filter-accordion .fs-8 {
  font-size: 0.7rem;
}

.filter-checkbox-list {
  max-height: 180px;
  overflow-y: auto;
  padding-right: 4px;
}

.cursor-pointer {
  cursor: pointer;
}

/* Color Swatches */
.color-swatch-chip {
  transition: transform 0.15s ease;
}

.color-swatch-chip:hover {
  transform: scale(1.1);
}

.color-circle {
  border: 2px solid #ffffff !important;
  box-shadow: 0 0 0 1px #dee2e6;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.color-circle.active {
  box-shadow: 0 0 0 2px #672628 !important;
}

.color-circle .swatch-check {
  font-size: 1rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

.color-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
}

/* Dual Range Price Slider */
.price-range-slider-wrapper {
  height: 30px;
}

.price-range-slider-wrapper input[type="range"] {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  pointer-events: none;
  background: none;
  -webkit-appearance: none;
}

.price-range-slider-wrapper input[type="range"]::-webkit-slider-thumb {
  pointer-events: auto;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #672628;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  margin-top: -4px;
}

.price-range-slider-wrapper input[type="range"]::-moz-range-thumb {
  pointer-events: auto;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #672628;
  cursor: pointer;
  border: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.price-range-slider-wrapper input[type="range"]::-webkit-slider-runnable-track {
  height: 6px;
  background: #e2d9cd;
  border-radius: 3px;
}

.price-range-slider-wrapper input[type="range"]::-moz-range-track {
  height: 6px;
  background: #e2d9cd;
  border-radius: 3px;
}

/* Active filter badge styling */
#active-filters-bar .badge {
  font-weight: 500;
  font-size: 0.8rem;
  border-color: #e5dacd !important;
}

#active-filters-bar .badge i:hover {
  color: #dc3545;
}

/* ==========================================================================
   Homepage Redesign - Jaipur Royal Aesthetics
   ========================================================================== */

:root {
  --color-maroon: #672628;
  --color-maroon-dark: #401416;
  --color-gold: #c89d56;
  --color-gold-light: #e8c17b;
  --color-cream: #fbf8f4;
  --color-cream-dark: #f4efe7;
}

.text-maroon {
  color: var(--color-maroon) !important;
}

.bg-maroon {
  background-color: var(--color-maroon) !important;
}

.bg-maroon-subtle {
  background-color: rgba(103, 38, 40, 0.08) !important;
}

.btn-maroon {
  background-color: var(--color-maroon);
  border-color: var(--color-maroon);
  color: #ffffff;
  transition: all 0.2s ease;
}

.btn-maroon:hover,
.btn-maroon:focus {
  background-color: var(--color-maroon-dark);
  border-color: var(--color-maroon-dark);
  color: #ffffff;
  transform: translateY(-1px);
}

.btn-outline-maroon {
  border-color: var(--color-maroon);
  color: var(--color-maroon);
  transition: all 0.2s ease;
}

.btn-outline-maroon:hover,
.btn-outline-maroon:focus {
  background-color: var(--color-maroon);
  border-color: var(--color-maroon);
  color: #ffffff;
}

.bg-gold {
  background-color: var(--color-gold) !important;
}

.text-gold {
  color: var(--color-gold) !important;
}

.btn-gold {
  background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
  border: none;
  color: #211a0c;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-gold:hover,
.btn-gold:focus {
  background: linear-gradient(135deg, #e0bc45 0%, #c49214 100%);
  color: #120d04;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(184, 134, 11, 0.35) !important;
}

/* 1. Hero Showcase */
.hero-showcase {
  background: linear-gradient(135deg, #672628 0%, #4a191b 50%, #2f0e10 100%);
  border: 1px solid rgba(200, 157, 86, 0.25);
  box-shadow: 0 10px 30px rgba(74, 25, 27, 0.2);
}

.hero-pattern-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(200, 157, 86, 0.15) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  opacity: 0.7;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.letter-spacing-wide {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-title {
  font-family: 'Playfair Display', Georgia, serif, system-ui;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.hero-subtitle {
  font-size: 1.05rem;
  line-height: 1.6;
}

.backdrop-blur {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.extra-small {
  font-size: 0.7rem;
}

/* 2. Trust Pillars */
.trust-pillar-card {
  background-color: #ffffff;
  border-bottom: 3px solid transparent !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.trust-pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(103, 38, 40, 0.08) !important;
  border-bottom-color: var(--color-gold) !important;
}

.trust-icon-box {
  width: 48px;
  height: 48px;
  background-color: rgba(103, 38, 40, 0.08);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.trust-pillar-card:hover .trust-icon-box {
  background-color: rgba(200, 157, 86, 0.2);
  transform: scale(1.05);
}

/* 3. Category Story Tiles */
.category-card-wrapper {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.category-card-wrapper:hover {
  transform: translateY(-6px);
}

.category-card {
  min-height: 190px;
  transition: box-shadow 0.3s ease;
}

.category-card-wrapper:hover .category-card {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15) !important;
}

.bg-gradient-sarees {
  background: linear-gradient(135deg, #7c2d30 0%, #4a191b 100%);
}

.bg-gradient-kurtis {
  background: linear-gradient(135deg, #2b4c59 0%, #172d35 100%);
}

.bg-gradient-suits {
  background: linear-gradient(135deg, #5b3d68 0%, #341e3c 100%);
}

.category-action-btn {
  font-size: 0.8rem;
  transition: transform 0.2s ease;
}

.category-card-wrapper:hover .category-action-btn {
  transform: translateX(4px);
}

/* 5. Craft Spotlight */
.btn-craft-pill {
  background-color: #fdfbf7;
  border: 1px solid #e7dcce;
  color: #3b3530;
  font-size: 0.85rem;
  transition: all 0.2s ease;
}

.btn-craft-pill:hover {
  background-color: var(--color-maroon);
  border-color: var(--color-maroon);
  color: #ffffff;
  transform: translateY(-1px);
}

.btn-craft-pill:hover i {
  color: #ffffff !important;
}

.btn-fabric-pill {
  background-color: #f8f6f0;
  border: 1px dashed #d9ccb9;
  color: #4a4038;
  font-size: 0.85rem;
  transition: all 0.2s ease;
}

.btn-fabric-pill:hover {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
  color: #1a160d;
  transform: translateY(-1px);
}

/* 6. Physical Boutique Story */
.boutique-card {
  background-color: #ffffff;
}

.service-icon-circle {
  width: 36px;
  height: 36px;
}

.bg-boutique-side {
  background: linear-gradient(135deg, #381a1d 0%, #1e0d0f 100%);
  position: relative;
}

.bg-boutique-side::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(200, 157, 86, 0.2) 1px, transparent 1px);
  background-size: 16px 16px;
  opacity: 0.5;
  pointer-events: none;
}

/* 7. WhatsApp VIP */
.bg-gradient-whatsapp {
  background: linear-gradient(135deg, #075e54 0%, #128c7e 60%, #25d366 100%);
}

/* ==========================================================================
   Simple, Grounded Footer Styling (Royal Deep Navy)
   ========================================================================== */
.site-footer {
  background-color: #161e2b;
  border-top: 1px solid rgba(200, 157, 86, 0.25);
  color: #cfc5bc;
}

.site-footer .text-dark {
  color: #f7ede2 !important;
}

.site-footer .text-muted {
  color: #a89a8f !important;
}

.footer-link {
  color: #cfc5bc;
  text-decoration: none;
  transition: color 0.15s ease, transform 0.15s ease;
  display: inline-block;
}

.footer-link:hover {
  color: var(--color-gold-light);
  transform: translateX(2px);
}

.footer-social-btn {
  width: 32px;
  height: 32px;
  padding: 0;
  border-color: rgba(200, 157, 86, 0.35);
  color: var(--color-maroon);
  background-color: #ffffff;
  transition: all 0.2s ease;
}

.footer-social-btn:hover {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
  color: #21160d;
  transform: translateY(-2px);
}

.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}





