@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Open+Sans:wght@400;500;600&display=swap');

:root {
  --primary: #FF6B6B;
  --secondary: #4ECDC4;
  --accent: #FFD166;
  --background: #F7F9FC;
  --text: #2B2D42;
  --text-light: #8D99AE;
  --border: #E0E0E0;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  --radius: 8px;
}

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

html, body {
  width: 100%;
  height: 100%;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background: var(--background);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

/* ===== HEADER ===== */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background: white;
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header__logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.header__logo-img {
  height: 34px;
  width: auto;
  max-width: min(200px, 42vw);
}

.header__logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

.header__cart-icon {
  position: relative;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.25rem;
  color: var(--text);
  line-height: 0;
}

.header__cart-svg,
.sticky-cart-bar__svg {
  width: 1.5rem;
  height: 1.5rem;
}

.header__cart-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--accent);
  color: var(--text);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

@media (min-width: 769px) {
  .header {
    padding: 1.5rem 2rem;
  }

  .header__logo {
    font-size: 2rem;
  }
}

/* ===== HERO ===== */
.hero {
  text-align: center;
  padding: 2rem 1.5rem;
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
}

.hero__eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.hero__headline {
  font-size: 1.75rem;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.hero__subhead {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.hero__cta {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 0.75rem 2rem;
  min-height: 44px;
  border: none;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.hero__cta:hover {
  background: #ff5252;
}

@media (min-width: 769px) {
  .hero {
    padding: 4rem 2rem;
  }

  .hero__headline {
    font-size: 2.5rem;
  }

  .hero__subhead {
    font-size: 1.25rem;
  }
}

/* ===== TRUST STRIP ===== */
.trust-strip {
  display: flex;
  justify-content: space-around;
  padding: 1rem;
  background: white;
  font-size: 0.875rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.trust-strip__item {
  flex: 1;
}

.trust-strip__label {
  color: var(--text-light);
}

@media (min-width: 769px) {
  .trust-strip {
    padding: 1.5rem;
    font-size: 1rem;
  }
}

/* ===== MODEL SELECTOR ===== */
.model-selector {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: white;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  position: sticky;
  top: 60px;
  z-index: 99;
}

.model-selector__tab {
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--border);
  background: white;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 600;
  color: var(--text-light);
  transition: all 0.3s;
  white-space: nowrap;
  font-family: 'Poppins', sans-serif;
}

.model-selector__tab--active {
  border-color: var(--primary);
  background: var(--primary);
  color: white;
}

.model-selector__dropdown {
  padding: 0.75rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  cursor: pointer;
  background: white;
  font-family: 'Open Sans', sans-serif;
}

@media (min-width: 769px) {
  .model-selector {
    padding: 1.5rem;
    top: 80px;
  }

  .model-selector__tab {
    padding: 1rem 2rem;
  }

  .model-selector__dropdown {
    padding: 1rem 1.5rem;
  }
}

/* ===== CATEGORY CHIPS ===== */
.category-chips {
  display: flex;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  overflow-x: auto;
  background: white;
  border-bottom: 1px solid var(--border);
}

.category-chip {
  padding: 0.5rem 1rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s;
  font-size: 0.875rem;
  font-weight: 500;
}

.category-chip:hover {
  border-color: var(--secondary);
}

.category-chip--selected {
  background: var(--secondary);
  color: white;
  border-color: var(--secondary);
}

@media (min-width: 769px) {
  .category-chips {
    padding: 1.5rem;
    justify-content: center;
    gap: 1rem;
  }

  .category-chip {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
}

/* ===== PRODUCT GRID ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.product-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  background: var(--primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-card__image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: var(--background);
  mix-blend-mode: multiply;
  filter: url(#mockup-rm-white);
  transform: scale(1.06);
  transform-origin: center center;
  transition: transform 0.35s ease;
}

.product-card:hover .product-card__image {
  transform: scale(1.1);
}

.product-card__body {
  padding: 1rem;
}

.product-card__title {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.3;
  min-height: 2.6em;
}

.product-card__price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.product-card__add-button {
  width: 100%;
  padding: 0.75rem;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s, transform 0.2s;
}

.product-card__add-button:active {
  transform: scale(0.98);
}

.product-card__add-button:hover {
  background: #ff5252;
}

@media (min-width: 481px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 1.5rem;
  }
}

@media (min-width: 769px) {
  .product-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    padding: 2rem;
  }

  .product-card__title {
    font-size: 1rem;
  }

  .product-card__price {
    font-size: 1.125rem;
  }
}

/* ===== SOCIAL PROOF ===== */
.social-proof {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border-top: 1px solid var(--border);
}

.social-proof__text {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.social-proof__stars {
  color: var(--accent);
  font-size: 1.2rem;
  margin: 0 0.5rem;
}

.social-proof__rating {
  color: var(--text-light);
}

@media (min-width: 769px) {
  .social-proof {
    padding: 3rem 2rem;
  }

  .social-proof__text {
    font-size: 1.25rem;
  }
}

/* ===== CART DRAWER ===== */
.cart-drawer {
  position: fixed;
  right: -350px;
  top: 0;
  width: 350px;
  height: 100vh;
  background: white;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
  z-index: 200;
  overflow-y: auto;
  transition: right 0.3s;
}

.cart-drawer--open {
  right: 0;
}

.cart-drawer__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.cart-drawer__title {
  font-size: 1.25rem;
  font-weight: 700;
}

.cart-drawer__close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
}

.cart-drawer__items {
  padding: 1.5rem;
}

.cart-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.cart-item__image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--background);
}

.cart-item__details {
  flex: 1;
}

.cart-item__title {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.cart-item__model {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

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

.cart-item__remove {
  background: none;
  border: none;
  color: var(--text-light);
  cursor: pointer;
  font-size: 1.2rem;
}

.cart-drawer__summary {
  padding: 1.5rem;
  background: var(--background);
  border-top: 1px solid var(--border);
  position: sticky;
  bottom: 0;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.cart-summary-row--total {
  font-size: 1.25rem;
  font-weight: 700;
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
  margin-top: 0.75rem;
}

.cart-drawer__checkout {
  width: 100%;
  padding: 1rem;
  margin-top: 1rem;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  font-size: 1rem;
}

.cart-drawer__checkout:hover {
  background: #ff5252;
}

.cart-drawer__empty {
  text-align: center;
  padding: 3rem 1.5rem;
  color: var(--text-light);
}

@media (min-width: 769px) {
  .cart-drawer {
    width: 400px;
    right: -400px;
  }
}

/* ===== STICKY MOBILE CART BAR ===== */
.sticky-cart-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-top: 1px solid var(--border);
  padding: 1rem;
  z-index: 150;
}

.sticky-cart-bar--show {
  display: flex;
}

.sticky-cart-bar {
  justify-content: space-between;
  align-items: center;
}

.sticky-cart-bar__info {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}

.sticky-cart-bar__icon {
  font-size: 1.5rem;
}

.sticky-cart-bar__count {
  font-size: 0.875rem;
  color: var(--text-light);
}

.sticky-cart-bar__price {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--primary);
}

.sticky-cart-bar__checkout {
  padding: 0.75rem 1.5rem;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 600;
  white-space: nowrap;
}

@media (min-width: 769px) {
  .sticky-cart-bar {
    display: none !important;
  }
}

/* ===== PRODUCT DETAIL PAGE ===== */
.breadcrumb {
  padding: 1rem 1.5rem;
  font-size: 0.875rem;
  background: white;
  border-bottom: 1px solid var(--border);
}

.breadcrumb__link {
  color: var(--secondary);
  text-decoration: none;
}

.breadcrumb__link:hover {
  text-decoration: underline;
}

.product-detail {
  padding: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.product-gallery {
  margin-bottom: 2rem;
}

.product-gallery__main {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  background: var(--background);
}

.product-gallery__thumbs {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
}

.product-gallery__thumb {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius);
  cursor: pointer;
  border: 2px solid var(--border);
  background: var(--background);
}

.product-gallery__thumb--active {
  border-color: var(--primary);
}

.product-info {
  background: white;
  padding: 1.5rem;
  border-radius: var(--radius);
}

.product-info__title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.product-info__price {
  font-size: 1.75rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.product-info__model-selector {
  margin-bottom: 1.5rem;
}

.product-info__model-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.product-info__model-select {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: 'Open Sans', sans-serif;
}

.product-info__add-button {
  width: 100%;
  padding: 1rem;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.product-info__add-button:hover {
  background: #ff5252;
}

.product-info__add-button:disabled {
  background: var(--text-light);
  cursor: not-allowed;
}

.product-info__description {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (min-width: 769px) {
  .product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
  }

  .product-gallery {
    margin-bottom: 0;
  }

  .product-info {
    position: sticky;
    top: 100px;
    height: fit-content;
  }

  .product-info__title {
    font-size: 2rem;
  }
}

/* ===== CHECKOUT PAGE ===== */
.checkout-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 1.5rem;
}

@media (min-width: 769px) {
  .checkout-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2rem;
  }
}

.checkout-form {
  background: white;
  padding: 1.5rem;
  border-radius: var(--radius);
}

.form-section {
  margin-bottom: 2rem;
}

.form-section__title {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.form-group {
  margin-bottom: 1rem;
}

.form-group__label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-group__input {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
}

.form-group__input:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group--half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group--half .form-group__input {
  width: 100%;
}

.stripe-element {
  padding: 0.75rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
}

.stripe-element--focus {
  border-color: var(--primary);
}

.checkout-submit {
  width: 100%;
  padding: 1rem;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 1.5rem;
}

.checkout-submit:hover:not(:disabled) {
  background: #ff5252;
}

.checkout-submit:disabled {
  background: var(--text-light);
  cursor: not-allowed;
}

.checkout-summary {
  background: white;
  padding: 1.5rem;
  border-radius: var(--radius);
  position: sticky;
  top: 100px;
  height: fit-content;
}

.checkout-summary__title {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.checkout-summary__item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.checkout-summary__image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--background);
}

.checkout-summary__details {
  flex: 1;
}

.checkout-summary__name {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.checkout-summary__model {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.checkout-summary__price {
  font-weight: 700;
  color: var(--primary);
}

.checkout-summary__totals {
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.checkout-summary__row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.checkout-summary__row--total {
  font-size: 1.25rem;
  font-weight: 700;
}

.checkout-summary__badge {
  margin-top: 1rem;
  padding: 0.75rem;
  background: var(--accent);
  border-radius: var(--radius);
  font-size: 0.875rem;
  text-align: center;
  font-weight: 600;
}

@media (max-width: 768px) {
  .checkout-summary {
    position: static;
  }

  .checkout-summary__item {
    flex-direction: column;
  }
}

/* ===== SUCCESS PAGE ===== */
.success-container {
  text-align: center;
  padding: 3rem 1.5rem;
  max-width: 600px;
  margin: 0 auto;
}

.success-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.success-container__headline {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.success-container__body {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.success-container__order-number {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--primary);
}

.success-container__cta {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--primary);
  color: white;
  text-decoration: none;
  border-radius: var(--radius);
  font-weight: 600;
  transition: background 0.3s;
}

.success-container__cta:hover {
  background: #ff5252;
}

/* ===== LEGAL PAGES ===== */
.legal-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  background: white;
  line-height: 1.8;
}

.legal-container__title {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.legal-container h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-container p {
  margin-bottom: 1rem;
}

.legal-container ul,
.legal-container ol {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.legal-container li {
  margin-bottom: 0.5rem;
}

/* ===== TOAST NOTIFICATION ===== */
.toast {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 300;
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateX(-50%) translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
}

.toast--success {
  border-left: 4px solid var(--secondary);
}

.toast--error {
  border-left: 4px solid var(--primary);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--text);
  color: white;
  padding: 2rem 1.5rem;
  margin-top: 3rem;
}

.footer__content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}

.footer__section-title {
  font-family: 'Poppins', sans-serif;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.footer__link {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer__link:hover {
  color: white;
}

.footer__bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
  .footer__content {
    grid-template-columns: 1fr;
  }
}

/* ===== UTILITIES ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
}

.loading {
  opacity: 0.6;
  pointer-events: none;
}

.error {
  color: var(--primary);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.trust-strip__icon {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.product-grid__loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-light);
}

.product-grid__skeleton {
  aspect-ratio: 1;
  border-radius: var(--radius);
  background: linear-gradient(90deg, #eee 25%, #f5f5f5 50%, #eee 75%);
  background-size: 200% 100%;
  animation: skeletonShimmer 1.2s infinite;
  min-height: 220px;
}

@keyframes skeletonShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.page-404 {
  text-align: center;
  padding: 4rem 1.5rem;
}

.page-404 h1 {
  font-size: 4rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.footer__brand {
  text-align: center;
  margin-bottom: 1.5rem;
}

.footer__mark {
  margin-bottom: 0.5rem;
}

.footer__tagline {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.shipping-alert {
  margin: 0 1rem 1rem;
  padding: 0.75rem 1rem;
  background: #fff8e6;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  text-align: center;
  font-size: 0.95rem;
}

.shipping-alert--free {
  background: #e8fbf9;
  border-color: var(--secondary);
}

.header__cart-badge--pulse {
  animation: cartPulse 0.3s ease;
}

@keyframes cartPulse {
  50% { transform: scale(1.15); }
}

.cart-item__qty {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.35rem;
}

.cart-item__qty-btn {
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
}

.footer__payments {
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
  opacity: 0.85;
}

.checkout-trust {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.checkout-trust img {
  height: 32px;
  width: auto;
}

@media (max-width: 768px) {
  .cart-drawer {
    width: 100vw;
    max-width: 100vw;
    border-radius: 20px 20px 0 0;
  }
}

.hidden {
  display: none !important;
}
