@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');
@import url('https://cdn.jsdelivr.net/npm/@phosphor-icons/web@2.1.2/src/regular/style.css');

:root {
  
  --color-bg: #f9f9f9;
  --color-white: #ffffff;
  --color-text: #212529;
  --color-text-light: #444444;
  --color-text-muted: #6c757d;
  --color-link: #444444;
  --color-link-hover: #1e1e1e;

  
  --color-brand: #5C1E0E;
  --color-brand-dark: #3A1007;
  --color-brand-light: #7A3920;
  --color-accent: #D10244;
  --color-accent-light: #FFF1F4;
  --color-gold: #C5963A;
  --color-gold-light: #F5E6C8;

  
  --color-primary: #00a1e0;
  --color-success: #008827;
  --color-danger: #cc0000;
  --color-border: #dee2e6;
  --color-border-light: #ececec;

  
  --font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;

  
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;

  
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 50%;

  
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 12px 40px rgba(0, 0, 0, 0.15);

  
  --container-max: 1200px;
  --header-height: 120px;
  --topbar-height: 36px;

  
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: var(--font-weight-regular);
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: var(--color-link);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-link-hover);
}

ul,
ol {
  list-style: none;
}

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

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.section {
  padding: var(--space-3xl) 0;
}

.topbar {
  background: var(--color-brand);
  color: var(--color-white);
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  height: var(--topbar-height);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 100;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar__links {
  display: flex;
  gap: var(--space-lg);
  align-items: center;
}

.topbar__links a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: var(--font-weight-medium);
  transition: color var(--transition-fast);
  white-space: nowrap;
}

.topbar__links a:hover {
  color: var(--color-white);
}

.topbar__right {
  display: flex;
  gap: var(--space-lg);
  align-items: center;
}

.topbar__right a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: var(--font-weight-medium);
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar__right a:hover {
  color: var(--color-white);
}

.header {
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 90;
  transition: box-shadow var(--transition-base);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: var(--space-xl);
}

.header__logo {
  flex-shrink: 0;
  min-width: 120px;
}

.header__logo img {
  height: 48px;
  width: auto;
  min-width: 100px;
  transition: transform var(--transition-base);
  
  filter: brightness(0.3);
}

.header__logo:hover img {
  transform: scale(1.03);
}

.header__search {
  flex: 1;
  max-width: 480px;
  position: relative;
}

.search-form {
  display: flex;
  align-items: center;
  background: var(--color-bg);
  border: 2px solid var(--color-border-light);
  border-radius: 40px;
  padding: 0 var(--space-md);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  overflow: hidden;
}

.search-form:focus-within {
  border-color: var(--color-brand);
  box-shadow: 0 0 0 3px rgba(92, 30, 14, 0.1);
}

.search-form input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 10px 0;
  font-size: 0.9rem;
  color: var(--color-text);
  outline: none;
}

.search-form input::placeholder {
  color: var(--color-text-muted);
}

.search-form button {
  color: var(--color-brand);
  padding: 8px;
  display: flex;
  align-items: center;
  transition: color var(--transition-fast);
}

.search-form button:hover {
  color: var(--color-brand-dark);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  flex-shrink: 0;
}

.header__action {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-brand);
  font-size: 0.85rem;
  font-weight: var(--font-weight-medium);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.header__action:hover {
  background: rgba(92, 30, 14, 0.06);
  color: var(--color-brand-dark);
}

.header__action svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.header__action--cart {
  position: relative;
}

.cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--color-accent);
  color: var(--color-white);
  width: 18px;
  height: 18px;
  border-radius: var(--radius-full);
  font-size: 0.65rem;
  font-weight: var(--font-weight-bold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__mobile-toggle {
  display: none;
  padding: 8px;
  color: var(--color-brand);
}

.header__mobile-toggle svg {
  width: 24px;
  height: 24px;
}

.nav-main {
  background: var(--color-brand);
  position: relative;
  z-index: 80;
}

.nav-close {
  display: none;
}

.nav-main__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  height: 48px;
}

.nav-main__item {
  position: relative;
  
  padding-bottom: 0;
}

.nav-main__link {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  font-weight: var(--font-weight-semibold);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.nav-main__link:hover,
.nav-main__item:hover .nav-main__link {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.1);
}

.nav-main__link--highlight {
  background: var(--color-gold) !important;
  color: var(--color-white) !important;
  border-radius: 4px;
  margin: 6px 4px;
  padding: 8px 16px !important;
}

.nav-main__link--highlight:hover {
  background: #d4a43f !important;
}

.nav-main__link svg {
  width: 10px;
  height: 10px;
  transition: transform var(--transition-fast);
}

.nav-main__item:hover .nav-main__link svg {
  transform: rotate(180deg);
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  min-width: 650px;
  background: var(--color-white);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: var(--space-xl);
  padding-top: calc(var(--space-xl) + 6px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%);
  transition: opacity var(--transition-base), visibility var(--transition-base);
  z-index: 200;
}

.mega-menu::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}

.nav-main__item:hover>.mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mega-menu__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: var(--space-lg);
}

.mega-menu__col h4 {
  font-size: 0.8rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-brand);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-sm);
  padding-bottom: var(--space-xs);
  border-bottom: 2px solid var(--color-gold-light);
}

.mega-menu__col a {
  display: block;
  padding: 6px 0;
  font-size: 0.85rem;
  color: var(--color-text-light);
  transition: all var(--transition-fast);
}

.mega-menu__col a:hover {
  color: var(--color-brand);
  padding-left: 6px;
}

.mega-menu__image {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: var(--space-md);
}

.mega-menu__image img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.mega-menu__image:hover img {
  transform: scale(1.05);
}

.mega-menu__footer {
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border-light);
}

.mega-menu__footer a {
  color: var(--color-brand);
  font-weight: var(--font-weight-semibold);
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.mega-menu__footer a:hover {
  gap: 10px;
}

.hero {
  padding: 20px 0;
}

.hero .container {
  max-width: 1264px;
}

.hero .swiper {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hero .swiper-slide {
  position: relative;
}

.hero .swiper-slide a {
  display: block;
}

.hero .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
}

.hero .swiper-slide .banner-mobile {
  display: none;
}

.hero .swiper-button-prev,
.hero .swiper-button-next {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-fast);
}

.hero .swiper-button-prev::after,
.hero .swiper-button-next::after {
  font-size: 18px;
  font-weight: bold;
  color: var(--color-brand);
}

.hero .swiper-button-prev::after {
  content: '\2039' !important;
  font-size: 28px !important;
}

.hero .swiper-button-next::after {
  content: '\203A' !important;
  font-size: 28px !important;
}

.hero .swiper-button-prev:hover,
.hero .swiper-button-next:hover {
  background: var(--color-white);
  box-shadow: var(--shadow-lg);
  transform: scale(1.1);
}

.hero .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.6);
  opacity: 1;
  transition: all var(--transition-fast);
}

.hero .swiper-pagination-bullet-active {
  background: var(--color-white);
  width: 28px;
  border-radius: 5px;
}

.products--promo {
  background: linear-gradient(180deg, #fff9f5 0%, #fff 100%);
  padding-top: var(--space-3xl);
}
.section__title--promo {
  color: #5C1E0E;
  font-size: clamp(1.5rem, 4vw, 2rem);
}
.section__subtitle {
  text-align: center;
  color: #8D6E63;
  font-size: 1rem;
  margin: -8px 0 24px;
}
.products__promo-footer {
  text-align: center;
  margin-top: 24px;
}
.products__promo-link {
  display: inline-block;
  background: #5C1E0E;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}
.products__promo-link:hover {
  background: #3A1007;
  transform: translateY(-2px);
}
body.dark-mode .products--promo {
  background: linear-gradient(180deg, #1e1512 0%, #181818 100%);
}
body.dark-mode .section__title--promo {
  color: #f5a623;
}
body.dark-mode .section__subtitle {
  color: #a08a7a;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section-title h2 {
  font-size: 1.8rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-brand);
  margin-bottom: var(--space-sm);
}

.section-title p {
  font-size: 1rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.section-title__line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-brand));
  border-radius: 2px;
  margin: var(--space-md) auto 0;
}

.lines {
  background: var(--color-white);
  padding: var(--space-3xl) 0;
}

.lines__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-md);
}

.line-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.line-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.line-card:hover img {
  transform: scale(1.08);
}

.line-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(92, 30, 14, 0.85) 100%);
  display: flex;
  align-items: flex-end;
  padding: var(--space-lg);
  transition: background var(--transition-base);
}

.line-card:hover .line-card__overlay {
  background: linear-gradient(180deg, transparent 20%, rgba(92, 30, 14, 0.92) 100%);
}

.line-card__name {
  color: var(--color-white);
  font-size: 1.1rem;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.02em;
  transform: translateY(4px);
  transition: transform var(--transition-base);
}

.line-card:hover .line-card__name {
  transform: translateY(0);
}

.moments {
  padding: var(--space-3xl) 0;
}

.moments__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.moment-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  text-align: center;
}

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

.moment-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 313/250;
}

.moment-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.moment-card:hover .moment-card__image img {
  transform: scale(1.06);
}

.moment-card__body {
  padding: var(--space-lg);
}

.moment-card__title {
  font-size: 1rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-brand);
  margin-bottom: var(--space-sm);
}

.moment-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-gold);
  font-size: 0.85rem;
  font-weight: var(--font-weight-semibold);
  transition: gap var(--transition-fast);
}

.moment-card:hover .moment-card__cta {
  gap: 10px;
}

