/* CSS DA LOJA VISIONÁRIO - DESIGN IDENTICO AO SITE OFICIAL */
:root {
  --bg-black: #000000;
  --bg-dark: #0a0a0a;
  --bg-card: #171717;
  --bg-card-hover: #262626;
  --green: #22c55e;
  --green-hover: #4ade80;
  --green-light: rgba(34, 197, 94, 0.15);
  --text-white: #ffffff;
  --text-gray: #a3a3a3;
  --border-dark: rgba(255, 255, 255, 0.1);
  --font-main: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Bebas Neue', sans-serif;
}

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

body {
  background-color: var(--bg-black);
  color: var(--text-white);
  font-family: var(--font-main);
  line-height: 1.5;
  overflow-x: hidden;
}

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

/* TOP ANNOUNCEMENT BAR */
.top-bar {
  display: none !important;
  background: var(--bg-black);
  border-bottom: 1px solid var(--border-dark);
  text-align: center;
  padding: 8px 16px;
  font-size: 12px;
  color: var(--text-gray);
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.top-bar span {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-dark);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}
.logo {
  font-family: var(--font-heading);
  font-size: 32px;
  letter-spacing: 2px;
  color: var(--text-white);
  font-weight: 900;
}
.nav ul {
  display: flex;
  list-style: none;
  gap: 24px;
}
.nav a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--text-gray);
  transition: color 0.2s;
  padding: 8px 0;
}
.nav a:hover, .nav a.active {
  color: var(--green);
}
.nav-sale {
  color: var(--green) !important;
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 18px;
}
.header-icons a {
  position: relative;
  color: var(--text-white);
  transition: color 0.2s;
}
.header-icons a:hover {
  color: var(--green);
}
.cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--green);
  color: #000;
  font-size: 10px;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

/* HEADER SEARCH ICON LEFT */
.header-left-search {
  color: #ffffff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
}
.header-left-search:hover {
  color: var(--green);
}

/* SEARCH BAR */
.search-bar {
  display: none;
  background: #111;
  padding: 12px 20px;
  border-bottom: 1px solid var(--border-dark);
}
.search-bar.active {
  display: flex;
  align-items: center;
  gap: 12px;
}
.search-bar input {
  flex: 1;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 15px;
  outline: none;
}

/* HERO SLIDER */
.hero-slider-wrap {
  position: relative;
  height: 70vh;
  min-height: 480px;
  max-height: 750px;
  overflow: hidden;
  background: #000;
}
.hero-slide-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  background-size: cover;
  background-position: center;
}
.hero-slide-item.active {
  opacity: 1;
}

.hero-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: background 0.3s ease;
}
.hero-slider-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}
.hero-slider-btn.prev { left: 24px; }
.hero-slider-btn.next { right: 24px; }

.hero-dots-nav {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.hero-dot-item {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}
.hero-dot-item.active {
  width: 24px;
  background: #ffffff;
}

/* BENEFIT BAR */
.benefit-bar {
  background: #171717;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  padding: 20px 0;
}
.benefit-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  overflow-x: auto;
  scrollbar-width: none;
}
.benefit-grid::-webkit-scrollbar { display: none; }

.benefit-card {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}
.benefit-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.benefit-title {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}
.benefit-sub {
  color: var(--text-gray);
  font-size: 12px;
}

/* SECTION TITLES */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 20px;
}
.section-title-main {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}
.section-subtitle-sub {
  color: var(--text-gray);
  font-size: 14px;
  margin-top: 2px;
}
.section-link-all {
  color: var(--green);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.2s;
}
.section-link-all:hover {
  text-decoration: underline;
  color: var(--green-hover);
}

/* PRODUCT SLIDER (HORIZONTAL HORIZONTAL SCROLL) */
.product-slider-row {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 8px;
}
.product-slider-row::-webkit-scrollbar { display: none; }

.product-card-item {
  scroll-snap-align: start;
  flex: 0 0 240px;
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, background 0.3s ease;
  cursor: pointer;
}
.product-card-item:hover {
  background: var(--bg-card-hover);
}

.product-thumb-box {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #0d0d0d;
}
.product-thumb-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card-item:hover .product-thumb-box img {
  transform: scale(1.06);
}

/* BADGES ON THUMBNAIL */
.badge-viewers {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.badge-viewers i {
  color: var(--green);
}

.badge-tag-novo {
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--green);
  color: #000;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
}

/* CARD DETAILS */
.product-details-box {
  padding: 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-title-text {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 36px;
  transition: color 0.2s;
}
.product-card-item:hover .product-title-text {
  color: var(--green);
}

.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
}
.price-green-val {
  color: var(--green);
  font-size: 18px;
  font-weight: 800;
}
.price-old-val {
  color: #737373;
  font-size: 13px;
  text-decoration: line-through;
}
.price-installments-text {
  color: #a3a3a3;
  font-size: 11px;
  margin-bottom: 12px;
}

