/* =========================
   BASE
========================= */
body {
  background: #f7f8fb;
  color: #212529;
  overflow-x: hidden;
}

/* =========================
   NAVBAR
========================= */
.navbar {
  border-bottom: 1px solid #f1f1f1;
}

.navbar-store {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.store-brand {
  font-size: 1.15rem;
  line-height: 1.2;
  max-width: 60%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* =========================
   HERO NUEVO
========================= */
.hero-section {
  position: relative;
  height: 320px;
  overflow: visible;
  border-radius: 0 0 30px 30px;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0 0 30px 30px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  border-radius: 0 0 30px 30px;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2),
    rgba(0, 0, 0, 0.7)
  );
}

.hero-inner {
  position: absolute;
  bottom: 35px;
  left: 0;
  right: 0;
  z-index: 3;
}

.hero-brand {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  margin-top:20px;
  z-index: 100;
}

.hero-logo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: #fff;
  padding: 6px;
  flex-shrink: 0;
  box-shadow: 0 14px 30px rgba(0,0,0,0.2);
  backdrop-filter: blur(6px);
}

.hero-brand {
  display: flex;
  align-items: flex-end;
  gap: 16px;
}

.hero-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}



.hero-text {
  padding-bottom: 15px;
  flex: 1;
  min-width: 0;
  max-width: 800px;
}

.hero-text h1 {
  font-size: 1.9rem;
  font-weight: 800;
  color: #000;
  margin-bottom: 4px;
}

.hero-text p {
  font-size: 0.95rem;
  color: #000;
  margin-bottom: 0;
  white-space: pre-line;
}

/* =========================
   CARRITO NAVBAR
========================= */
.cart-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 999px;
  border: none;
  background: #0d6efd;
  color: #fff;
  font-weight: 600;
  font-size: 0.92rem;
  position: relative;
  transition: all 0.2s ease;
  box-shadow: 0 6px 14px rgba(13, 110, 253, 0.25);
  white-space: nowrap;
}

.cart-btn i {
  font-size: 1.05rem;
}

.cart-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(13, 110, 253, 0.35);
}

.cart-btn:active {
  transform: translateY(-1px);
}

.cart-btn.has-items {
  background: linear-gradient(135deg, #0d6efd, #2563eb);
  box-shadow: 0 10px 24px rgba(13, 110, 253, 0.35);
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #ff3b3b;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-total-inline {
  font-weight: 700;
  margin-left: 4px;
  opacity: 0.9;
}

/* =========================
   CATEGORÍAS
========================= */
.category-scroll::-webkit-scrollbar {
  display: none;
}

.category-scroll {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  touch-action: pan-x;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
  padding-top: 8px;
  padding-bottom: 14px;
  padding-left: 15px;
  padding-right: 0;
  margin-top: -8px;
  margin-bottom: -14px;
  gap: 8px;
}

.category-strip-bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

@media (min-width: 992px) {
  .category-strip-bleed {
    width: 100%;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 12px;
    padding-right: 12px;
  }

  .category-scroll {
    padding-left: 0;
  }
}

@media (min-width: 1200px) {
  .category-strip-bleed {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .category-strip-bleed {
    max-width: 1320px;
  }
}

.category-pill {
  white-space: nowrap;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 999px;
  background: #fff;
  color: #212529;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.2s ease;
}

.category-pill:hover,
.category-pill.active {
  background: #0d6efd;
  color: #fff;
  transform: translateY(-2px);
}

/* =========================
   PRODUCTOS
========================= */
.product-card {
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
}

.catalog-item-featured .product-card {
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.14);
}

.product-image-wrapper {
  position: relative;
  background: #f8f9fa;
  padding: 12px;
}

.product-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}

.product-title {
  font-size: 1rem;
  font-weight: 600;
  color: #212529;
  line-height: 1.35;
  min-height: 44px;
  margin-bottom: 0;
}

.product-featured-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  color: #b54708;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-item-featured .product-img {
  height: 300px;
}

.catalog-item-featured .product-title {
  font-size: 1.15rem;
  min-height: 0;
}

.catalog-item-featured .product-price {
  font-size: 1.45rem;
}

.product-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111;
}

.card-body {
  padding: 1.3rem 1rem 1rem;
}

/* =========================
   BOTONES REDONDOS
========================= */
.btn-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  padding: 0;
  font-size: 1.6rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  box-shadow: 0 8px 18px rgba(13, 110, 253, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-circle:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 14px 24px rgba(13, 110, 253, 0.35);
}

