:root {
  --preto: #0b0b0c;
  --azul-petroleo: #0f2b38;
  --azul-escuro: #0b1e3c;
  --azul-claro: #0a84ff;
  --vermelho: #e11d2a;
  --rosa: #ff3b8a;
  --cinza: #f5f6f8;
  --texto: #111827;
  --amber: #f59e0b;
}

* {
  box-sizing: border-box
}

body {
  color: var(--texto);
  background: #fff;
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, sans-serif;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

html {
  width: 100%;
}

/* Fix mobile bars overflow */
.mobile-header,
.mobile-bottom-bar,
.sticky-search {
  max-width: 100%;
}

img {
  max-width: 100%;
  height: auto;
}

.badge-amber {
  background: var(--amber)
}

.title-line {
  min-height: 40px
}

.product-card {
  position: relative;
  width: 100%;
  border: 1px solid #e6eaf1;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(0, 0, 0, .06);
  transition: transform .15s, box-shadow .15s, border-color .15s;
  background: #fff
}

.product-grid .product-card {
  max-width: 100%;
}

.product-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  /* Mobile default */
}

@media (min-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

.product-card:hover,
.product-card:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .1);
  border-color: var(--rosa)
}

/* Permite card subir no hover sem ser clipado pelo Swiper */
[class*="swiper-products-"] {
  overflow: visible !important;
  padding-top: 4px;
}

.product-thumb {
  aspect-ratio: 1/1;
  width: 100%;
  height: auto;
  object-fit: cover;
  background: #fff;
  display: block;
  transition: opacity 0.3s ease-in-out;
}

.product-thumb.fading {
  opacity: 0.2;
}

.mega-sub-link {
  color: #555;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  display: block;
  padding: 4px 0;
  border-radius: 4px;
}

.mega-sub-link:hover {
  color: var(--azul-claro);
  padding-left: 8px;
  background: #f8f9fa;
}

.price {
  font-weight: 800;
  font-size: 1.25rem;
  line-height: 1;
  color: var(--preto)
}

.price-promo {
  color: var(--vermelho)
}

.price-old {
  color: #9ca3af;
  text-decoration: line-through;
  font-size: .95rem
}

.price-sub {
  font-size: .95rem;
  color: #6b7280;
  margin-top: 2px
}

.qty {
  display: flex;
  align-items: center;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden
}

.qty button {
  width: 32px;
  height: 32px;
  border: 0;
  background: #fff
}

.qty input {
  width: 40px;
  height: 32px;
  border: 0;
  text-align: center
}

.btn-cart {
  background: var(--azul-escuro);
  border-color: var(--azul-escuro);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .5rem .75rem;
}

.btn-cart .label {
  font-weight: 700
}

.btn-cart:hover,
.btn-cart:focus,
.btn-cart:active {
  background: var(--azul-claro) !important;
  border-color: var(--azul-claro) !important;
  color: #fff !important;
}

.btn-wa-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  background: #ecfdf5;
  border: 2px solid var(--rosa);
  color: #111;
  border-radius: 12px;
  padding: .5rem .7rem;
  font-weight: 700;
  white-space: nowrap;
  font-size: .92rem;
  line-height: 1.05;
}

.btn-wa-line i {
  color: #25d366;
  margin-right: .35rem
}

.added-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  aspect-ratio: 1/1;
  /* Match product-thumb ratio */
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, .9);
  color: #fff;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: .5px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  border-radius: 0;
  text-align: center;
  line-height: 1.15;
  padding: 0 6px;
}

@media (max-width: 767.98px) {
  .added-overlay {
    font-size: 0.82rem;
    letter-spacing: 0;
    font-weight: 700;
  }

  .added-overlay i {
    font-size: 0.95em;
  }
}

.page-vitrine .vitrine-php-grid .added-overlay {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0;
}

@media (max-width: 767.98px) {
  .page-vitrine .vitrine-php-grid .added-overlay {
    font-size: 0.58rem;
    padding: 0 3px;
  }

  .page-vitrine .vitrine-php-grid .added-overlay i {
    font-size: 0.62rem;
    margin-right: 0.15rem !important;
  }
}

.product-card.show-added .added-overlay,
.added-overlay.active {
  opacity: 1
}

.added-badge {
  position: absolute;
  top: 50px; /* Below the 32px heart + margin */
  right: 10px;
  z-index: 10;
  background: #10b981;
  color: #fff;
  font-weight: 800;
  font-size: .75rem;
  border-radius: 999px;
  padding: .25rem .5rem;
  display: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .2)
}

.product-card.has-in-cart .added-badge,
.added-badge.active {
  display: inline-flex;
  align-items: center;
  gap: .25rem
}

.h-carousel {
  position: relative
}