.products {
  background: var(--color-white);
  padding: var(--space-3xl) 0;
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.product-card {
  background: var(--color-white);
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  border: 1px solid #f0ebe6;
  overflow: hidden;
  transition: all var(--transition-base);
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card__link {
  display: block;
  color: inherit;
}

.product-card__link:hover {
  color: inherit;
}

.product-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border-color: transparent;
}

.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 0.7rem;
  font-weight: var(--font-weight-bold);
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.product-card__wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: var(--color-white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  z-index: 2;
  transition: all var(--transition-fast);
  color: #00a1e0;
}

.product-card__wishlist svg {
  stroke: #00a1e0;
}

.product-card__wishlist:hover {
  color: #0088c7;
  transform: scale(1.1);
}

.product-card__wishlist:hover svg {
  stroke: #0088c7;
}

.product-card__image {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
  background: #fafafa;
}

.product-card__image img {
  max-height: 180px;
  object-fit: contain;
  transition: transform var(--transition-slow);
}

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

.product-card__body {
  padding: var(--space-md) var(--space-lg) var(--space-sm);
  flex: 1;
}

.product-card__name {
  font-size: 0.9rem;
  font-weight: var(--font-weight-medium);
  color: var(--color-text);
  margin-bottom: var(--space-sm);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.5em;
}

.product-card__cacaus {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #8B0000;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid #6B0000;
  margin-bottom: var(--space-sm);
  letter-spacing: 0.03em;
}

.product-card__cacaus::before {
  content: '';
  width: 16px;
  height: 16px;
  background: url("https://www.cacaushow.com.br/on/demandware.static/Sites-CacauShow-Site/-/default/dwec374bf5/svg/icon-cacau-coin.svg") no-repeat center;
  background-size: contain;
}

.product-card__rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 4px;
}

.product-card__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 8px;
  margin-bottom: var(--space-sm);
}

.product-card__price-old {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-decoration: line-through;
  width: 100%;
}

.product-card__price-current {
  font-size: 1.2rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-text);
}

.product-card__price-unit {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  font-weight: 400;
}

.product-card__btn {
  width: 100%;
  padding: 12px 16px;
  background: #7d9b6d;
  color: var(--color-white);
  font-size: 0.8rem;
  font-weight: var(--font-weight-semibold);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all var(--transition-fast);
  border: none;
  cursor: pointer;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.product-card__btn:hover {
  background: #8fa882;
  transform: translateY(-1px);
}

.product-card__btn-icon {
  font-size: 1.125rem;
  line-height: 1;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.discover {
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, var(--color-brand) 0%, var(--color-brand-dark) 100%);
  color: var(--color-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.discover::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(197, 150, 58, 0.15) 0%, transparent 50%);
  animation: pulse-glow 6s ease-in-out infinite;
}

@keyframes pulse-glow {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

.discover__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.discover__emoji {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
}

.discover h2 {
  font-size: 2rem;
  font-weight: var(--font-weight-extrabold);
  margin-bottom: var(--space-md);
}

.discover p {
  font-size: 1.05rem;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: var(--space-xl);
}

.discover__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

.discover__link {
  padding: 10px 24px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  color: var(--color-white);
  font-weight: var(--font-weight-semibold);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
  backdrop-filter: blur(4px);
  background: rgba(255, 255, 255, 0.08);
}

.discover__link:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--color-white);
  transform: translateY(-2px);
}

.footer {
  background: var(--color-brand-dark);
  color: rgba(255, 255, 255, 0.8);
  padding-top: var(--space-3xl);
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__brand {
  max-width: 300px;
}

.footer__brand img {
  height: 40px;
  margin-bottom: var(--space-lg);
  filter: brightness(10);
}

.footer__brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  opacity: 0.7;
}

.footer__col h4 {
  color: var(--color-white);
  font-size: 0.9rem;
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-lg);
  position: relative;
  padding-bottom: var(--space-sm);
}

.footer__col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--color-gold);
  border-radius: 1px;
}

.footer__col a {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
  padding: 5px 0;
  transition: all var(--transition-fast);
}

.footer__col a:hover {
  color: var(--color-white);
  padding-left: 6px;
}

.footer__social {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: all var(--transition-fast);
  padding: 0;
}

.footer__social a:hover {
  background: var(--color-gold);
  transform: translateY(-3px);
  padding-left: 0;
}

.footer__social svg {
  width: 18px;
  height: 18px;
}

.footer__bottom {
  padding: var(--space-lg) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer__bottom p {
  font-size: 0.75rem;
  opacity: 0.5;
}

.footer__bottom-links {
  display: flex;
  gap: var(--space-lg);
}

.footer__bottom-links a {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  padding: 0;
}

.footer__bottom-links a:hover {
  color: var(--color-white);
  padding-left: 0;
}

.scroll-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: auto;
  width: 48px;
  height: 48px;
  background: var(--color-brand);
  color: var(--color-white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-base);
  z-index: 999;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--color-brand-dark);
  transform: translateY(-3px);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

.animate-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in--visible,
.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero {
  width: 100%;
  overflow: hidden;
}

.hero-swiper {
  width: 100%;
}

.hero__slide {
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  position: relative;
}

.hero__content {
  max-width: 700px;
  text-align: center;
  color: var(--color-white);
  z-index: 2;
}

.hero__content h1 {
  font-size: 2.8rem;
  font-weight: var(--font-weight-extrabold);
  line-height: 1.2;
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero__content h1 span {
  display: block;
  font-size: 3.4rem;
  background: linear-gradient(135deg, #F5E6C8, #C5963A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__content p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: var(--space-xl);
  line-height: 1.6;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 36px;
  background: var(--color-white);
  color: var(--color-brand);
  border-radius: var(--radius-sm);
  font-weight: var(--font-weight-bold);
  font-size: 1rem;
  text-decoration: none;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero__btn:hover {
  background: var(--color-gold-light);
  color: var(--color-brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.hero .swiper-pagination-bullet {
  background: var(--color-white);
  opacity: 0.5;
  width: 10px;
  height: 10px;
}

.hero .swiper-pagination-bullet-active {
  opacity: 1;
  width: 28px;
  border-radius: 5px;
}

@media (max-width: 768px) {
  .hero__slide {
    min-height: 300px;
    padding: 40px 20px;
  }

  .hero__content h1 {
    font-size: 1.8rem;
  }

  .hero__content h1 span {
    font-size: 2.2rem;
  }

  .hero__content p {
    font-size: 0.9rem;
  }
}

@media (max-width: 1200px) {
  .nav-main__link {
    padding: 14px 12px;
    font-size: 0.8rem;
  }
}

@media (max-width: 992px) {
  .topbar__links {
    display: none;
  }

  .header__inner {
    height: 64px;
  }

  .header__search {
    max-width: 320px;
  }

  .header__action span:not(.cart-count) {
    display: none;
  }

  .lines__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .moments__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
  }

  
  .header__mobile-toggle {
    display: flex;
  }

  .nav-main {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100vh;
    background: var(--color-brand);
    z-index: 200;
    transition: left var(--transition-slow);
    overflow-y: auto;
    padding-top: 60px;
  }

  .nav-main.open {
    left: 0;
  }

  .nav-main__list {
    flex-direction: column;
    height: auto;
    align-items: stretch;
  }

  .nav-main__link {
    padding: 14px 20px;
    font-size: 0.9rem;
  }

  .mega-menu {
    position: static;
    transform: none;
    min-width: 0;
    border-radius: 0;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.05);
    padding: var(--space-md);
    display: none;
  }

  .nav-main__item.active .mega-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .mega-menu__grid {
    grid-template-columns: 1fr;
  }

  .mega-menu__col a {
    color: rgba(255, 255, 255, 0.8);
  }

  .mega-menu__col h4 {
    color: var(--color-gold-light);
    border-color: rgba(255, 255, 255, 0.2);
  }

  .mega-menu__image {
    display: none;
  }

  .mega-menu__footer a {
    color: var(--color-gold-light);
  }

  .mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 190;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
  }

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

  .nav-close {
    position: absolute;
    top: 16px;
    right: 16px;
    color: var(--color-white);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .header__search {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-width: 100%;
    padding: 10px 20px;
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
    display: none;
  }

  .header__search.open {
    display: block;
  }

  .lines__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .moments__grid {
    grid-template-columns: 1fr 1fr;
  }

  .products__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__top {
    grid-template-columns: 1fr;
  }

  .discover h2 {
    font-size: 1.5rem;
  }

  .section-title h2 {
    font-size: 1.4rem;
  }

  .hero .swiper-slide .banner-desktop {
    display: none;
  }

  .hero .swiper-slide .banner-mobile {
    display: block;
  }
}

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

  .lines__grid {
    grid-template-columns: 1fr 1fr;
  }

  .moments__grid {
    grid-template-columns: 1fr;
  }

  .discover__links {
    flex-direction: column;
    align-items: center;
  }
}

.toast-container {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  pointer-events: none;
}

.toast {
  background: #3E2723;
  color: #fff;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  animation: toastIn 0.35s cubic-bezier(.21, 1.02, .73, 1) forwards;
  max-width: min(420px, 90vw);
  text-align: center;
  line-height: 1.4;
  pointer-events: auto;
  word-break: break-word;
  overflow-wrap: break-word;
}

.toast-out {
  animation: toastOut 0.3s ease forwards;
}

.toast--success {
  background: #008827;
}

.toast--error {
  background: var(--color-accent);
}

.toast--info {
  background: var(--color-brand);
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(.95);
  }

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

@keyframes toastOut {
  to {
    opacity: 0;
    transform: translateY(20px) scale(.95);
  }
}

/* Cart toast - popup centralizado (estilo da segunda imagem) */
.cart-toast-overlay {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.cart-toast-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.cart-toast {
  position: relative;
  background: #fff;
  border-radius: 12px;
  padding: 24px 48px 24px 24px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: min(420px, 95vw);
  animation: cartToastIn 0.35s cubic-bezier(.21, 1.02, .73, 1) forwards;
}
.cart-toast__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  border: none;
  background: transparent;
  color: #333;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.cart-toast__close:hover {
  opacity: 1;
}
.cart-toast__icon {
  position: relative;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
}
.cart-toast__cart {
  position: absolute;
  width: 36px;
  height: 36px;
  color: #5C1E0E;
  left: 0;
  top: 4px;
}
.cart-toast__check {
  position: absolute;
  width: 20px;
  height: 20px;
  color: #008827;
  right: 0;
  bottom: 0;
  background: #fff;
  border-radius: 50%;
}
.cart-toast__message {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #3E2723;
  line-height: 1.4;
}
@keyframes cartToastIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(-10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.search-overlay {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--color-white);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow-xl);
  max-height: 400px;
  overflow-y: auto;
  z-index: 200;
  display: none;
}

.search-overlay.active {
  display: block;
}

.search-overlay__item {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  gap: 12px;
  border-bottom: 1px solid var(--color-border-light);
  cursor: pointer;
  transition: background var(--transition-fast);
}

.search-overlay__item:hover {
  background: var(--color-bg);
}

.search-overlay__item img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.search-overlay__item-info h4 {
  font-size: 0.85rem;
  font-weight: var(--font-weight-medium);
  color: var(--color-text);
}

.search-overlay__item-info span {
  font-size: 0.8rem;
  color: var(--color-brand);
  font-weight: var(--font-weight-bold);
}

.search-overlay__empty {
  padding: 24px;
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.modal-overlay.active {
  display: flex;
}

.modal {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  max-width: 420px;
  width: 90%;
  box-shadow: var(--shadow-xl);
  animation: fadeInUp 0.3s ease;
  position: relative;
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  color: var(--color-text-muted);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.modal__close:hover {
  background: var(--color-bg);
  color: var(--color-text);
}

.modal h2 {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-brand);
  text-align: center;
  margin-bottom: var(--space-lg);
}

.modal__brand {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.modal__brand img {
  height: 36px;
  margin: 0 auto;
}

.modal .form-group {
  margin-bottom: var(--space-md);
}

.modal label {
  display: block;
  font-size: 0.85rem;
  font-weight: var(--font-weight-medium);
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}

.modal input[type="email"],
.modal input[type="password"] {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--color-border-light);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  transition: border-color var(--transition-fast);
  outline: none;
}

.modal input:focus {
  border-color: var(--color-brand);
}

.modal__submit {
  width: 100%;
  padding: 14px;
  background: var(--color-brand);
  color: var(--color-white);
  font-size: 1rem;
  font-weight: var(--font-weight-semibold);
  border-radius: var(--radius-sm);
  margin-top: var(--space-md);
  transition: background var(--transition-fast);
}

.modal__submit:hover {
  background: var(--color-brand-dark);
}

.modal__footer {
  text-align: center;
  margin-top: var(--space-lg);
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.modal__footer a {
  color: var(--color-brand);
  font-weight: var(--font-weight-semibold);
}

.page-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 8000;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.page-overlay.active {
  display: flex;
}

.page-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl) var(--space-3xl);
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: var(--shadow-xl);
  animation: fadeInUp 0.3s ease;
}

.page-card__icon {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

.page-card h3 {
  font-size: 1.3rem;
  color: var(--color-brand);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-sm);
}

.page-card p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: var(--space-lg);
}