.btn-circle:active {
  transform: translateY(-1px) scale(0.98);
}

.add-cart-btn {
  right: 20px;
  bottom: -20px;
}

.zoom-btn {
  top: 18px;
  right: 18px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.96);
  color: #212529;
  border: none;
}

.zoom-btn:hover {
  background: #fff;
}

/* =========================
   BADGE DE PRODUCTO EN CARRITO
========================= */
.product-cart-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  min-width: 28px;
  height: 28px;
  padding: 0 8px;
  border-radius: 999px;
  background: #ff3b3b;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: 0 8px 18px rgba(255, 59, 59, 0.28);
  animation: popIn 0.2s ease;
}

@keyframes popIn {
  0% {
    transform: scale(0.7);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* =========================
   INFO TILES
========================= */
.info-tile {
  border-radius: 20px;
  padding: 20px;
  height: 100%;
  text-align: center;
  transition: all 0.25s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  cursor: default;
}

.info-tile:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.15);
}

.info-tile .icon {
  font-size: 28px;
  margin-bottom: 8px;
}

.info-tile .title {
  font-size: 1.1rem;
  font-weight: 700;
}

.info-tile .desc {
  font-size: 0.85rem;
  opacity: 0.9;
}

/* =========================
   MAPA / UBICACIÓN
========================= */
.location-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
}

.location-info {
  background: linear-gradient(135deg, #ffffff, #f8f9fb);
  min-height: 320px;
}

.location-text {
  font-size: 1rem;
  font-weight: 600;
  color: #212529;
}

.location-text-muted {
  font-size: 0.95rem;
  color: #6c757d;
}

#store-map {
  width: 100%;
  height: 320px;
}

.leaflet-container {
  font-family: inherit;
}

/* =========================
   MODAL PRODUCTO
========================= */
.modal-dialog {
  max-width: 900px;
}

.modal-body {
  height: 100%;
  overflow: hidden;
}

.modal-body .row {
  height: 100%;
}

.product-modal-content {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  position: relative;
  background: #fff;
  height: 100%;
}

.product-modal-image-wrap {
  position: relative;
  min-height: 320px;
  height: 100%;
  overflow: hidden;
  background: #eef2f7;
}

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

.product-modal-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.12), transparent);
  pointer-events: none;
}

.product-modal-info {
  background: #fff;
  height: 100%;
}

.product-modal-badge {
  display: inline-block;
  background: #eef4ff;
  color: #0d6efd;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
}

.product-modal-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #212529;
  line-height: 1.15;
}

.product-modal-price {
  font-size: 1.6rem;
  font-weight: 800;
  color: #111;
}

.product-modal-description {
  color: #6c757d;
  font-size: 0.98rem;
  line-height: 1.6;
}

.custom-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

/* =========================
   CONTROL DE CANTIDAD MODAL
========================= */
.qty-control {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 8px;
  background: #f5f7fb;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.qty-btn {
  appearance: none;
  -webkit-appearance: none;
  border: none;
  outline: none;
  width: 42px;
  height: 42px;
  min-width: 42px;
  min-height: 42px;
  border-radius: 50%;
  background: #ffffff;
  color: #212529;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.qty-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
  background: #fdfdfd;
}

.qty-btn:active {
  transform: scale(0.96);
}

.qty-btn span {
  display: block;
  line-height: 1;
  transform: translateY(-1px);
}

.qty-input {
  width: 52px;
  min-width: 52px;
  border: none;
  background: transparent;
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  color: #212529;
  outline: none;
  padding: 0;
  box-shadow: none;
}

.qty-input[readonly] {
  cursor: default;
}

/* =========================
   CART DRAWER / CHECKOUT
========================= */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  z-index: 1040;
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  max-width: 92vw;
  height: 100dvh;
  background: #fff;
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.16);
  transform: translateX(100%);
  transition: transform 0.28s ease;
  z-index: 1050;
  display: flex;
  flex-direction: column;
}

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

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.2rem;
  border-bottom: 1px solid #eef1f5;
  background: #fff;
  z-index: 5;
}

.drawer-step {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

.cart-close-btn {
  width: 40px;
  height: 40px;
  border: none;
  background: #f5f7fb;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1;
  color: #212529;
  transition: all 0.2s ease;
}

.cart-close-btn:hover {
  transform: translateY(-2px);
  background: #eef2f7;
}

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1rem 8.5rem;
  -webkit-overflow-scrolling: touch;
}