.h-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  padding: 4px 24px 12px
}

.h-track {
  scrollbar-width: none
}

.h-track::-webkit-scrollbar {
  display: none
}

.h-item {
  scroll-snap-align: start;
  flex: 0 0 auto
}

.product-carousel .h-item {
  flex: 0 0 auto
}

.h-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .06);
}

.h-arrow.left {
  left: -30px
}

.h-arrow.right {
  right: -30px
}

.h-arrow:disabled {
  opacity: .4
}

@media (max-width: 768px) {
  .h-arrow {
    display: none !important;
  }
}

.h-item .product-card {
  width: 260px
}

.cat-circle-card {
  width: 150px;
  text-align: center
}

.cat-circle-thumb {
  width: 140px;
  height: 140px;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  box-shadow: none !important;
  border: 0 !important
}

.cat-circle-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.cat-circle-name {
  font-weight: 800;
  font-size: .95rem;
  line-height: 1.2
}

.cat-circle-card.no-label .cat-circle-name {
  display: none
}

.nov-card {
  background: #fff;
  border: 1px solid #eceff3;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, .08);
  overflow: hidden;
  display: flex;
  flex-direction: column
}

.nov-thumb {
  height: 150px;
  background: #f3f4f6;
  overflow: hidden
}

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

.nov-body {
  padding: .75rem;
  display: flex;
  flex-direction: column;
  gap: .35rem
}

.nov-title {
  font-size: .95rem;
  font-weight: 700;
  margin: 0
}

.nov-price {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--preto)
}

.nov-price-old {
  font-size: .85rem;
  color: #9ca3af;
  text-decoration: line-through;
  margin-top: -.2rem
}

.nov-actions {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  margin-top: .25rem
}

.chip {
  display: inline-block;
  padding: .15rem .6rem;
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 700;
  margin-right: .25rem
}

.chip-primary {
  background: #fee2e2;
  color: #c0265c
}

.chip-secondary {
  background: #e0e7ff;
  color: #312e81
}

.nov-card .btn-cart {
  width: 100%;
  justify-content: center
}

.nov-card .qty {
  width: 100%
}

.nov-card .btn-wa-line {
  font-size: .8rem;
  padding: .45rem .5rem
}

.novidades-slider {
  display: none;
  margin-bottom: 1.5rem
}

.nov-slider-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 14px 10px
}

.nov-slider-track::-webkit-scrollbar {
  display: none
}

.nov-slide {
  flex: 0 0 100%;
  max-width: 100%;
  scroll-snap-align: start
}

.nov-slide-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px
}

.nov-slide .nov-card {
  height: 100%;
  width: 100%
}

.nov-slider-dots {
  display: flex;
  justify-content: center;
  gap: 6px
}

.nov-slider-dots button {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  background: #e5e7eb
}

.nov-slider-dots button.active {
  background: var(--rosa)
}

.mobile-bottom-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border-top: 1px solid #eee;
  z-index: 1032
}

.mobile-bottom-bar .col {
  text-align: center;
  padding: .45rem 0;
  cursor: pointer
}

.mobile-bottom-bar .col i {
  font-size: 1.35rem
}

.mobile-bottom-bar .label {
  display: block;
  font-size: .85rem;
  margin-top: .1rem;
  font-weight: 600
}

.mobile-bottom-bar .col a {
  color: inherit;
  text-decoration: none;
  display: block
}

.mobile-search-sheet {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, .4);
  z-index: 1034;
  display: flex;
  align-items: flex-end;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s
}

.mobile-search-sheet.open {
  opacity: 1;
  pointer-events: all
}

.sheet-panel {
  background: #fff;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  padding: 1rem;
  width: 100%;
  min-height: 260px;
  transform: translateY(100%);
  transition: transform .3s
}

.mobile-search-sheet.open .sheet-panel {
  transform: translateY(0)
}

.sheet-header button {
  font-size: 1.5rem;
  color: #111;
  border: 0;
  background: none
}

.mobile-search-list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  max-height: 150px;
  overflow-y: auto
}

.mobile-search-list li {
  padding: .35rem 0;
  border-bottom: 1px solid #f3f4f6;
  display: flex;
  align-items: center;
  gap: .35rem;
  cursor: pointer
}

.mobile-search-list li i {
  color: #0a84ff
}

.mobile-search-list li.empty {
  color: #9ca3af;
  cursor: default
}

.search-input-wrapper {
  display: flex;
  gap: .35rem
}

.search-input-wrapper input {
  flex: 1
}

.sheet-open {
  overflow: hidden
}

