/* BOLD ROJO — Rojo + Blanco + Montserrat */
:root {
  --bg: #fafafa;
  --bg2: #f0f0f0;
  --white: #fff;
  --text: #1a1a1a;
  --text-dim: #888;
  --red: #c0392b;
  --red-hover: #a93226;
  --red-light: #fdeaea;
  --border: #e0e0e0;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 12px;
  --transition: .3s ease;
}

.bold-0 {
  background: #fdeaea
}

.bold-1 {
  background: #f5e0e0
}

.bold-2 {
  background: #e8d5d5
}

.bold-3 {
  background: #f0e8e8
}

.bold-4 {
  background: #ead0d0
}

.bold-5 {
  background: #f2e5e5
}

.bold-6 {
  background: #e8d8d8
}

.bold-7 {
  background: #f0dede
}

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

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased
}

a {
  text-decoration: none;
  color: inherit
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit
}

input {
  font-family: inherit
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .9rem;
  transition: all var(--transition);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 1px
}

.btn--red {
  background: var(--red);
  color: var(--white)
}

.btn--red:hover {
  background: var(--red-hover);
  transform: translateY(-2px)
}

.btn--white {
  background: var(--white);
  color: var(--red)
}

.btn--white:hover {
  background: rgba(255, 255, 255, .9);
  transform: translateY(-2px)
}

.btn--full {
  width: 100%
}

.section__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 40px
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 250, 250, .95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--red)
}

.header__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.header__logo {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 1px
}

.header__nav {
  display: none;
  align-items: center;
  gap: 32px
}

.header__nav-link {
  font-size: .85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dim);
  transition: color var(--transition)
}

.header__nav-link:hover {
  color: var(--red)
}

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

.header__cart {
  position: relative;
  padding: 6px;
  color: var(--text);
  transition: color var(--transition)
}

.header__cart:hover {
  color: var(--red)
}

.header__cart-badge {
  position: absolute;
  top: -2px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  background: var(--red);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  opacity: 0;
  transform: scale(0);
  transition: all var(--transition)
}

.header__cart-badge.visible {
  opacity: 1;
  transform: scale(1)
}

.header__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px
}

.header__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--red);
  transition: all var(--transition)
}

.header__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px)
}

.header__hamburger.active span:nth-child(2) {
  opacity: 0
}

.header__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px)
}

@media(max-width:768px) {
  .header__nav {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px 20px;
    gap: 20px;
    border-bottom: 2px solid var(--red);
    display: flex;
    align-items: stretch;
    z-index: 1500;
    visibility: hidden;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease, transform .3s ease, visibility .3s ease
  }

  .header__nav.active {
    visibility: visible;
    transform: translateY(0);
    opacity: 1;
    pointer-events: all
  }
}

@media(min-width:769px) {
  .header__nav {
    display: flex
  }

  .header__hamburger {
    display: none
  }
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  z-index: 1500;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition)
}

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

.cart {
  position: fixed;
  top: 0;
  right: 0;
  width: 380px;
  max-width: 90vw;
  height: 100vh;
  background: var(--white);
  z-index: 1600;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s ease;
  box-shadow: -4px 0 24px rgba(0, 0, 0, .15)
}

.cart.active {
  transform: translateX(0)
}

.cart__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 2px solid var(--red)
}

.cart__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px
}

.cart__close {
  font-size: 1.8rem;
  color: var(--text-dim);
  line-height: 1;
  transition: color var(--transition)
}

.cart__close:hover {
  color: var(--red)
}

.cart__body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px
}

.cart__empty {
  text-align: center;
  color: var(--text-dim);
  padding: 40px 0
}

.cart-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  animation: fadeUp .3s ease
}

.cart-item__color {
  width: 60px;
  height: 60px;
  border-radius: var(--radius);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center
}

.cart-item__color-name {
  font-size: .55rem;
  font-weight: 700;
  color: var(--red);
  text-align: center;
  opacity: .6
}

.cart-item__info {
  flex: 1;
  min-width: 0
}

.cart-item__name {
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.cart-item__price {
  font-size: .85rem;
  font-weight: 700;
  color: var(--red)
}

.cart-item__remove {
  align-self: center;
  color: var(--text-dim);
  font-size: 1.2rem;
  padding: 4px;
  transition: color var(--transition)
}

.cart-item__remove:hover {
  color: var(--red)
}

.cart__footer {
  padding: 16px 24px 24px;
  border-top: 2px solid var(--red);
  display: none
}

.cart__footer.visible {
  display: block
}

.cart__total {
  display: flex;
  justify-content: space-between;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--red) 0%, #1a1a1a 100%)
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 20px
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 800;
  color: var(--white);
  line-height: .9;
  letter-spacing: -2px;
  margin-bottom: 16px;
  animation: fadeUp .8s ease
}

.hero__subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, .7);
  margin-bottom: 32px;
  animation: fadeUp .8s ease .2s both
}

.hero .btn {
  animation: fadeUp .8s ease .4s both
}

.catalog {
  padding: 80px 20px;
  background: var(--bg)
}

.catalog__container {
  max-width: 800px;
  margin: 0 auto
}