.page-card__btn {
  display: inline-flex;
  padding: 12px 32px;
  background: var(--color-brand);
  color: var(--color-white);
  border-radius: var(--radius-sm);
  font-weight: var(--font-weight-semibold);
  transition: background var(--transition-fast);
}

.page-card__btn:hover {
  background: var(--color-brand-dark);
  color: var(--color-white);
}

.cat-page {
  padding: 20px 0 60px;
  background: #fff;
}

.cat-breadcrumb {
  font-size: .8rem;
  color: #999;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.cat-breadcrumb a {
  color: #3E2723;
  text-decoration: none;
  font-weight: 500;
}

.cat-breadcrumb a:hover {
  text-decoration: underline;
}

.cat-breadcrumb span {
  color: #3E2723;
  font-weight: 600;
}

.cat-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  align-items: start;
}

.cat-sidebar {
  position: sticky;
  top: 90px;
}

.cat-filter {
  border-bottom: 1px solid #e8e0da;
  margin-bottom: 0;
}

.cat-filter__title {
  padding: 14px 0;
  font-size: .85rem;
  font-weight: 600;
  color: #3E2723;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cat-filter__title::after {
  content: '▾';
  font-size: .7rem;
  color: #999;
}

.cat-filter[open] .cat-filter__title::after {
  content: '▴';
}

.cat-filter__title::-webkit-details-marker {
  display: none;
}

.cat-filter__body {
  padding: 0 0 14px;
}

.cat-filter__option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  font-size: .82rem;
  color: #555;
  cursor: pointer;
}

.cat-filter__option input[type="checkbox"] {
  accent-color: #3E2723;
  width: 15px;
  height: 15px;
}

.cat-main {
  min-width: 0;
}

.cat-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
  gap: 24px;
}

.cat-header__info {
  flex: 1;
}

.cat-header__title {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 700;
  color: #3E2723;
  margin: 0 0 8px;
}

.cat-header__desc {
  font-size: .85rem;
  color: #777;
  line-height: 1.5;
  margin: 0;
}

.cat-header__sort {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.cat-header__sort label {
  font-size: .82rem;
  color: #999;
  font-weight: 500;
}

.cat-header__sort select {
  padding: 6px 10px;
  border: 1px solid #d5ccc5;
  border-radius: 4px;
  font-size: .82rem;
  font-family: var(--font-primary);
  color: #3E2723;
  background: #fff;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.cat-grid .product-card {
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .06);
  border: 1px solid #f0ebe6;
}

.cat-grid .product-card__image {
  position: relative;
}

.product-card__badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #e53935;
  color: #fff;
  padding: 3px 10px;
  border-radius: 30px;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .03em;
  z-index: 3;
}

.product-card__badge--offer {
  background: #ff6d00;
}

.product-card__badge--promo {
  top: 12px !important;
  left: 12px !important;
  bottom: auto !important;
  background: #D10244;
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 6px 12px;
  border-radius: 20px;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.product-card__badge:not(.product-card__badge--offer):not(.product-card__badge--promo) {
  top: auto;
  bottom: 8px;
}

.product-card__price-unit {
  font-size: .75rem;
  color: #999;
  font-weight: 400;
}

.product-card__price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
}

.product-card__price-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.product-card__price-block .product-card__price-old {
  order: -1;
}

.product-card__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 var(--space-lg) var(--space-lg);
}