.cart-drawer-footer {
  position: sticky;
  bottom: 0;
  border-top: 1px solid #eef1f5;
  padding: 1rem 1.2rem calc(1.2rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  z-index: 5;
}

.cart-total-price {
  font-size: 1.2rem;
  font-weight: 800;
  color: #111;
}

.cart-empty {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #6c757d;
  text-align: center;
}

.cart-empty-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 12px;
  background: #fff;
  border-radius: 18px;
  padding: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  margin-bottom: 12px;
}

.cart-item-image {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  object-fit: cover;
  display: block;
  background: #f4f6f9;
}

.cart-item-name {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.25;
  color: #212529;
  margin-bottom: 4px;
}

.cart-item-price {
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 10px;
}

.cart-item-subtotal {
  font-size: 0.95rem;
  font-weight: 700;
  color: #111;
  white-space: nowrap;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-qty-wrap {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f5f7fb;
  border-radius: 999px;
  padding: 4px;
}

.cart-qty-btn {
  width: 30px;
  height: 30px;
  border: none;
  background: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.15s ease;
}

.cart-qty-btn:hover {
  transform: translateY(-1px);
}

.cart-qty-value {
  min-width: 24px;
  text-align: center;
  font-weight: 700;
  font-size: 0.92rem;
}

.cart-remove-btn {
  width: 34px;
  height: 34px;
  border: none;
  background: #fff1f1;
  color: #dc3545;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.cart-remove-btn:hover {
  transform: translateY(-1px);
  background: #ffe3e3;
}

.checkout-fields .form-control {
  border: 1px solid #e7ebf0;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  box-shadow: none;
}

.checkout-fields .form-control:focus {
  border-color: #86b7fe;
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.12);
}

.delivery-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.delivery-option {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f7f9fc;
  border: 1px solid #e8edf3;
  border-radius: 16px;
  padding: 10px 12px;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 600;
}

.delivery-option input[type="radio"] {
  accent-color: #0d6efd;
}

#deliveryFields {
  animation: fadeSlideIn 0.2s ease;
}

@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body.cart-open {
  overflow: hidden;
}

/* =========================
   ANIMACIONES
========================= */
.bounce {
  animation: bounceBadge 0.3s ease;
}