/* GREEN BUY BUTTON */
.btn-buy-green {
  width: 100%;
  background: var(--green);
  color: #000;
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 14px;
  padding: 10px 0;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
}
.btn-buy-green:hover {
  background: var(--green-hover);
  transform: scale(1.02);
}
.btn-buy-green:active {
  transform: scale(0.98);
}

/* SECTION PADDINGS & ALTERNATING BG */
.home-section {
  padding: 40px 0;
}
.home-section.bg-alt {
  background: #0a0a0a;
}

/* FOOTER */
.footer {
  background: #080808;
  border-top: 1px solid var(--border-dark);
  padding: 50px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-logo {
  font-family: var(--font-heading);
  font-size: 32px;
  letter-spacing: 2px;
  color: #fff;
}
.footer-brand p {
  color: var(--text-gray);
  font-size: 13px;
  margin: 12px 0 20px;
}
.socials {
  display: flex;
  gap: 14px;
  font-size: 18px;
}
.socials a {
  color: var(--text-gray);
  transition: color 0.2s;
}
.socials a:hover {
  color: var(--green);
}

.footer-col h4 {
  font-size: 14px;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 16px;
}
.footer-col ul {
  list-style: none;
}
.footer-col li {
  margin-bottom: 10px;
  font-size: 13px;
  color: var(--text-gray);
}
.footer-col a {
  color: var(--text-gray);
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--green);
}
.footer-bottom {
  text-align: center;
  border-top: 1px solid var(--border-dark);
  padding-top: 20px;
  color: #525252;
  font-size: 12px;
}

/* TOAST & WHATSAPP */
.toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--green);
  color: #000;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 8px;
  z-index: 10000;
  display: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.wpp-float {
  display: none !important;
}