.product-card__actions-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-card__price-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.product-card__price-wrap .product-card__price {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.product-card__price-wrap .product-card__price-old {
  font-size: 0.8rem;
  color: #999;
  text-decoration: line-through;
}

.product-card__price-row-inner {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.product-card__price-wrap .product-card__price-current {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text);
}

.product-card__qty {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
}

.product-card__qty-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: #fafafa;
  font-size: 1rem;
  color: #666;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}

.product-card__qty-btn:hover {
  background: #f0ebe6;
}

.product-card__qty-plus {
  color: #00a1e0;
  font-weight: 600;
}

.product-card__qty-plus:hover {
  background: #e8f4f8;
  color: #0088c7;
}

.product-card__qty-val {
  padding: 0 10px;
  font-weight: 600;
  font-size: 0.9rem;
  min-width: 24px;
  text-align: center;
}

.cat-grid .product-card__btn,
.products__grid .product-card__btn {
  width: 100%;
  padding: 12px 16px;
  font-size: 0.75rem;
  letter-spacing: .03em;
  border-radius: 6px;
  background: #7d9b6d;
}

.cat-grid .product-card__btn:hover,
.products__grid .product-card__btn:hover {
  background: #8fa882;
}

@media (max-width: 900px) {
  .cat-layout {
    grid-template-columns: 1fr;
  }

  .cat-sidebar {
    position: static;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }

  .cat-filter {
    flex: 1 1 200px;
  }

  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.breadcrumb-bar {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border-light);
  padding: 14px 0;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.breadcrumb-bar a {
  color: var(--color-brand);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.breadcrumb-bar a:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

.breadcrumb-bar span {
  color: var(--color-text);
  font-weight: var(--font-weight-medium);
}

.product-detail {
  padding-top: var(--space-2xl);
}

.product-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

@media (max-width: 768px) {
  .product-detail__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
}

.product-detail__main-image {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 350px;
}

.product-detail__main-image img {
  max-width: 100%;
  max-height: 400px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.product-detail__main-image img:hover {
  transform: scale(1.05);
}

.product-detail__thumbs {
  display: flex;
  gap: var(--space-sm);
  overflow-x: auto;
}

.product-detail__thumb {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border: 2px solid var(--color-border-light);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 4px;
  background: var(--color-white);
  transition: border-color var(--transition-fast);
}

.product-detail__thumb.active,
.product-detail__thumb:hover {
  border-color: var(--color-brand);
}

.product-detail__info {
  padding-top: var(--space-md);
}

.product-detail__brand {
  display: inline-block;
  background: var(--color-gold-light);
  color: var(--color-gold);
  font-size: 0.75rem;
  font-weight: var(--font-weight-bold);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-detail__name {
  font-size: 1.8rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-text);
  line-height: 1.3;
  margin-bottom: var(--space-md);
}

.product-detail__price {
  font-size: 1.6rem;
  font-weight: var(--font-weight-extrabold);
  color: var(--color-brand);
  margin-bottom: var(--space-lg);
}

.product-detail__desc {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

.product-detail__actions {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.product-detail__add-cart {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 14px 28px;
  background: var(--color-brand);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: var(--font-weight-semibold);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.product-detail__add-cart:hover {
  background: var(--color-brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(92, 30, 14, 0.3);
}

.product-detail__wishlist {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
  color: var(--color-text-muted);
}

.product-detail__wishlist:hover,
.product-detail__wishlist.active {
  background: var(--color-accent-light);
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.product-detail__sku {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border-light);
}

.product-card__link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.product-card__link:hover .product-card__name {
  color: var(--color-brand);
}

.toast-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toast {
  background: var(--color-brand);
  color: var(--color-white);
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  font-size: 0.9rem;
  font-weight: var(--font-weight-medium);
  animation: toastIn 0.3s ease forwards;
  max-width: 320px;
}

.toast.toast-out {
  animation: toastOut 0.3s ease forwards;
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }

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

@keyframes toastOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-10px);
  }
}

.hero {
  padding: 20px 0;
}

.hero .banner-image {
  display: block;
  border-radius: 12px;
}

.section__subtitle {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-top: -8px;
  margin-bottom: var(--space-xl);
}

.moment-card--image {
  text-decoration: none;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  display: block;
  background: none;
  padding: 0;
  border: none;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.moment-card--image:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  background: none;
}

.moment-card__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.moment-card__cta {
  display: block;
  text-align: center;
  color: #fff;
  font-weight: var(--font-weight-semibold);
  font-size: 0.85rem;
  padding: 10px 16px;
  border-radius: 0 0 12px 12px;
  margin-top: -4px;
}

.linhas .swiper-slide {
  width: auto;
}

.linhas__card {
  display: block;
  text-decoration: none;
  border-radius: 12px;
  overflow: hidden;
  transition: transform var(--transition-fast);
}

.linhas__card:hover {
  transform: scale(1.02);
}

.middle-banners .banner-image {
  display: block;
  border-radius: 12px;
}

.discover .discover__content {
  background: #F2EFE8;
  border-radius: 12px;
  padding: 32px;
}

.discover .discover__content h2 {
  color: #1C1C1B;
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-lg);
}

.discover .discover__content p {
  color: #1C1C1B;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.discover .discover__content a {
  color: var(--color-brand);
}

.discover .discover__content a:hover {
  color: var(--color-accent);
}

.product-card__rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 4px;
}

.product-card__stars {
  color: #F5A623;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.product-card__reviews {
  font-size: 0.7rem;
  color: var(--color-text-muted);
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-brand-dark);
  color: #fff;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  z-index: 10000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, .3);
  transition: transform .4s ease;
}

.cookie-consent.hidden {
  transform: translateY(100%);
  pointer-events: none;
}

.cookie-consent p {
  margin: 0;
  font-size: 0.85rem;
}

.cookie-consent__btn {
  background: var(--color-gold);
  color: #fff;
  border: none;
  padding: 8px 24px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: var(--font-weight-semibold);
  white-space: nowrap;
  transition: background .2s;
}

.cookie-consent__btn:hover {
  background: #b8862e;
}

.modal--cep {
  max-width: 420px;
}

.modal--cep h2 {
  font-size: 1.3rem;
  color: var(--color-brand);
}

.modal__subtitle {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
  line-height: 1.5;
}

.modal__cep-link {
  display: block;
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-brand);
  margin-bottom: var(--space-md);
}

.footer__internal-links {
  display: flex;
  gap: 32px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  flex-wrap: wrap;
}

.footer__internal-links a {
  color: #fff;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: opacity .2s;
}

.footer__internal-links a:hover {
  opacity: .8;
}

.footer__internal-links span {
  font-size: 1.2rem;
}

.footer__image {
  text-align: center;
  padding: 24px 0;
}

.footer__image img {
  max-width: 100%;
  height: auto;
  max-height: 120px;
}

.footer__disclaimer {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 16px;
}

.footer__disclaimer p {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, .5);
  line-height: 1.5;
  margin-bottom: 8px;
}

.footer__social--col {
  display: flex;
  flex-direction: column;
  gap: 6px !important;
}

.footer__social--col a {
  width: auto !important;
  height: auto !important;
  background: none !important;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, .7);
}

.footer__social--col a:hover {
  color: #fff;
  background: none !important;
}

.product-card__image img {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s infinite;
  min-height: 180px;
  object-fit: contain;
}

@keyframes skeleton-shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

@media (max-width: 768px) {
  .cookie-consent {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .footer__internal-links {
    flex-direction: column;
    gap: 12px;
  }
}

.mega-menu__banner {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.mega-menu__banner img {
  max-height: 200px;
  width: auto;
  border-radius: 8px;
  object-fit: contain;
}

.info-page {
  padding: var(--space-3xl) 0;
}

.info-section {
  background: var(--color-white);
  border-radius: 12px;
  padding: var(--space-xl) var(--space-2xl);
  margin-bottom: var(--space-lg);
  box-shadow: var(--shadow-sm);
}

.info-section h3 {
  color: var(--color-brand);
  font-size: 1.15rem;
  margin-bottom: var(--space-sm);
  font-weight: var(--font-weight-semibold);
}

.info-section p {
  color: var(--color-text-light);
  line-height: 1.7;
  font-size: 0.95rem;
}

.search-page {
  padding: var(--space-3xl) 0;
  min-height: 50vh;
}

.search-page h1 {
  font-size: 1.8rem;
  color: var(--color-brand);
  margin-bottom: var(--space-xl);
}

.search-page__form {
  margin-bottom: var(--space-xl);
}

.search-page__form form {
  display: flex;
  gap: 8px;
  max-width: 600px;
}

.search-page__form input {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid var(--color-border);
  border-radius: 8px;
  font-size: 1rem;
  font-family: var(--font-primary);
  transition: border-color .2s;
}

.search-page__form input:focus {
  outline: none;
  border-color: var(--color-brand);
}

.search-page__form button {
  padding: 12px 28px;
  background: var(--color-brand);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: var(--font-weight-semibold);
  cursor: pointer;
  transition: background .2s;
}

.search-page__form button:hover {
  background: var(--color-brand-dark);
}

.search-page__count {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}

.search-page__empty {
  text-align: center;
  padding: var(--space-3xl);
  color: var(--color-text-muted);
}

.search-page__empty p {
  font-size: 1.1rem;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 10000;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s;
}

.cart-drawer.active {
  pointer-events: auto;
  opacity: 1;
}

.cart-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .45);
}

.cart-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  max-width: 90vw;
  height: 100%;
  background: #fff;
  box-shadow: -4px 0 24px rgba(0, 0, 0, .15);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
}

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

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #eee;
  background: var(--color-brand);
  color: #fff;
}

.cart-drawer__header h3 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 600;
}

.cart-drawer__close {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: background .2s;
}

.cart-drawer__close:hover {
  background: rgba(255, 255, 255, .2);
}

.cart-drawer__items {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
}

.cart-drawer__empty {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--color-text-muted);
  font-size: 1.05rem;
}

.cart-drawer__item {
  padding: 14px 0;
  border-bottom: 1px solid #f0f0f0;
}

.cart-drawer__item-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.cart-drawer__item-name {
  font-weight: 500;
  font-size: .9rem;
  color: var(--color-text);
  flex: 1;
  padding-right: 8px;
}

.cart-drawer__item-price {
  color: var(--color-text-muted);
  font-size: .85rem;
  white-space: nowrap;
}

.cart-drawer__item-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-drawer__qty {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
}

.cart-drawer__qty-btn {
  width: 30px;
  height: 30px;
  border: none;
  background: #f5f5f5;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
}

.cart-drawer__qty-btn:hover {
  background: #e0e0e0;
}

.cart-drawer__qty span {
  padding: 0 10px;
  font-weight: 600;
  font-size: .9rem;
  min-width: 20px;
  text-align: center;
}

.cart-drawer__item-subtotal {
  font-weight: 600;
  color: var(--color-brand);
  font-size: .9rem;
  white-space: nowrap;
  margin-left: auto;
}

.cart-drawer__remove {
  background: none;
  border: none;
  color: #999;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: color .2s;
}

.cart-drawer__remove:hover {
  color: #e53935;
}

.cart-drawer__footer {
  padding: 16px 24px;
  border-top: 2px solid #eee;
  background: #fafafa;
}

.cart-drawer__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  font-size: .95rem;
}

.cart-drawer__total strong {
  font-size: 1.15rem;
  color: var(--color-brand);
}

.cart-drawer__checkout {
  width: 100%;
  padding: 14px;
  background: var(--color-brand);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background .2s;
  margin-bottom: 8px;
}

.cart-drawer__checkout:hover {
  background: var(--color-brand-dark);
}

.cart-drawer__clear {
  width: 100%;
  padding: 10px;
  background: none;
  color: var(--color-text-muted);
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: .85rem;
  cursor: pointer;
  transition: all .2s;
}

.cart-drawer__clear:hover {
  border-color: #e53935;
  color: #e53935;
}

.ck {
  padding: 40px 0 60px;
  background: #fff;
}

.ck-steps {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
  border-bottom: 2px solid #e8e0da;
  padding-bottom: 0;
}

.ck-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0 40px 16px;
  position: relative;
  cursor: default;
  color: #bbb;
  transition: all .3s;
}

.ck-step::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  transition: background .3s;
}

.ck-step.active {
  color: #3E2723;
}

.ck-step.active::after {
  background: #3E2723;
}

.ck-step.done {
  color: #388e3c;
}

.ck-step.done::after {
  background: #388e3c;
}

.ck-step__icon {
  width: 40px;
  height: 40px;
}

.ck-step__icon svg {
  width: 100%;
  height: 100%;
}

.ck-step span {
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .02em;
}

.ck-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  align-items: start;
}

.ck-main {
  min-width: 0;
}

.ck-panel {
  animation: ckFade .3s;
}

@keyframes ckFade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

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

.ck-title {
  font-family: var(--font-primary);
  font-size: 1.3rem;
  font-weight: 600;
  color: #3E2723;
  margin: 0 0 24px;
}