.catalog__controls {
  margin-bottom: 32px
}

.catalog__search {
  width: 100%;
  padding: 14px 20px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: .95rem;
  background: var(--white);
  outline: none;
  transition: border-color var(--transition)
}

.catalog__search:focus {
  border-color: var(--red)
}

.catalog__filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 16px
}

.filter-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 120px;
  padding: 10px 8px 12px;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text-dim);
  border: 2px solid var(--border);
  transition: all var(--transition)
}

.filter-btn img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--border);
  transition: all var(--transition)
}

.filter-btn span {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px
}

.filter-btn:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px)
}

.filter-btn:hover img {
  border-color: var(--red)
}

.filter-btn.active {
  background: var(--red);
  color: var(--white);
  border-color: var(--red)
}

.filter-btn.active img {
  border-color: var(--white)
}

.catalog__feed {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.catalog__no-results {
  display: none;
  text-align: center;
  color: var(--text-dim);
  padding: 60px 20px
}

.feed-card {
  display: flex;
  gap: 16px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: border-color var(--transition), transform var(--transition);
  animation: fadeUp .5s ease both
}

.feed-card:hover {
  border-color: var(--red);
  transform: translateX(4px)
}

.feed-card__placeholder {
  width: 120px;
  min-height: 120px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden
}

.feed-card__placeholder span {
  font-size: .7rem;
  font-weight: 700;
  color: rgba(192, 57, 43, .4);
  text-align: center;
  padding: 8px
}

.feed-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover
}

.feed-card__info {
  flex: 1;
  padding: 16px 16px 16px 0;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.feed-card__cat {
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-dim);
  margin-bottom: 4px
}

.feed-card__name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px
}

.feed-card__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px
}

.feed-card__price {
  font-weight: 700;
  color: var(--red)
}

.feed-card__add {
  padding: 8px 16px;
  border: 2px solid var(--border);
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  transition: all var(--transition);
  background: var(--white);
  color: var(--text)
}

.feed-card__add:hover {
  border-color: var(--red);
  background: var(--red);
  color: var(--white)
}

.feed-card__add.added {
  border-color: #25D366;
  background: #e8faf0;
  color: #1ebe57
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease
}

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

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .6);
  backdrop-filter: blur(4px)
}

.modal__content {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  max-width: 600px;
  width: 92%;
  max-height: 88vh;
  overflow-y: auto;
  border: 2px solid var(--red);
  transform: scale(.9);
  transition: transform .3s ease
}

.modal.active .modal__content {
  transform: scale(1)
}

.modal__close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 1.8rem;
  color: var(--red);
  z-index: 2;
  transition: opacity var(--transition)
}

.modal__close:hover {
  opacity: .6
}

.modal__body {
  display: flex;
  flex-direction: column
}

.modal__image-wrapper {
  width: 100%;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden
}

.modal__image-wrapper span {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: rgba(192, 57, 43, .3)
}

.modal__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover
}

.modal__info {
  padding: 24px
}

.modal__category {
  display: inline-block;
  padding: 4px 12px;
  background: var(--red-light);
  color: var(--red);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 100px;
  margin-bottom: 12px
}

.modal__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 8px
}

.modal__price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 12px
}

.modal__description {
  color: var(--text-dim);
  margin-bottom: 20px;
  line-height: 1.7
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, .4)
  }

  50% {
    box-shadow: 0 4px 28px rgba(37, 211, 102, .6)
  }
}

.ubicacion {
  padding: 80px 20px;
  background: var(--bg2)
}

.ubicacion__container {
  max-width: 800px;
  margin: 0 auto
}

.ubicacion__map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 3px solid var(--red);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .1)
}

.ubicacion__map iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0
}

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
  z-index: 999;
  transition: transform var(--transition);
  animation: pulse 2s infinite
}

.whatsapp-float:hover {
  transform: scale(1.1)
}

.footer {
  background: var(--red);
  color: var(--white);
  text-align: center
}

.footer__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 20px 24px
}

.footer__sections {
  display: flex;
  justify-content: center;
  margin-bottom: 32px
}

.footer__section {
  width: 100%;
  max-width: 600px
}

.footer__heading {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px
}

.footer__contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 40px
}

.footer__contact-item h4 {
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, .75);
  margin-bottom: 6px;
  font-weight: 700
}

.footer__contact-item p,
.footer__contact-item a {
  color: var(--white);
  font-size: .9rem;
  transition: color var(--transition)
}

.footer__contact-item a:hover {
  color: #1a1a1a
}

.footer__socials {
  display: flex;
  gap: 12px;
  justify-content: center
}

.footer__socials a {
  width: 40px;
  height: 40px;
  border: 2px solid var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition)
}

.footer__socials a:hover {
  background: var(--white);
  color: var(--red);
  transform: translateY(-2px)
}

.footer__bottom {
  border-top: 2px solid rgba(255, 255, 255, .3);
  padding-top: 24px
}

.footer__brand {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px
}

.footer__copy {
  font-size: .7rem;
  color: rgba(255, 255, 255, .6)
}

.in-cart-style {
  background: #e8faf0;
  color: #1ebe57;
  border: 2px solid #25D366
}

.cart-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius)
}