@keyframes bounceBadge {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.25);
  }
  100% {
    transform: scale(1);
  }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 767.98px) {
  .navbar {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .store-brand {
    max-width: 52%;
    font-size: 1rem;
  }

  .cart-btn {
    padding: 9px 14px;
    font-size: 0.85rem;
  }

  .cart-text {
    display: none;
  }

  .cart-total-inline {
    font-size: 0.9rem;
    font-weight: 800;
    margin-left: 4px;
  }

  .cart-label {
    display: flex;
    align-items: center;
  }

  .hero-section {
    height: 250px;
    border-radius: 0 0 26px 26px;
  }

  .hero-img,
  .hero-overlay {
    border-radius: 0 0 26px 26px;
  }

  .hero-inner {
    bottom: 25px;
    
  }

  .hero-brand {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
  }

  .hero-logo {
    width: 75px;
    height: 75px;
  }

  .hero-text {
    padding-bottom: 0;
    width: 100%;
  }

  .hero-text h1 {
    font-size: 1.55rem;
    margin-bottom: 4px;
  }

  .hero-text p {
    font-size: 0.95rem;
    line-height: 1.4;
  }

  .product-img {
    height: 150px;
  }

  .catalog-item-featured .product-img {
    height: 220px;
  }

  .product-title {
    font-size: 0.92rem;
    min-height: 38px;
  }

  .catalog-item-featured .product-title {
    font-size: 1rem;
    min-height: 0;
  }

  .product-price {
    font-size: 1.05rem;
  }

  .catalog-item-featured .product-price {
    font-size: 1.2rem;
  }

  .btn-circle {
    width: 42px;
    height: 42px;
    font-size: 1.35rem;
  }

  .add-cart-btn {
    right: 14px;
    bottom: -16px;
  }

  .card-body {
    padding: 1rem 0.85rem 0.9rem;
  }

  .row.products {
    --bs-gutter-x: 0.9rem;
    --bs-gutter-y: 1rem;
  }

  .product-cart-badge {
    top: 10px;
    left: 10px;
    min-width: 24px;
    height: 24px;
    font-size: 0.72rem;
    padding: 0 7px;
  }

  .location-info {
    min-height: auto;
  }

  #store-map {
    height: 260px;
  }

  .modal-dialog {
    margin: 0.75rem;
  }

  .modal-content {
    height: auto;
    max-height: 95vh;
    overflow: hidden;
  }

  .modal-body {
    padding: 0;
    overflow-y: auto;
    height: auto;
  }

  .modal-body .row {
    height: auto;
  }

  .product-modal-content {
    border-radius: 24px;
  }

  .product-modal-image-wrap {
    height: clamp(260px, 38vh, 340px);
    min-height: 260px;
    max-height: 440px;
    overflow: hidden;
  }

  .product-modal-info {
    padding: 1.25rem 1.1rem 1.4rem !important;
  }

  .product-modal-title {
    font-size: 1.35rem;
    line-height: 1.2;
  }

  .product-modal-price {
    font-size: 1.25rem;
  }

  .product-modal-description {
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .custom-close-btn {
    top: 12px;
    right: 12px;
    transform: scale(0.95);
  }

  .qty-control {
    gap: 6px;
    padding: 6px;
  }

  .qty-btn {
    width: 38px;
    height: 38px;
    min-width: 38px;
    min-height: 38px;
    font-size: 1.2rem;
  }

  .qty-input {
    width: 44px;
    min-width: 44px;
    font-size: 0.95rem;
  }

  .cart-drawer {
    width: 100%;
    max-width: 100%;
    height: 100dvh;
    border-radius: 18px 18px 0 0;
  }

  .cart-drawer-body {
    padding: 1rem 1rem 10rem;
  }

  .cart-drawer-footer {
    padding: 0.9rem 1rem calc(1rem + env(safe-area-inset-bottom));
  }

  .cart-item {
    grid-template-columns: 64px 1fr;
  }

  .cart-item-right {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 4px;
  }
}

@media (min-width: 768px) {
  .hero-text h1 {
    font-size: 1.9rem;
  }
}


.promo-includes-box {
  margin-top: 18px;
  padding: 14px;
  border-radius: 18px;
  background: #f8fafc;
  border: 1px solid #edf1f6;
}

.promo-items-table td {
  border: none;
  padding: 8px 6px;
  vertical-align: middle;
}

.promo-item-thumb {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  background: #eef2f7;
}

.promo-item-name {
  font-size: 0.92rem;
  font-weight: 600;
  color: #212529;
  line-height: 1.25;
}

.promo-item-qty {
  display: inline-block;
  min-width: 36px;
  text-align: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e7ebf0;
  font-size: 0.85rem;
  font-weight: 700;
  color: #111;
}

.category-pill.active {
  background: #0d6efd;
  color: #fff;
  box-shadow: 0 8px 18px rgba(13,110,253,0.22);
}

.promo-badge {
  bottom: 12px;
  right: 12px;
  background: rgba(220, 53, 69, 0.95);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
  z-index: 3;
  backdrop-filter: blur(4px);
  box-shadow: 0 6px 14px rgba(220, 53, 69, 0.25);
}

.promo-badge {
  background: linear-gradient(135deg, #ff4d4d, #dc3545);
}

.promo-badge {
  animation: fadeInUp 0.25s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


#catalogSearch {
  border: 1px solid #e8edf3;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  min-height: 46px;
}

#catalogSearch:focus {
  border-color: #86b7fe;
  box-shadow: 0 0 0 0.2rem rgba(13,110,253,0.12);
}

#catalogResultsCount {
  font-size: 0.92rem;
}






.product-option-group {
  margin-bottom: 18px;
}

.product-option-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 10px;
}

.product-option-required {
  color: #dc3545;
  margin-left: 4px;
}

.product-option-values {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-option-chip {
  border: 1px solid #dbe3ec;
  background: #fff;
  color: #212529;
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.18s ease;
  user-select: none;
}

.product-option-chip:hover {
  transform: translateY(-1px);
  border-color: #0d6efd;
}

.product-option-chip.active {
  background: #0d6efd;
  color: #fff;
  border-color: #0d6efd;
  box-shadow: 0 8px 18px rgba(13, 110, 253, 0.18);
}

.coupon-slide {
  padding-bottom:20px;
}