.ck-cart-header {
  display: grid;
  grid-template-columns: 60px 1fr 140px 120px 120px;
  gap: 12px;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #e8e0da;
}

.ck-cart-header__label {
  font-size: .7rem;
  font-weight: 600;
  color: #999;
  letter-spacing: .05em;
  text-align: center;
}

.ck-item {
  display: grid;
  grid-template-columns: 60px 1fr 140px 120px 120px;
  gap: 12px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #f0ebe6;
}

.ck-item__img {
  width: 56px;
  height: 56px;
  border-radius: 6px;
  overflow: hidden;
  background: #f5f0ec;
}

.ck-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ck-item__placeholder {
  width: 100%;
  height: 100%;
  background: #f5f0ec;
  border-radius: 6px;
}

.ck-item__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ck-item__name {
  font-size: .9rem;
  font-weight: 500;
  color: #333;
  line-height: 1.3;
}

.ck-item__remove {
  font-size: .7rem;
  color: #e53935;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: .03em;
}

.ck-item__remove:hover {
  text-decoration: underline;
}

.ck-item__price {
  text-align: center;
  font-size: .85rem;
  color: #3E2723;
  font-weight: 600;
}

.ck-item__qty {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
}

.ck-qty-btn {
  width: 30px;
  height: 30px;
  border: none;
  background: #fafafa;
  cursor: pointer;
  font-size: .9rem;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ck-qty-btn:hover {
  background: #f0ebe6;
}

.ck-item__qty span {
  padding: 0 8px;
  font-weight: 600;
  font-size: .9rem;
  min-width: 20px;
  text-align: center;
}

.ck-item__subtotal {
  text-align: center;
  font-size: .9rem;
  font-weight: 700;
  color: #3E2723;
}

.ck-cart-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #f0ebe6;
}

.ck-link {
  font-size: .85rem;
  color: #3E2723;
  text-decoration: none;
  font-weight: 500;
}

.ck-link:hover {
  text-decoration: underline;
}

.ck-link--danger {
  color: #e53935;
}

.ck-help {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 20px 0;
  color: #3E2723;
  font-size: .85rem;
  font-weight: 500;
  justify-content: center;
  border-bottom: 1px solid #f0ebe6;
}

.ck-sidebar {
  background: #f9f6f3;
  border-radius: 8px;
  padding: 24px;
  position: sticky;
  top: 90px;
}

.ck-sidebar__title {
  font-family: var(--font-primary);
  font-size: 1.15rem;
  font-weight: 600;
  font-style: italic;
  color: #3E2723;
  margin: 0 0 20px;
}

.ck-coupon {
  margin-bottom: 20px;
}

.ck-coupon label {
  font-size: .8rem;
  font-weight: 600;
  color: #333;
  display: block;
  margin-bottom: 8px;
}

.ck-coupon__row {
  display: flex;
  gap: 8px;
}

.ck-coupon__row input {
  flex: 1;
  padding: 8px 10px;
  border: 1px solid #d5ccc5;
  border-radius: 4px;
  font-size: .85rem;
  background: #fff;
}

.ck-coupon__row button {
  padding: 8px 16px;
  border: 1px solid #d5ccc5;
  background: #fff;
  border-radius: 4px;
  font-size: .8rem;
  font-weight: 600;
  color: #555;
  cursor: pointer;
}

.ck-coupon__row button:hover {
  background: #f5f0ec;
}

.ck-sidebar__line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: .85rem;
  color: #555;
  border-bottom: 1px solid #ede6df;
}

.ck-sidebar__line span:last-child {
  font-weight: 600;
  color: #3E2723;
}

.ck-sidebar__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  font-size: .9rem;
  font-weight: 700;
}

.ck-sidebar__total strong {
  font-size: 1.2rem;
  color: #3E2723;
}

.ck-sidebar__btn {
  width: 100%;
  padding: 14px;
  background: var(--color-brand);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  letter-spacing: .03em;
  transition: background .2s;
  margin-top: 8px;
}

.ck-sidebar__btn:hover {
  background: var(--color-brand-dark);
}

.ck-form {
  margin-bottom: 20px;
}

.ck-form__row {
  display: flex;
  gap: 16px;
  margin-bottom: 14px;
}

.ck-form__field {
  flex: 1;
}

.ck-form__field--full {
  flex: 1 1 100%;
}

.ck-form__field label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: #3E2723;
  margin-bottom: 5px;
}

.ck-form__field input,
.ck-form__field select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d5ccc5;
  border-radius: 4px;
  font-size: .9rem;
  font-family: var(--font-primary);
  background: #fff;
}

.ck-form__field input:focus,
.ck-form__field select:focus {
  outline: none;
  border-color: #3E2723;
}

.ck-shipping-opts {
  margin: 20px 0;
  border: 1px solid #e8e0da;
  border-radius: 6px;
  padding: 16px;
}

.ck-shipping-opts h3 {
  margin: 0 0 12px;
  font-size: .95rem;
  color: #3E2723;
}

.ck-shipping-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 4px;
  cursor: pointer;
  margin-bottom: 4px;
}

.ck-shipping-opt:hover {
  background: #f5f0ec;
}

.ck-shipping-opt input[type="radio"] {
  accent-color: #3E2723;
}

.ck-shipping-opt__info {
  display: flex;
  justify-content: space-between;
  flex: 1;
}

.ck-shipping-opt__info span {
  font-size: .9rem;
  color: #555;
}

.ck-shipping-opt__info strong {
  color: #3E2723;
}

.ck-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
}

.ck-nav__back {
  background: none;
  border: none;
  color: #3E2723;
  font-size: .9rem;
  font-weight: 500;
  cursor: pointer;
  padding: 8px 0;
}

.ck-nav__back:hover {
  text-decoration: underline;
}

.ck-nav__next {
  padding: 14px 32px;
  background: var(--color-brand);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  letter-spacing: .03em;
}

.ck-nav__next:hover {
  background: var(--color-brand-dark);
}

.ck-pay-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 24px;
  border-bottom: 2px solid #e8e0da;
}

.ck-pay-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border: none;
  background: none;
  cursor: pointer;
  font-size: .9rem;
  font-weight: 500;
  color: #999;
  position: relative;
  transition: all .2s;
}

.ck-pay-tab::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
}

.ck-pay-tab.active {
  color: #3E2723;
}

.ck-pay-tab.active::after {
  background: #3E2723;
}

.ck-pay-body {
  display: none;
  animation: ckFade .3s;
  margin-bottom: 20px;
}

.ck-pay-body.active {
  display: block;
}

.ck-pix {
  text-align: center;
  padding: 24px 0;
}

.ck-pix p {
  margin: 12px 0;
  color: #555;
  font-size: .9rem;
}

.ck-pix__badge {
  background: #e8f5e9;
  color: #2e7d32;
  padding: 10px 18px;
  border-radius: 6px;
  display: inline-block;
  font-weight: 600;
  font-size: .9rem;
  margin-top: 8px;
}

.ck-done {
  text-align: center;
  padding: 40px 0;
}

.ck-done__icon {
  margin-bottom: 16px;
}

.ck-done h2 {
  color: #2e7d32;
  margin-bottom: 8px;
}

.ck-done__order {
  font-size: 1.1rem;
  color: #3E2723;
  margin-bottom: 16px;
}

.ck-done__details {
  background: #f9f6f3;
  border-radius: 8px;
  padding: 20px;
  max-width: 360px;
  margin: 20px auto;
  text-align: left;
}

.ck-conf-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: .9rem;
}

.ck-conf-total {
  border-top: 2px solid #3E2723;
  margin-top: 8px;
  padding-top: 10px;
}

.ck-conf-total strong {
  color: #3E2723;
  font-size: 1.05rem;
}

@media (max-width: 900px) {
  .ck-layout {
    grid-template-columns: 1fr;
  }

  .ck-sidebar {
    position: static;
  }

  .ck-steps {
    gap: 0;
  }

  .ck-step {
    padding: 0 20px 12px;
  }

  .ck-cart-header {
    display: none;
  }

  .ck-item {
    grid-template-columns: 50px 1fr;
    grid-template-rows: auto auto;
  }

  .ck-item__price,
  .ck-item__qty,
  .ck-item__subtotal {
    grid-column: 2;
    font-size: .82rem;
  }
}

.checkout {
  padding: 30px 0 60px;
  background: #f9f6f3;
  min-height: 60vh;
}

.checkout__steps {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 30px;
  padding: 20px 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .06);
}

.checkout__step {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 24px;
  font-size: .9rem;
  color: #999;
  position: relative;
}

.checkout__step::after {
  content: '';
  position: absolute;
  right: -20px;
  top: 50%;
  width: 40px;
  height: 2px;
  background: #ddd;
  transform: translateY(-50%);
}

.checkout__step:last-child::after {
  display: none;
}

.checkout__step.active {
  color: #3E2723;
  font-weight: 600;
}

.checkout__step.active .checkout__step-num {
  background: #3E2723;
  color: #fff;
}

.checkout__step.completed {
  color: #2e7d32;
}

.checkout__step.completed .checkout__step-num {
  background: #2e7d32;
  color: #fff;
}

.checkout__step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e0e0e0;
  color: #999;
  font-weight: 700;
  font-size: .8rem;
}

.checkout__panel {
  background: #fff;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .06);
  margin-bottom: 20px;
}

.checkout__panel h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #3E2723;
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f0ebe6;
}

.checkout__table {
  width: 100%;
  border-collapse: collapse;
}

.checkout__table thead {
  border-bottom: 2px solid #f0ebe6;
}

.checkout__table th {
  padding: 10px 12px;
  text-align: left;
  font-size: .8rem;
  color: #999;
  font-weight: 600;
  text-transform: uppercase;
}

