/* miFiestAPP - Complementos Showroom & Shop Styles */

:root {
  --bg-dark: #070708;
  --bg-card: rgba(18, 18, 22, 0.7);
  --bg-card-hover: rgba(26, 26, 32, 0.9);
  --gold-light: #f6e8b1;
  --gold-primary: #d4af37;
  --gold-dark: #aa7c11;
  --gold-gradient: linear-gradient(135deg, #f6e8b1 0%, #d4af37 50%, #aa7c11 100%);
  --gold-glow: rgba(212, 175, 55, 0.2);
  --text-primary: #ffffff;
  --text-secondary: #a0a0aa;
  --text-muted: #71717a;
  --card-border: rgba(212, 175, 55, 0.12);
  --card-border-hover: rgba(212, 175, 55, 0.45);
  --success: #10b981;
  --danger: #ef4444;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: 'Montserrat', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  line-height: 1.6;
  padding-bottom: 120px;
}

/* Ambient Glows */
.ambient-glows {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.ambient-glows::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(212, 175, 55, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  background-position: center top;
}

.glow-top {
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
  filter: blur(60px);
}

/* Container */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* Header Navbar */
.shop-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  margin-bottom: 36px;
}

.shop-logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-primary);
}

.shop-logo-img {
  height: 32px;
  width: auto;
}

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

.btn-back-home {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  transition: var(--transition-smooth);
}

.btn-back-home:hover {
  color: var(--gold-light);
  border-color: var(--card-border-hover);
  background: rgba(212, 175, 55, 0.08);
}

.cart-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(170, 124, 17, 0.25));
  border: 1px solid var(--gold-primary);
  color: var(--gold-light);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.cart-toggle-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.25);
}

.cart-badge {
  background: var(--gold-gradient);
  color: #000;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 2px 7px;
  border-radius: 12px;
  min-width: 20px;
  text-align: center;
}

/* Hero Header */
.shop-hero {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.shop-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.1);
  padding: 6px 14px;
  border-radius: 30px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  margin-bottom: 16px;
}

.shop-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 14px;
  background: linear-gradient(180deg, #ffffff 40%, rgba(255, 255, 255, 0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.shop-title .text-gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.shop-subtitle {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
}

/* Search & Filters Bar */
.controls-bar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
  background: rgba(18, 18, 22, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--card-border);
}

.search-box-wrapper {
  position: relative;
  width: 100%;
}

.search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-primary);
  pointer-events: none;
}

.search-input {
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 14px 18px 14px 50px;
  border-radius: var(--radius-md);
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-smooth);
}

.search-input:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.search-input::placeholder {
  color: var(--text-muted);
}

.filter-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.category-chip {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.category-chip:hover {
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold-light);
  border-color: rgba(212, 175, 55, 0.3);
}

.category-chip.active {
  background: var(--gold-gradient);
  color: #000;
  font-weight: 600;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-smooth);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--card-border-hover);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6), 0 0 25px rgba(212, 175, 55, 0.15);
  background: var(--bg-card-hover);
}

.product-card-banner {
  height: 140px;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.15) 0%, rgba(10, 10, 14, 0.8) 100%),
              linear-gradient(135deg, rgba(20, 20, 26, 0.9), rgba(12, 12, 15, 0.95));
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(212, 175, 55, 0.08);
}

.product-card-banner.has-image {
  height: 190px;
  overflow: hidden;
  padding: 0;
}

.product-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.product-card-banner.has-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, transparent 40%, rgba(13, 13, 17, 0.9) 100%);
  pointer-events: none;
}

.modal-image-hero {
  width: 100%;
  height: 240px;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
  position: relative;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.modal-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-icon-display {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: var(--transition-smooth);
}

.product-card:hover .product-icon-display {
  transform: scale(1.1) rotate(4deg);
  border-color: var(--gold-primary);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(10, 10, 15, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--gold-light);
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.45);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.6);
  letter-spacing: 0.5px;
  z-index: 2;
}

.product-category-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #ffffff;
  background: rgba(10, 10, 15, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.45);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.6);
  z-index: 2;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.product-card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
  line-height: 1.35;
}

.product-subtitle {
  font-size: 0.8rem;
  color: var(--gold-light);
  margin-bottom: 12px;
  opacity: 0.9;
}

.product-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

.product-price-box {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(212, 175, 55, 0.15);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  margin-bottom: 18px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.price-main {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold-primary);
  font-family: 'Cinzel', serif;
}

.price-unit {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: right;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 10px;
}

.btn-detail {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 10px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-align: center;
}

.btn-detail:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}

.btn-add-cart {
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--gold-primary);
  color: var(--gold-light);
  padding: 10px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.btn-add-cart:hover {
  background: var(--gold-gradient);
  color: #000;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-add-cart.added {
  background: rgba(16, 185, 129, 0.15);
  border-color: var(--success);
  color: #34d399;
}