@media (max-width:575.98px) {
  body {
    padding-bottom: 90px;
    padding-top: 54px;
    /* Height of fixed mobile header */
  }

  /* Mobile Product Card Tweak */
  .title-line {
    font-size: 0.75rem;
    line-height: 1.2;
    height: 2.4em;
    /* ~2 lines */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    /* Standard property */
    -webkit-box-orient: vertical;
    white-space: normal;
    text-overflow: ellipsis;
  }

  /* Ensure sub-info is visible and scales down */
  .price-sub,
  .price-sub span,
  .price-sub i {
    font-size: 0.6rem !important;
    white-space: nowrap !important;
    line-height: 1.1;
  }

  /* Mobile (Base) */
  .product-card .product-title-dynamic {
    font-size: 11px !important;
    /* Extremely small for mobile 2 lines */
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.25;
    margin-bottom: 0.25rem !important;
    color: #333;

    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    height: 2.5em;
  }

  /* Desktop (Tablet+) */
  @media (min-width: 768px) {
    .product-card .product-title-dynamic {
      font-size: 11px !important;
      /* Kept small (11px) to fit 5 cols */

      -webkit-line-clamp: 3 !important;
      height: 3.8em;
    }
  }

  .badge-new {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 5;
    background: #0ea5e9;
    /* Sky blue */
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }

  .price-sub .swap-msg {
    display: flex;
    flex-direction: column;
    height: 1.25em;
    /* Fixed height for 1 line */
    overflow: hidden;
  }

  .price-sub .swap-msg span {
    display: block;
    height: 100%;
    animation: swapMsg 6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    flex-shrink: 0;
  }

  @keyframes swapMsg {

    0%,
    45% {
      transform: translateY(0);
    }

    50%,
    95% {
      transform: translateY(-100%);
    }

    100% {
      transform: translateY(-200%);
    }

    /* Loop logic usually just 2 items */
  }

  /* Mobile Tabs */
  .mobile-scroll-tabs {
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
  }

  .mobile-scroll-tabs::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
  }

  .mobile-scroll-tabs .nav-link {
    font-size: 0.75rem !important;
    padding: 0.5rem 0.2rem !important;
  }

  .mobile-scroll-tabs .nav-item:not(:last-child)::after {
    content: '|';
    color: #ccc;
    margin: 0 4px;
    font-size: 0.8rem;
    vertical-align: middle;
  }

  .mobile-scroll-tabs .nav-item {
    display: flex;
    align-items: center;
  }

  /* Fix Qty Selector Sizing */
  .qty button {
    width: 25px;
    height: 30px;
  }

  .qty input {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
    padding: 0;
  }

  /* Compact Cart Button */
  .btn-cart {
    padding: 0.4rem 0.6rem;
    font-size: 0.85rem;
    font-weight: 700 !important;
    /* Bold as requested */
  }

  /* WhatsApp Dúvida Button */
  .btn-wa-line {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    background-color: #ecfdf5;
    /* Light green */
    border: 1px solid #f472b6;
    /* Pink */
    color: #000;
    font-weight: 800;
    /* Bold */
    text-decoration: underline;
    border-radius: 999px;
    /* Pill shape */
    padding: 0.35rem 1rem;
    transition: all 0.2s;
  }

  .btn-wa-line:hover {
    background-color: #d1fae5;
    color: #000;
  }

  .btn-wa-line i {
    color: #25D366;
    /* WhatsApp Green Icon */
    font-size: 1rem;
    margin-right: 2px;
  }

  /* WhatsApp Text Swap */


  .product-carousel .h-track {
    padding: 0 14px 10px;
    gap: 14px
  }

  .product-carousel .h-item {
    flex: 0 0 calc(50% - 12px);
    max-width: calc(50% - 12px);
    min-width: calc(50% - 12px)
  }

  .product-carousel .h-item .product-card {
    width: 100% !important;
    max-width: none
  }

  .novidades-slider {
    display: block
  }

  .nov-slide-inner .nov-actions {
    flex-direction: row;
    align-items: center;
    gap: .5rem
  }

  .nov-slide-inner .nov-actions .qty {
    flex: 0 0 90px
  }

  .nov-slide-inner .nov-actions .btn-cart {
    flex: 1
  }

  .nov-slide .btn-wa-line {
    font-size: .75rem;
    padding: .4rem .45rem
  }

  .h-arrow.left {
    left: -12px
  }

  .h-arrow.right {
    right: -12px
  }

  .btn-cart .label {
    display: none
  }
}

.container-xl {
  max-width: 1400px
}

/* Footer Redesign */
footer {
  background: #fff;
  border-top: 1px solid #eee;
  padding-top: 3rem;
  padding-bottom: 2rem;
  margin-top: 3rem;



  color: #666;
  font-size: 0.9rem;
}