.checkout__table td {
  padding: 14px 12px;
  font-size: .9rem;
  border-bottom: 1px solid #f5f0eb;
  vertical-align: middle;
}

.checkout__td-name {
  font-weight: 500;
  color: #3E2723;
  max-width: 300px;
}

.checkout__td-subtotal {
  font-weight: 600;
  color: #3E2723;
}

.checkout__qty-ctrl {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid #ddd;
  border-radius: 4px;
  display: inline-flex;
}

.checkout__qty-btn {
  width: 28px;
  height: 28px;
  border: none;
  background: #fafafa;
  font-size: .9rem;
  cursor: pointer;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
}

.checkout__qty-btn:hover {
  background: #f0ebe6;
}

.checkout__qty-ctrl span {
  padding: 0 10px;
  font-weight: 600;
  font-size: .85rem;
}

.checkout__remove-btn {
  background: none;
  border: none;
  color: #ccc;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 4px 8px;
}

.checkout__remove-btn:hover {
  color: #e53935;
}

.checkout__summary {
  background: #f9f6f3;
  border-radius: 6px;
  padding: 18px;
  margin-top: 20px;
}

.checkout__summary-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: .9rem;
  color: #555;
}

.checkout__summary-total {
  display: flex;
  justify-content: space-between;
  padding: 12px 0 0;
  margin-top: 8px;
  border-top: 2px solid #3E2723;
  font-weight: 700;
  font-size: 1.1rem;
  color: #3E2723;
}

.checkout__actions {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
  gap: 12px;
}

.checkout__btn {
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  transition: all .2s;
  border: none;
  text-decoration: none;
  text-align: center;
}

.checkout__btn--primary {
  background: #3E2723;
  color: #fff;
}

.checkout__btn--primary:hover {
  background: #5D4037;
}

.checkout__btn--outline {
  background: transparent;
  color: #3E2723;
  border: 2px solid #3E2723;
}

.checkout__btn--outline:hover {
  background: #f0ebe6;
}

.checkout__form {}

.checkout__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.checkout__field {}

.checkout__field--full {
  grid-column: 1 / -1;
}

.checkout__field label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: #555;
  margin-bottom: 6px;
}

.checkout__field input,
.checkout__field select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d5ccc5;
  border-radius: 6px;
  font-size: .9rem;
  font-family: var(--font-primary);
  color: #3E2723;
  background: #fff;
}

.checkout__field input:focus,
.checkout__field select:focus {
  outline: none;
  border-color: #3E2723;
  box-shadow: 0 0 0 3px rgba(62, 39, 35, .08);
}

.checkout__shipping-options {
  margin-top: 20px;
}

.checkout__shipping-options h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #3E2723;
}

.checkout__radio {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 1px solid #e8e0da;
  border-radius: 6px;
  margin-bottom: 8px;
  cursor: pointer;
}

.checkout__radio:hover {
  background: #f9f6f3;
}

.checkout__radio input[type="radio"] {
  accent-color: #3E2723;
}

.checkout__radio div {
  display: flex;
  justify-content: space-between;
  flex: 1;
}

.checkout__radio strong {
  font-size: .9rem;
  color: #3E2723;
}

.checkout__radio span {
  font-weight: 600;
  color: #3E2723;
}

.checkout__payment-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 20px;
  border-bottom: 2px solid #f0ebe6;
}

.checkout__pay-tab {
  padding: 10px 20px;
  background: none;
  border: none;
  font-size: .9rem;
  font-weight: 500;
  color: #999;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all .2s;
}

.checkout__pay-tab.active {
  color: #3E2723;
  border-bottom-color: #3E2723;
  font-weight: 700;
}

.checkout__pay-tab:hover {
  color: #3E2723;
}

.checkout__pay-content {
  display: none;
}

.checkout__pay-content.active {
  display: block;
}

.checkout__empty {
  text-align: center;
  padding: 60px 20px;
}

.checkout__empty p {
  font-size: 1.1rem;
  color: #999;
  margin-bottom: 16px;
}

.checkout__empty a {
  display: inline-block;
  padding: 12px 28px;
  background: #3E2723;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.checkout__order-success {
  text-align: center;
  padding: 40px 20px;
}

.checkout__order-success h2 {
  color: #2e7d32;
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.checkout__order-num {
  font-size: 1.1rem;
  color: #3E2723;
  margin-bottom: 16px;
}

.checkout__order-details {
  background: #f9f6f3;
  border-radius: 8px;
  padding: 20px;
  max-width: 380px;
  margin: 20px auto;
  text-align: left;
}

.checkout__conf-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: .9rem;
}

.checkout__conf-total {
  border-top: 2px solid #3E2723;
  margin-top: 8px;
  padding-top: 10px;
}

.checkout__conf-total strong {
  color: #3E2723;
  font-size: 1.05rem;
}

@media (max-width: 768px) {
  .checkout__steps {
    flex-wrap: wrap;
    gap: 8px;
  }

  .checkout__step::after {
    display: none;
  }

  .checkout__form-row {
    grid-template-columns: 1fr;
  }

  .checkout__actions {
    flex-direction: column;
  }

  .checkout__payment-tabs {
    flex-wrap: wrap;
  }

  .checkout__cart {
    margin: 0;
  }

  .checkout__table,
  .checkout__table thead,
  .checkout__table tbody,
  .checkout__table tr,
  .checkout__table th,
  .checkout__table td {
    display: block;
  }

  .checkout__table thead {
    display: none;
  }

  .checkout__table tr {
    border: 1px solid #f0ebe6;
    border-radius: 8px;
    padding: 14px;
    margin-bottom: 12px;
    background: #fff;
    position: relative;
  }

  .checkout__table td {
    padding: 8px 0;
    border: none;
    font-size: 0.9rem;
  }

  .checkout__table td::before {
    content: attr(data-label);
    font-weight: 600;
    font-size: 0.75rem;
    color: #999;
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
  }

  .checkout__table td.checkout__td-remove::before {
    display: none;
  }

  .checkout__td-remove {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 0;
  }

  .checkout__td-name {
    padding-right: 36px;
    font-size: 0.95rem;
    font-weight: 500;
  }

  .checkout__td-subtotal {
    font-weight: 600;
  }

  .checkout__qty-ctrl {
    display: inline-flex;
    align-items: center;
  }

  .checkout__qty-btn {
    width: 28px;
    height: 28px;
  }

  .checkout__qty-ctrl span {
    padding: 0 10px;
  }
}

.benefits-bar {
  background: #f9f6f3;
  border-bottom: 1px solid #ede6df;
  padding: 8px 0;
}

.benefits-bar .container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.benefits-bar__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: #5D4037;
  font-weight: 500;
}

.benefits-bar__item svg {
  width: 18px;
  height: 18px;
  color: #3E2723;
  flex-shrink: 0;
}

.product-detail__gallery {
  position: relative;
}

.product-detail__main-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #f9f6f3;
  cursor: zoom-in;
}

.product-detail__main-image img {
  width: 100%;
  height: auto;
  transition: transform .3s;
}

.product-detail__main-image.zoomed img {
  transform: scale(2);
  cursor: zoom-out;
}

.product-detail__thumbs {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.product-detail__thumb {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  opacity: .6;
  transition: all .2s;
}

.product-detail__thumb.active {
  border-color: #3E2723;
  opacity: 1;
}

.product-detail__thumb:hover {
  opacity: 1;
}

.freight-calc {
  margin-top: 20px;
  padding: 16px;
  background: #f9f6f3;
  border-radius: 8px;
  border: 1px solid #ede6df;
}

.freight-calc__title {
  font-size: .85rem;
  font-weight: 600;
  color: #3E2723;
  margin-bottom: 10px;
}

.freight-calc__row {
  display: flex;
  gap: 8px;
}

.freight-calc__input {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid #d5ccc5;
  border-radius: 6px;
  font-size: .85rem;
}

.freight-calc__btn {
  padding: 8px 16px;
  background: #3E2723;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: .8rem;
  cursor: pointer;
}

.freight-calc__btn:hover {
  background: #5D4037;
}

.freight-calc__result {
  margin-top: 10px;
  font-size: .82rem;
  color: #555;
}

.freight-calc__option {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #f0ebe6;
}

.freight-calc__option:last-child {
  border-bottom: none;
}

.freight-calc__option strong {
  color: #3E2723;
}

.cart-drawer__item-image {
  width: 50px;
  height: 50px;
  border-radius: 6px;
  object-fit: cover;
  background: #f9f6f3;
  flex-shrink: 0;
}

.cart-drawer__item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #f0ebe6;
  align-items: center;
}

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

.cart-drawer__item-name {
  font-size: .85rem;
  font-weight: 500;
  color: #3E2723;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-drawer__item-price {
  font-size: .8rem;
  color: #888;
  margin-top: 2px;
}

.cart-drawer__item-qty {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.cart-drawer__qty-btn {
  width: 24px;
  height: 24px;
  border: none;
  background: #fafafa;
  font-size: .8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-drawer__qty-btn:hover {
  background: #f0ebe6;
}

.cart-drawer__item-qty span {
  padding: 0 8px;
  font-size: .8rem;
  font-weight: 600;
}

.cart-drawer__item-remove {
  background: none;
  border: none;
  color: #ccc;
  cursor: pointer;
  font-size: 1rem;
  padding: 4px;
}

.cart-drawer__item-remove:hover {
  color: #e53935;
}

.quick-view-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}

.quick-view-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.quick-view {
  background: #fff;
  border-radius: 12px;
  max-width: 720px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 30px;
  position: relative;
  transform: scale(.95);
  transition: transform .25s;
}

.quick-view-overlay.active .quick-view {
  transform: scale(1);
}

.quick-view__close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #999;
}

.quick-view__close:hover {
  color: #3E2723;
}