.btn-add-cart.added:hover {
  background: rgba(239, 68, 68, 0.15);
  border-color: var(--danger);
  color: #f87171;
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px dashed var(--card-border);
  grid-column: 1 / -1;
}

.empty-state h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--gold-light);
}

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

/* Floating Quotation Bar / Drawer Trigger */
.quotation-floating-bar {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 900px;
  background: rgba(12, 12, 15, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--gold-primary);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(212, 175, 55, 0.25);
  border-radius: 40px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 90;
  transition: var(--transition-smooth);
}

.quotation-floating-bar.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 40px);
}

.bar-summary {
  display: flex;
  align-items: center;
  gap: 16px;
}

.bar-count-badge {
  background: var(--gold-gradient);
  color: #000;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 4px 12px;
  border-radius: 20px;
}

.bar-total-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.bar-total-amount {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  font-family: 'Cinzel', serif;
}

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

.btn-open-drawer {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-open-drawer:hover {
  background: rgba(255, 255, 255, 0.15);
}

.btn-whatsapp-quote {
  background: #25d366;
  color: #fff;
  text-decoration: none;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  transition: var(--transition-smooth);
}

.btn-whatsapp-quote:hover {
  background: #22bf5b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Modal Detalle */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

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

.modal-card {
  background: #0d0d10;
  border: 1px solid var(--card-border-hover);
  border-radius: var(--radius-lg);
  max-width: 650px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9), 0 0 30px rgba(212, 175, 55, 0.2);
  transform: scale(0.95);
  transition: var(--transition-smooth);
}

.modal-overlay.active .modal-card {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 10;
  transition: var(--transition-smooth);
}

.modal-close-btn:hover {
  background: rgba(239, 68, 68, 0.3);
  border-color: var(--danger);
  color: #fff;
}

.modal-header {
  padding: 30px 30px 20px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.modal-category-badge {
  font-size: 0.75rem;
  color: var(--gold-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.modal-title {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.modal-subtitle {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.modal-body {
  padding: 24px 30px;
}

.modal-section {
  margin-bottom: 22px;
}

.modal-section-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-primary);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.modal-includes-list {
  list-style: none;
}

.modal-includes-list li {
  font-size: 0.88rem;
  color: var(--text-secondary);
  padding: 6px 0 6px 24px;
  position: relative;
}

.modal-includes-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 6px;
  color: var(--gold-primary);
  font-weight: 700;
}

.modal-spec-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.modal-footer {
  padding: 20px 30px;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.3);
}

.modal-price-area {
  display: flex;
  flex-direction: column;
}

.modal-price-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-primary);
  font-family: 'Cinzel', serif;
}

.modal-price-unit {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Cart / Presupuesto Drawer */
.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 95;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.drawer-content {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 440px;
  height: 100%;
  background: #0d0d11;
  border-left: 1px solid var(--card-border-hover);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.9);
  z-index: 96;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: var(--transition-smooth);
}

.drawer-overlay.active .drawer-content {
  transform: translateX(0);
}

.drawer-header {
  padding: 24px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer-title {
  font-family: 'Cinzel', serif;
  font-size: 1.25rem;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.drawer-close-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

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

.drawer-body {
  padding: 24px;
  flex-grow: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-item-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: var(--radius-md);
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-item-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cart-item-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
}

.cart-item-price {
  font-size: 0.85rem;
  color: var(--gold-primary);
  font-weight: 700;
}

.cart-item-remove-btn {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: #f87171;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.cart-item-remove-btn:hover {
  background: rgba(239, 68, 68, 0.3);
  color: #fff;
}

.drawer-form-group {
  margin-top: 10px;
}

.drawer-form-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.drawer-input {
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  color: #fff;
  font-family: inherit;
  font-size: 0.85rem;
  outline: none;
}

.drawer-input:focus {
  border-color: var(--gold-primary);
}

.drawer-footer {
  padding: 24px;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  background: rgba(0, 0, 0, 0.4);
}

.drawer-total-box {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 18px;
}

.drawer-total-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.drawer-total-amount {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-primary);
  font-family: 'Cinzel', serif;
}

.btn-drawer-whatsapp {
  width: 100%;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  padding: 14px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  transition: var(--transition-smooth);
  border: none;
  cursor: pointer;
}

.btn-drawer-whatsapp:hover {
  background: #22bf5b;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
}

/* Responsive */
@media (max-width: 768px) {
  .controls-bar {
    padding: 16px;
  }
  .filter-categories {
    overflow-x: auto;
    padding-bottom: 6px;
    flex-wrap: nowrap;
  }
  .category-chip {
    white-space: nowrap;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .quotation-floating-bar {
    width: calc(100% - 24px);
    bottom: 12px;
    padding: 10px 16px;
    flex-direction: column;
    gap: 12px;
    border-radius: 20px;
  }
  .bar-summary {
    width: 100%;
    justify-content: space-between;
  }
  .bar-actions {
    width: 100%;
  }
  .btn-open-drawer, .btn-whatsapp-quote {
    flex: 1;
    text-align: center;
    justify-content: center;
  }
}