@media(max-width: 768px) {
  .nav { display: none; }
  .menu-toggle { display: block; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .product-card-item { flex: 0 0 180px; }
  .hero-slider-wrap { height: 50vh; min-height: 320px; }
}

/* MODAL QUICK BUY (ADICIONAR AO CARRINHO POPUP) */
.qb-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.qb-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.qb-modal {
  background: #18181b;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  width: 92%;
  max-width: 440px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9);
  overflow: hidden;
  font-family: var(--font-main);
  animation: qbPop 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes qbPop {
  from { transform: scale(0.92); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.qb-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.qb-header h3 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  margin: 0;
}
.qb-close {
  background: none;
  border: none;
  color: #a1a1aa;
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
  padding: 0 4px;
}
.qb-close:hover {
  color: #ffffff;
}

.qb-body {
  padding: 20px;
}

.qb-product-row {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 20px;
}
.qb-img-wrap {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  overflow: hidden;
  background: #000;
  flex-shrink: 0;
}
.qb-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.qb-info h4 {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 4px 0;
  line-height: 1.3;
}
.qb-price-green {
  color: var(--green);
  font-size: 16px;
  font-weight: 800;
}
.qb-installments {
  color: #71717a;
  font-size: 11px;
  margin: 2px 0 0 0;
}

.qb-section {
  margin-bottom: 16px;
}
.qb-label {
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}
.qb-req {
  color: #ef4444;
}
.qb-color-name {
  color: #a1a1aa;
  font-weight: 400;
}

.qb-size-opts {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.qb-size-btn {
  background: #27272a;
  border: 1px solid #3f3f46;
  color: #ffffff;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}
.qb-size-btn:hover {
  border-color: var(--green);
}
.qb-size-btn.selected {
  border-color: var(--green);
  color: var(--green);
  background: #000000;
  box-shadow: 0 0 0 1px var(--green);
}

.qb-color-opts {
  display: flex;
  gap: 8px;
}
.qb-color-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--green);
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  cursor: pointer;
}

.qb-qty-ctrl {
  display: inline-flex;
  align-items: center;
  background: #27272a;
  border: 1px solid #3f3f46;
  border-radius: 8px;
  overflow: hidden;
}
.qb-qty-ctrl button {
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.qb-qty-ctrl button:hover {
  background: #3f3f46;
}
.qb-qty-ctrl span {
  width: 36px;
  text-align: center;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
}

.qb-warning {
  color: #eab308;
  font-size: 12px;
  font-weight: 500;
  margin: 12px 0;
  display: block;
}

.qb-submit-btn {
  width: 100%;
  background: #3f3f46;
  color: #a1a1aa;
  border: none;
  border-radius: 10px;
  padding: 14px;
  font-size: 14px;
  font-weight: 800;
  cursor: not-allowed;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
}
.qb-submit-btn.enabled {
  background: var(--green);
  color: #000000;
  cursor: pointer;
}
.qb-submit-btn.enabled:hover {
  background: var(--green-hover);
  transform: translateY(-1px);
}
.qb-submit-btn.enabled:active {
  transform: scale(0.98);
}

.qb-details-link {
  color: var(--green);
  text-align: center;
  display: block;
  margin-top: 14px;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s;
}
.qb-details-link:hover {
  color: var(--green-hover);
  text-decoration: underline;
}

/* RESPONSIVE PRODUCTS GRID */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.products-grid .product-card-item {
  flex: none;
  width: 100%;
}

@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

/* NAVEGAÇÃO INFERIOR MOBILE (ESTILO APLICATIVO) */
@media (max-width: 768px) {
  body {
    padding-bottom: 66px !important;
  }
}

.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 62px;
  background-color: #09090b;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 9999;
  justify-content: space-around;
  align-items: center;
  padding: 4px 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.7);
}

@media (max-width: 768px) {
  .mobile-bottom-nav {
    display: flex;
  }
}

.mobile-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #a1a1aa;
  text-decoration: none;
  gap: 3px;
  padding: 6px 0;
  transition: color 0.2s ease, transform 0.15s ease;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.mobile-nav-item:hover,
.mobile-nav-item:active {
  color: #ffffff;
}

.mobile-nav-icon {
  font-size: 19px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1px;
  line-height: 1.1;
}

.mobile-nav-item.active {
  color: var(--green, #22c55e);
  font-weight: 600;
}

.mobile-nav-item.active .mobile-nav-icon {
  transform: translateY(-1px);
}

/* CATALOG APP-LIKE COMPACT HEADER DESIGN */
.catalog-header-app {
  background-color: #000000;
  padding: 14px 0 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.catalog-search-box {
  margin-bottom: 12px;
}

.catalog-search-input-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #18181b;
  border: 1px solid #27272a;
  border-radius: 12px;
  padding: 9px 14px;
  transition: border-color 0.2s;
}

.catalog-search-input-wrap:focus-within {
  border-color: #3f3f46;
}

.catalog-search-input-wrap .search-icon {
  color: #71717a;
  font-size: 15px;
}

.catalog-search-input-wrap input {
  background: transparent;
  border: none;
  outline: none;
  color: #ffffff;
  font-size: 14px;
  font-family: inherit;
  width: 100%;
}

.catalog-search-input-wrap input::placeholder {
  color: #71717a;
}

.catalog-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.catalog-title-meta {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.catalog-main-heading {
  font-family: var(--font-main, 'Outfit', sans-serif);
  font-size: 19px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
}

.catalog-product-count {
  font-size: 12px;
  color: #71717a;
}

.catalog-top-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-filter-toggle {
  background: #18181b;
  border: 1px solid #27272a;
  color: #ffffff;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.2s;
}

.btn-filter-toggle:hover {
  background: #27272a;
}

.sort-select-app {
  background: #18181b;
  border: 1px solid #27272a;
  color: #ffffff;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 13px;
  font-family: inherit;
  outline: none;
  cursor: pointer;
  height: 36px;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23a1a1aa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 26px;
}

.catalog-pills-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 2px;
}

.catalog-pills-row::-webkit-scrollbar {
  display: none;
}

.pill-app {
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
  background: #27272a;
  color: #ffffff;
}

.pill-app.active {
  background: #22c55e;
  color: #000000;
  font-weight: 700;
}

/* SUCCESS STATE & BUTTONS IN QUICK BUY MODAL */
.qb-success-box {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.35);
  border-radius: 12px;
  padding: 14px 16px;
  margin: 16px 0 14px;
}

.qb-success-inner {
  display: flex;
  align-items: center;
  gap: 14px;
}

.qb-success-icon {
  width: 38px;
  height: 38px;
  background: #22c55e;
  color: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: bold;
  flex-shrink: 0;
}

.qb-success-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.qb-success-title {
  color: #22c55e;
  font-size: 15px;
  font-weight: 700;
}

.qb-success-sub {
  color: #a1a1aa;
  font-size: 13px;
}

.qb-action-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}

.btn-continue-shop {
  background: #18181b;
  border: 1px solid #3f3f46;
  color: #ffffff;
  padding: 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s;
  width: 100%;
}

.btn-continue-shop:hover {
  background: #27272a;
}

.btn-go-cart {
  background: #22c55e;
  border: 1px solid #22c55e;
  color: #000000;
  padding: 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  transition: opacity 0.2s;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.btn-go-cart:hover {
  opacity: 0.9;
  color: #000000;
}