.footer-title {
  color: #e11d2a;
  /* Red/Pink from image */
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.footer-text {
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #e11d2a;
  text-decoration: underline;
}

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-contact-icon {
  font-size: 1.5rem;
  color: #e11d2a;
  line-height: 1;
}

.footer-contact-info strong {
  display: block;
  color: #fff;
  font-weight: 700;
}

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.payment-icon {
  width: 40px;
  height: 25px;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: bold;
  color: #555;
}

.security-badges {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.security-badge {
  max-width: 120px;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-social a {
  color: #e11d2a;
  font-size: 1.5rem;
}

/* Instagram Feed */
.insta-section {
  margin-bottom: 3rem;
  text-align: center;
}

.insta-title {
  font-weight: 800;
  font-size: 1.5rem;
  color: #0f2b38;
  /* Dark Blue */
  margin-bottom: 1.5rem;
}

.insta-feed {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0 1rem 1rem;
  scrollbar-width: none;
  /* Firefox */
  justify-content: center;
}

.insta-feed::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari */
}

.insta-item {
  flex: 0 0 200px;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1/1;
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.insta-item:hover img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .insta-item {
    flex: 0 0 140px;
  }
}

/* Badges */
.badge-discount {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
  background: #fbbf24;
  color: #78350f;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.badge-new {
  position: absolute;
  top: 10px;
  right: 10px;
  /* Default right, acts as fallback */
  z-index: 3;
  background: #0ea5e9;
  color: #fff;
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 99px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Shipping Message Swap Animation (3 steps) */
.price-sub {
  height: 1.5em;
  overflow: hidden;
  position: relative;
  color: #10b981;
  /* Green success color */
  font-weight: 500;
  font-size: 0.85rem;
}

.swap-msg {
  display: flex;
  flex-direction: column;
  animation: swap-text-3 9s infinite;
}

.swap-msg span {
  height: 1.5em;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

/* Prova social: laranja (não herdar verde do .price-sub) */
.price-sub .swap-msg .social-proof-fire,
.swap-msg .social-proof-fire {
  color: #ea580c !important;
  font-weight: 600;
}

@keyframes swap-text-3 {

  0%,
  30% {
    transform: translateY(0);
  }

  33%,
  63% {
    transform: translateY(-1.5em);
  }

  66%,
  96% {
    transform: translateY(-3.0em);
  }

  100% {
    transform: translateY(0);
  }
}

/* Carousel Dots (Fixed Scope) */
.h-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.h-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #e5e7eb;
  border: none;
  padding: 0;
  transition: background-color 0.2s, transform 0.2s;
  cursor: pointer;
}

.h-dot.active {
  background-color: #e11d2a;
  transform: scale(1.1);
}

/* Social proof: rotação com número variável de linhas (swap-msg--steps-N) */
.swap-msg--static {
  animation: none !important;
}

.swap-msg--steps-2 {
  animation: swapSteps2 6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.swap-msg--steps-3 {
  animation: swap-text-3 9s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.swap-msg--steps-4 {
  animation: swapSteps4 12s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.swap-msg--steps-5 {
  animation: swapSteps5 15s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.swap-msg--steps-6 {
  animation: swapSteps6 18s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes swapSteps2 {

  0%,
  45% {
    transform: translateY(0);
  }

  50%,
  95% {
    transform: translateY(-1.5em);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes swapSteps4 {

  0%,
  20% {
    transform: translateY(0);
  }

  25%,
  45% {
    transform: translateY(-1.5em);
  }

  50%,
  70% {
    transform: translateY(-3em);
  }

  75%,
  95% {
    transform: translateY(-4.5em);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes swapSteps5 {

  0%,
  16% {
    transform: translateY(0);
  }

  20%,
  36% {
    transform: translateY(-1.5em);
  }

  40%,
  56% {
    transform: translateY(-3em);
  }

  60%,
  76% {
    transform: translateY(-4.5em);
  }

  80%,
  96% {
    transform: translateY(-6em);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes swapSteps6 {

  0%,
  13% {
    transform: translateY(0);
  }

  16%,
  29% {
    transform: translateY(-1.5em);
  }

  33%,
  46% {
    transform: translateY(-3em);
  }

  50%,
  63% {
    transform: translateY(-4.5em);
  }

  66%,
  79% {
    transform: translateY(-6em);
  }

  83%,
  96% {
    transform: translateY(-7.5em);
  }

  100% {
    transform: translateY(0);
  }
}

@media (max-width: 991.98px) {

  /* Comportamento Padrão Bootstrap para Mobile */
  #cartDrawer.offcanvas-end {
    --bs-offcanvas-width: 100%;
    /* Garante 100% da largura em mobile/tablet */
    border-left: 0 !important;
  }
}