.quick-view__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.quick-view__image img {
  width: 100%;
  border-radius: 8px;
  background: #f9f6f3;
}

.quick-view__name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #3E2723;
  margin-bottom: 8px;
}

.quick-view__price {
  font-size: 1.3rem;
  font-weight: 700;
  color: #3E2723;
  margin-bottom: 12px;
}

.quick-view__desc {
  font-size: .85rem;
  color: #666;
  margin-bottom: 16px;
  line-height: 1.5;
}

.quick-view__actions {
  display: flex;
  gap: 8px;
}

.quick-view__add-btn {
  flex: 1;
  padding: 12px;
  background: #3E2723;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  font-size: .9rem;
}

.quick-view__add-btn:hover {
  background: #5D4037;
}

.quick-view__qty {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.quick-view__qty button {
  width: 36px;
  height: 36px;
  border: none;
  background: none;
  font-size: 1rem;
  cursor: pointer;
}

.quick-view__qty span {
  padding: 0 12px;
  font-weight: 600;
}

.product-card__rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 4px 0 2px;
}

.product-card__stars {
  color: #f5a623;
  font-size: .8rem;
  letter-spacing: 1px;
}

.product-card__rating-count {
  font-size: .7rem;
  color: #999;
}

.product-detail__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0 12px;
}

.product-detail__stars {
  color: #f5a623;
  font-size: 1rem;
  letter-spacing: 2px;
}

.product-detail__rating-count {
  font-size: .85rem;
  color: #888;
}

.reviews-section {
  margin-top: 48px;
  padding-top: 30px;
  border-top: 2px solid #f0ebe6;
  position: relative;
  z-index: 2;
  clear: both;
}

.reviews-section h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #3E2723;
  margin-bottom: 16px;
}

.review-card {
  background: #f9f6f3;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 12px;
}

.review-card__header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.review-card__author {
  font-weight: 600;
  font-size: .85rem;
  color: #3E2723;
}

.review-card__date {
  font-size: .75rem;
  color: #999;
}

.review-card__stars {
  color: #f5a623;
  font-size: .8rem;
  margin-bottom: 6px;
}

.review-card__text {
  font-size: .85rem;
  color: #555;
  line-height: 1.5;
}

.cat-filter__price-range {
  padding: 10px 0;
}

.cat-filter__price-inputs {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 10px;
}

.cat-filter__price-input {
  width: 80px;
  padding: 6px 8px;
  border: 1px solid #d5ccc5;
  border-radius: 4px;
  font-size: .8rem;
  text-align: center;
}

.cat-filter__price-slider {
  position: relative;
  height: 4px;
  background: #e0d8d0;
  border-radius: 2px;
  margin: 16px 0;
}

input[type="range"].price-range {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  background: transparent;
  position: absolute;
  top: 0;
  pointer-events: none;
}

input[type="range"].price-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #3E2723;
  cursor: pointer;
  pointer-events: auto;
  border: 2px solid #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .2);
}

@keyframes skeleton-shimmer {
  0% {
    background-position: -200px 0;
  }

  100% {
    background-position: calc(200px + 100%) 0;
  }
}

.skeleton {
  background: linear-gradient(90deg, #f0ebe6 25%, #e8e0d8 50%, #f0ebe6 75%);
  background-size: 200px 100%;
  animation: skeleton-shimmer 1.5s infinite;
  border-radius: 6px;
}

.skeleton-card {
  height: 320px;
  border-radius: 8px;
}

.skeleton-text {
  height: 14px;
  margin-bottom: 8px;
}

.skeleton-title {
  height: 20px;
  width: 60%;
  margin-bottom: 12px;
}

.skeleton-img {
  height: 200px;
  border-radius: 8px;
  margin-bottom: 12px;
}

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, .4);
  z-index: 9990;
  transition: all .3s;
  cursor: pointer;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, .5);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

.whatsapp-float__tooltip {
  position: absolute;
  right: 64px;
  background: #fff;
  color: #333;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: .8rem;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}

.whatsapp-float:hover .whatsapp-float__tooltip {
  opacity: 1;
}

.cacau-lovers {
  background: linear-gradient(135deg, #3E2723 0%, #5D4037 50%, #8D6E63 100%);
  padding: 40px 0;
  color: #fff;
  text-align: center;
}

.cacau-lovers__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .15);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: .8rem;
  margin-bottom: 12px;
}

.cacau-lovers h2 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.cacau-lovers p {
  font-size: .9rem;
  opacity: .85;
  max-width: 500px;
  margin: 0 auto 20px;
}

.cacau-lovers__btn {
  display: inline-block;
  padding: 12px 28px;
  background: #f5a623;
  color: #3E2723;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s;
}

.cacau-lovers__btn:hover {
  background: #ffb74d;
  transform: translateY(-2px);
}

.footer__newsletter {
  margin-bottom: 30px;
}

.footer__newsletter h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #f5a623;
  margin-bottom: 8px;
}

.footer__newsletter p {
  font-size: .82rem;
  color: #bbb;
  margin-bottom: 12px;
}

.footer__newsletter-form {
  display: flex;
  gap: 8px;
  max-width: 360px;
}

.footer__newsletter-input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid #555;
  border-radius: 6px;
  background: #2c1a15;
  color: #fff;
  font-size: .85rem;
}

.footer__newsletter-input::placeholder {
  color: #888;
}

.footer__newsletter-btn {
  padding: 10px 18px;
  background: #f5a623;
  color: #3E2723;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  font-size: .85rem;
}

.footer__newsletter-btn:hover {
  background: #ffb74d;
}

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

.toast__img {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  object-fit: cover;
}

.toast__content {
  flex: 1;
}

.toast__link {
  display: block;
  color: #f5a623;
  font-size: .8rem;
  text-decoration: underline;
  margin-top: 4px;
  cursor: pointer;
}

.breadcrumb-bar {
  background: #f9f6f3;
  padding: 12px 0;
  border-bottom: 1px solid #ede6df;
}

.breadcrumb-bar .container {
  font-size: .82rem;
}

.breadcrumb-bar a {
  color: #888;
  text-decoration: none;
}

.breadcrumb-bar a:hover {
  color: #3E2723;
}

.breadcrumb-bar span {
  color: #3E2723;
  font-weight: 500;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

body.dark-mode {
  background: #181818;
  color: #e0e0e0;
}

body.dark-mode .header {
  background: #232323;
  border-color: #333;
}

body.dark-mode .header__logo img {
  filter: brightness(1.8);
}

body.dark-mode .nav-main {
  background: #2a2016;
}

body.dark-mode .nav-main__link {
  color: #e8ddd0;
}

body.dark-mode .topbar {
  background: #1a1410;
  border-color: #2a2016;
}

body.dark-mode .topbar a {
  color: #c4b8a8;
}

body.dark-mode .benefits-bar {
  background: #222;
  border-color: #333;
}

body.dark-mode .benefits-bar__item {
  color: #bbb;
}

body.dark-mode .benefits-bar__item svg {
  stroke: #bbb;
}

body.dark-mode .search-form input {
  background: #333;
  color: #e0e0e0;
  border-color: #444;
}

body.dark-mode .search-form input::placeholder {
  color: #888;
}

body.dark-mode .search-form button {
  color: #ccc;
}

body.dark-mode .search-overlay {
  background: #2c2c2c;
  border-color: #444;
}

body.dark-mode .search-overlay__item {
  border-color: #3a3a3a;
  color: #ddd;
}

body.dark-mode .search-overlay__item:hover {
  background: #383838;
}

body.dark-mode .search-autocomplete {
  background: #2c2c2c !important;
  border-color: #444 !important;
}

body.dark-mode .search-autocomplete a {
  color: #ddd !important;
  border-color: #3a3a3a !important;
}

body.dark-mode .search-autocomplete a:hover {
  background: #383838 !important;
}

body.dark-mode .main-content,
body.dark-mode section,
body.dark-mode .products,
body.dark-mode .moments,
body.dark-mode .discover,
body.dark-mode .cacau-lovers {
  background: #181818;
}

body.dark-mode .section-title h2,
body.dark-mode h2,
body.dark-mode h3 {
  color: #e8ddd0;
}

body.dark-mode .section-title p {
  color: #999;
}

body.dark-mode .product-card {
  background: #242424;
  border-color: #383838;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

body.dark-mode .product-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

body.dark-mode .product-card__name {
  color: #e0e0e0;
}

body.dark-mode .product-card__price-current {
  color: #f5a623;
}

body.dark-mode .product-card__price-original {
  color: #777;
}

body.dark-mode .product-card__unit {
  color: #888;
}

body.dark-mode .product-card__rating {
  color: #999;
}

body.dark-mode .product-card__btn {
  background: #5a6b4a;
  color: #fff;
}

body.dark-mode .product-card__btn:hover {
  background: #6a7b5a;
}

body.dark-mode .product-card__qty-btn {
  background: #333;
  color: #ddd;
  border-color: #444;
}

body.dark-mode .product-card__qty {
  color: #e0e0e0;
  background: #2a2a2a;
}

body.dark-mode .product-card__wishlist svg {
  stroke: #999;
}

body.dark-mode .product-detail {
  background: #181818;
}

body.dark-mode .product-detail__main-image {
  background: #242424;
}

body.dark-mode .product-detail__name {
  color: #e8ddd0;
}

body.dark-mode .product-detail__price {
  color: #f5a623;
}

body.dark-mode .product-detail__desc {
  color: #bbb;
}

body.dark-mode .product-detail__brand {
  color: #c4b8a8;
  background: #2a2016;
}

body.dark-mode .product-detail__sku {
  color: #777;
}

body.dark-mode .product-detail__rating {
  color: #bbb;
}

body.dark-mode .product-detail__reviews {
  background: #242424;
}

body.dark-mode .product-detail__review-card {
  background: #2c2c2c;
  border-color: #383838;
}

body.dark-mode .product-detail__review-name {
  color: #e0e0e0;
}

body.dark-mode .product-detail__review-text {
  color: #bbb;
}

body.dark-mode .product-detail__thumb {
  border-color: #444;
}

body.dark-mode .product-detail__thumb.active {
  border-color: #f5a623;
}

body.dark-mode .breadcrumb,
body.dark-mode .cat-breadcrumb {
  color: #999;
}

body.dark-mode .breadcrumb a,
body.dark-mode .cat-breadcrumb a {
  color: #c4b8a8;
}

body.dark-mode .cat-page {
  background: #181818;
}

body.dark-mode .cat-sidebar {
  background: #242424;
  border-radius: 8px;
  padding: 12px;
}

body.dark-mode .cat-filter {
  border-color: #383838;
}

body.dark-mode .cat-filter__title {
  color: #e0e0e0;
}

body.dark-mode .cat-filter__option {
  color: #bbb;
}

body.dark-mode .cat-header__title {
  color: #e8ddd0;
}

body.dark-mode .cat-header__desc {
  color: #999;
}

body.dark-mode .cat-sort select {
  background: #333;
  color: #ddd;
  border-color: #444;
}

body.dark-mode input[type="text"],
body.dark-mode input[type="email"],
body.dark-mode input[type="password"],
body.dark-mode input[type="number"],
body.dark-mode input[type="tel"],
body.dark-mode select,
body.dark-mode textarea {
  background: #2c2c2c;
  color: #e0e0e0;
  border-color: #444;
}

body.dark-mode input::placeholder {
  color: #777;
}

body.dark-mode input:focus,
body.dark-mode select:focus {
  border-color: #f5a623;
}

body.dark-mode label {
  color: #ccc;
}

body.dark-mode .modal {
  background: #2c2c2c;
  color: #e0e0e0;
}

body.dark-mode .modal h2 {
  color: #e8ddd0;
}

body.dark-mode .modal__footer {
  color: #999;
}

body.dark-mode .modal--cep {
  background: #2c2c2c;
}

body.dark-mode .modal__subtitle {
  color: #bbb;
}

body.dark-mode .mega-menu {
  background: #2c2c2c;
  border-color: #444;
}

body.dark-mode .mega-menu__col h4 {
  color: #f5a623;
}

body.dark-mode .mega-menu__col a {
  color: #ccc;
}

body.dark-mode .mega-menu__col a:hover {
  color: #f5a623;
}

body.dark-mode .mega-menu__footer {
  border-color: #444;
}

body.dark-mode .mega-menu__footer a {
  color: #c4b8a8;
}

body.dark-mode .footer {
  background: #111;
  color: #bbb;
}

body.dark-mode .footer h4 {
  color: #e0e0e0;
}

body.dark-mode .footer a {
  color: #999;
}

body.dark-mode .footer a:hover {
  color: #f5a623;
}

body.dark-mode .footer__disclaimer {
  color: #666;
}

body.dark-mode .footer__bottom {
  color: #555;
  border-color: #333;
}

body.dark-mode .footer__newsletter-input {
  background: #222;
  color: #ddd;
  border-color: #444;
}

body.dark-mode .footer__internal-links a {
  color: #bbb;
}

body.dark-mode .checkout {
  background: #181818;
}

body.dark-mode .checkout__panel {
  background: #242424;
  color: #e0e0e0;
}

body.dark-mode .checkout__step {
  color: #888;
}

body.dark-mode .checkout__step.active {
  color: #f5a623;
}

body.dark-mode .checkout__table th {
  color: #bbb;
  border-color: #444;
}

body.dark-mode .checkout__table td {
  color: #ddd;
  border-color: #383838;
}

@media (max-width: 768px) {
  body.dark-mode .checkout__table tr {
    background: #2a2a2a;
    border-color: #444;
  }

  body.dark-mode .checkout__table td::before {
    color: #888;
  }
}

body.dark-mode .checkout__pay-tab {
  background: #333;
  color: #bbb;
  border-color: #444;
}

body.dark-mode .checkout__pay-tab.active {
  background: #5D4037;
  color: #fff;
}

body.dark-mode .checkout__radio {
  color: #ddd;
}

body.dark-mode .checkout__btn--outline {
  border-color: #555;
  color: #ccc;
}

body.dark-mode .cart-drawer {
  background: #242424;
  color: #e0e0e0;
}

body.dark-mode .cart-drawer__header {
  border-color: #383838;
}

body.dark-mode .cart-drawer__item {
  border-color: #383838;
}

body.dark-mode .cart-drawer__item-name {
  color: #e0e0e0;
}

body.dark-mode .cart-drawer__item-price {
  color: #f5a623;
}

body.dark-mode .cookie-consent {
  background: #2c2c2c;
  border-color: #444;
  color: #bbb;
}

body.dark-mode .quick-view {
  background: #2c2c2c;
  color: #e0e0e0;
}

body.dark-mode .quick-view__name {
  color: #e8ddd0;
}

body.dark-mode .quick-view__price {
  color: #f5a623;
}

body.dark-mode .quick-view__desc {
  color: #bbb;
}

body.dark-mode a {
  color: #c4b8a8;
}

body.dark-mode p {
  color: #bbb;
}

body.dark-mode .discover {
  background: #1e1e1e;
}

body.dark-mode .discover__links a {
  color: #c4b8a8;
}

body.dark-mode .discover__links a:hover {
  color: #f5a623;
}

body.dark-mode .freight-calc__option {
  background: #333;
  border-color: #444;
  color: #ddd;
}

body.dark-mode .reveal.visible {
  opacity: 1;
}

body.dark-mode .toast {
  background: #f5a623;
  color: #1a1a1a;
}

body.dark-mode .cart-toast {
  background: #2c2c2c;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}
body.dark-mode .cart-toast__message {
  color: #e8ddd0;
}
body.dark-mode .cart-toast__close {
  color: #ccc;
}
body.dark-mode .cart-toast__cart {
  color: #c4a574;
}
body.dark-mode .cart-toast__check {
  color: #4caf50;
  background: #2c2c2c;
}

.dark-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  padding: 6px;
  display: flex;
  align-items: center;
}

.dark-toggle svg {
  width: 18px;
  height: 18px;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #3E2723;
  margin: 5px 0;
  transition: all .3s;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }

  .nav-main__list {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
    z-index: 100;
  }

  .nav-main__list.mobile-open {
    display: flex;
  }

  .mega-menu {
    position: static;
    width: 100%;
  }

  .header__search {
    order: 3;
    width: 100%;
    margin-top: 8px;
  }

  .benefits-bar .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
    justify-items: start;
  }

  .product-detail__grid {
    grid-template-columns: 1fr !important;
  }

  .quick-view__grid {
    grid-template-columns: 1fr;
  }

  .cat-layout {
    grid-template-columns: 1fr !important;
  }

  .cat-sidebar {
    display: none;
  }

  .cat-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .products__grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px;
  }

  .product-card {
    padding-bottom: 0;
  }

  .product-card__body {
    padding: 10px 12px 8px;
  }

  .product-card__name {
    font-size: 0.82rem;
    line-height: 1.2;
  }

  .product-card__price-current {
    font-size: 1rem;
  }

  .product-card__actions {
    padding: 0 12px 12px;
  }

  .cat-grid .product-card__btn,
  .products__grid .product-card__btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 12px;
    font-size: 0.75rem;
  }

  .product-card__btn-icon {
    font-size: 1rem !important;
    flex-shrink: 0;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
  }

  .product-card__actions-top {
    flex-wrap: wrap;
    gap: 8px;
  }

  .product-card__price-wrap .product-card__price-current {
    font-size: 1rem;
  }

  .product-card__qty {
    margin-left: auto;
  }

  .product-card__badge--promo {
    font-size: 0.7rem;
    padding: 5px 10px;
    top: 8px !important;
    left: 8px !important;
  }

  .product-detail__add-cart {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    font-size: 0.95rem;
  }

  .products--promo .section__title--promo {
    font-size: 1.35rem;
  }

  .products--promo .section__subtitle {
    font-size: 0.9rem;
    margin-bottom: 16px;
  }

  .products__promo-link {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .cart-toast {
    padding: 20px 36px 20px 20px;
    max-width: calc(100vw - 32px);
  }

  .cart-toast__message {
    font-size: 0.95rem;
  }

  .cart-toast__icon {
    width: 36px;
    height: 36px;
  }

  .cart-toast__cart {
    width: 30px;
    height: 30px;
  }

  .scroll-top {
    bottom: 16px;
    left: 16px;
  }

  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
  }

  .discover,
  .cacau-lovers {
    padding-right: 64px;
  }

  .footer {
    padding-bottom: 72px;
    padding-right: 64px;
  }

  .topbar {
    padding: 0 12px;
    font-size: 0.7rem;
  }

  .topbar__right {
    gap: 12px;
  }

  .topbar__right a {
    font-size: 0.7rem;
  }

  .header__inner {
    gap: 8px;
  }

  .header__logo img {
    height: 40px;
  }

  .header__actions {
    gap: 12px;
  }

  .header__action {
    padding: 8px 10px;
    min-width: 40px;
    justify-content: center;
  }

  .benefits-bar {
    padding: 12px 16px;
  }

  .benefits-bar__item {
    font-size: 0.75rem;
    gap: 6px;
  }

  .benefits-bar__item svg {
    width: 16px;
    height: 16px;
  }

  .cacau-lovers {
    padding: 28px 16px 28px;
  }

  .cacau-lovers h2 {
    font-size: 1.35rem;
  }

  .cacau-lovers p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .discover h2 {
    font-size: 1.25rem;
  }

  .discover .discover__content p {
    font-size: 0.85rem;
  }
}
