:root {
  --color-bg: #fff9ef;
  --color-cream: #fff1d8;
  --color-caramel: #c7792a;
  --color-caramel-dark: #8f4818;
  --color-gold: #f3b23d;
  --color-chocolate: #3a1e12;
  --color-brown: #5a2d17;
  --color-red: #d84839;
  --color-pink: #fff0ef;
  --color-white: #ffffff;
  --color-muted: #725746;
  --shadow-soft: 0 20px 60px rgba(74, 37, 17, 0.12);
  --shadow-hover: 0 30px 80px rgba(74, 37, 17, 0.22);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --transition: all 0.35s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--color-bg);
  color: var(--color-chocolate);
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

::selection {
  background: var(--color-gold);
  color: var(--color-chocolate);
}

/* Loader */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: linear-gradient(135deg, #fff4df, #ffe0b4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-card {
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-lg);
  padding: 28px 34px;
  text-align: center;
  backdrop-filter: blur(18px);
}

.popcorn-loader {
  font-size: 58px;
  animation: pop 1s infinite alternate ease-in-out;
}

.loader-card span {
  display: block;
  font-weight: 700;
  color: var(--color-brown);
  margin-top: 8px;
}

@keyframes pop {
  from { transform: translateY(0) rotate(-5deg) scale(1); }
  to { transform: translateY(-12px) rotate(7deg) scale(1.08); }
}

/* Header */
.main-header {
  padding: 12px 0;
  transition: var(--transition);
}

.main-header.scrolled {
  background: rgba(255, 249, 239, 0.92);
  box-shadow: 0 12px 40px rgba(58, 30, 18, 0.08);
  backdrop-filter: blur(16px);
  padding: 6px 0;
}

.navbar {
  padding: 0;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-chocolate);
  font-weight: 800;
  letter-spacing: -0.5px;
}

.brand-logo:hover {
  color: var(--color-caramel-dark);
}

.brand-logo strong {
  color: var(--color-caramel);
}

.brand-icon {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  background: var(--color-white);
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(199, 121, 42, 0.18);
}

.nav-link {
  color: var(--color-brown);
  font-weight: 700;
  font-size: 0.93rem;
  margin: 0 5px;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 3px;
  height: 2px;
  background: var(--color-caramel);
  transform: scaleX(0);
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-caramel-dark);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.navbar-toggler {
  border: 0;
  box-shadow: none !important;
}

/* Buttons */
.btn {
  border-radius: 999px;
  font-weight: 800;
  padding: 13px 24px;
  transition: var(--transition);
}

.btn-sm {
  padding: 10px 18px;
}

.btn-primary-premium {
  background: linear-gradient(135deg, var(--color-caramel), var(--color-gold));
  color: var(--color-white);
  border: 0;
  box-shadow: 0 16px 30px rgba(199, 121, 42, 0.28);
}

.btn-primary-premium:hover {
  transform: translateY(-4px);
  color: var(--color-white);
  box-shadow: 0 24px 45px rgba(199, 121, 42, 0.38);
}

.btn-outline-premium {
  border: 2px solid rgba(143, 72, 24, 0.22);
  color: var(--color-caramel-dark);
  background: rgba(255,255,255,0.55);
}

.btn-outline-premium:hover {
  background: var(--color-white);
  color: var(--color-caramel-dark);
  transform: translateY(-4px);
}

.btn-dark-premium {
  background: var(--color-chocolate);
  color: var(--color-white);
  border: 0;
}

.btn-dark-premium:hover {
  background: var(--color-caramel-dark);
  color: var(--color-white);
  transform: translateY(-4px);
}

.btn-light-premium {
  background: var(--color-white);
  color: var(--color-caramel-dark);
  border: 0;
  box-shadow: 0 16px 30px rgba(58, 30, 18, 0.16);
}

.btn-light-premium:hover {
  transform: translateY(-4px);
  color: var(--color-chocolate);
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  border: 0;
  box-shadow: 0 14px 25px rgba(37, 211, 102, 0.22);
}

.btn-whatsapp:hover {
  background: #1db954;
  color: #fff;
  transform: translateY(-3px);
}

/* General sections */
.section-padding {
  padding: 105px 0;
}

.section-title {
  max-width: 760px;
  margin: 0 auto 52px;
}

.section-title h2,
.about-section h2,
.events-section h2,
.contact-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--color-chocolate);
  margin: 12px 0 14px;
}

.section-title p,
.about-section p,
.events-section p,
.contact-section p {
  color: var(--color-muted);
  line-height: 1.8;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(243, 178, 61, 0.16);
  color: var(--color-caramel-dark);
  border: 1px solid rgba(243, 178, 61, 0.26);
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 0.86rem;
  font-weight: 800;
}

/* Hero */
.hero-section {
  position: relative;
  padding: 155px 0 105px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(243,178,61,0.28), transparent 35%),
    radial-gradient(circle at bottom right, rgba(216,72,57,0.15), transparent 35%),
    linear-gradient(135deg, #fff7e8, #fff0d4 50%, #fff8ef);
}

.hero-section h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.7rem, 6vw, 5.4rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -2px;
  margin: 18px 0 22px;
}

.hero-text {
  font-size: 1.08rem;
  color: var(--color-muted);
  line-height: 1.8;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 34px 0;
}

.hero-mini-info {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-mini-info div {
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  min-width: 140px;
  box-shadow: 0 14px 35px rgba(58,30,18,0.06);
  backdrop-filter: blur(12px);
}

.hero-mini-info strong {
  display: block;
  font-size: 1.35rem;
  color: var(--color-caramel-dark);
}

.hero-mini-info span {
  font-size: 0.78rem;
  color: var(--color-muted);
  font-weight: 700;
}

.hero-image-card {
  position: relative;
  border-radius: 42px;
  padding: 18px;
  background: rgba(255,255,255,0.62);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
  transform: rotate(1.5deg);
}

.hero-image-card img {
  border-radius: 34px;
  height: 620px;
  width: 100%;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.9);
  color: var(--color-chocolate);
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: var(--shadow-soft);
  animation: floaty 3.2s infinite ease-in-out;
}

.floating-card i {
  color: var(--color-caramel);
}

.card-top {
  top: 42px;
  left: -10px;
}

.card-bottom {
  right: -6px;
  bottom: 70px;
  animation-delay: 0.6s;
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.hero-bg-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(2px);
}

.shape-one {
  width: 260px;
  height: 260px;
  background: rgba(243, 178, 61, 0.18);
  top: 110px;
  right: 7%;
}

.shape-two {
  width: 180px;
  height: 180px;
  background: rgba(216, 72, 57, 0.12);
  left: 5%;
  bottom: 90px;
}

/* Benefits */
.benefits-section {
  background: var(--color-bg);
}

.benefit-card {
  height: 100%;
  background: var(--color-white);
  border: 1px solid rgba(143, 72, 24, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 18px 45px rgba(58, 30, 18, 0.06);
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.benefit-card i {
  width: 58px;
  height: 58px;
  display: inline-grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(199,121,42,0.16), rgba(243,178,61,0.28));
  color: var(--color-caramel-dark);
  font-size: 1.45rem;
  margin-bottom: 22px;
}

.benefit-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.benefit-card p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.7;
}

/* Flavors */
.flavors-section {
  background:
    radial-gradient(circle at top right, rgba(243,178,61,0.18), transparent 25%),
    var(--color-cream);
}

.flavor-card {
  position: relative;
  height: 100%;
  overflow: hidden;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 45px rgba(58, 30, 18, 0.08);
  transition: var(--transition);
}

.flavor-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-hover);
}

.flavor-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.flavor-content {
  padding: 24px;
}

.flavor-content h3 {
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.flavor-content p {
  color: var(--color-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  min-height: 48px;
}

.flavor-content a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-caramel-dark);
  font-weight: 800;
  margin-top: 6px;
  transition: var(--transition);
}

.flavor-content a:hover {
  color: #25d366;
}

.tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: var(--color-gold);
  color: var(--color-chocolate);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.72rem;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.tag.premium {
  background: var(--color-chocolate);
  color: var(--color-white);
}

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

.tag.salty {
  background: #ffead5;
  color: var(--color-caramel-dark);
}

/* About */
.about-section {
  background: var(--color-bg);
}

.about-image {
  position: relative;
  background: var(--color-white);
  padding: 18px;
  border-radius: 42px;
  box-shadow: var(--shadow-soft);
}

.about-image img {
  border-radius: 34px;
  height: 560px;
  width: 100%;
  object-fit: cover;
}

.about-highlight {
  position: absolute;
  right: 32px;
  bottom: 32px;
  background: rgba(255,255,255,0.92);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  box-shadow: var(--shadow-soft);
}

.about-highlight strong {
  display: block;
  font-size: 1.25rem;
  color: var(--color-caramel-dark);
}

.about-highlight span {
  color: var(--color-muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.about-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.about-list div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-brown);
  font-weight: 800;
}

.about-list i {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.12);
  color: #1db954;
}

/* Events */
.events-section {
  background: linear-gradient(135deg, #3a1e12, #6a3519);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.events-section::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(243, 178, 61, 0.12);
  right: -140px;
  top: -120px;
}

.events-section h2,
.events-section p {
  color: var(--color-white);
}

.events-section p {
  opacity: 0.82;
}

.events-section .section-badge {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.16);
  color: #ffd78a;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
  margin-top: 28px;
}

.event-grid div {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 16px;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.event-grid i {
  color: var(--color-gold);
}

.event-card {
  position: relative;
  overflow: hidden;
  border-radius: 42px;
  box-shadow: 0 30px 85px rgba(0,0,0,0.28);
}

.event-card img {
  height: 570px;
  width: 100%;
  object-fit: cover;
}

.event-overlay {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: 24px;
  backdrop-filter: blur(14px);
}

.event-overlay h3 {
  font-weight: 900;
  color: var(--color-white);
}

/* Gallery */
.gallery-section {
  background: var(--color-bg);
}

.gallerySwiper {
  padding-bottom: 55px;
}

.gallerySwiper .swiper-slide {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.gallerySwiper img {
  width: 100%;
  height: 390px;
  object-fit: cover;
}

.swiper-pagination-bullet-active {
  background: var(--color-caramel);
}

/* Stats */
.stats-section {
  padding: 70px 0;
  background: linear-gradient(135deg, var(--color-caramel), var(--color-gold));
}

.stat-item {
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--radius-lg);
  padding: 35px 20px;
  color: var(--color-white);
  backdrop-filter: blur(12px);
}

.stat-item strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  line-height: 1;
}

.stat-item strong::before {
  content: "+";
}

.stat-item span {
  display: block;
  font-weight: 800;
  margin-top: 8px;
}

/* Testimonials */
.testimonials-section {
  background: var(--color-pink);
}

.testimonial-card {
  height: 100%;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 18px 45px rgba(58, 30, 18, 0.07);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.stars {
  color: var(--color-gold);
  letter-spacing: 3px;
  font-size: 1.1rem;
  margin-bottom: 18px;
}

.testimonial-card p {
  color: var(--color-muted);
  line-height: 1.8;
  font-weight: 600;
}

.client {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
}

.client img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
}

.client strong {
  display: block;
  font-weight: 900;
}

.client span {
  color: var(--color-muted);
  font-size: 0.84rem;
}

/* CTA */
.cta-section {
  padding: 70px 0;
  background: var(--color-bg);
}

.cta-card {
  position: relative;
  overflow: hidden;
  text-align: center;
  border-radius: 42px;
  padding: 70px 28px;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.28), transparent 26%),
    linear-gradient(135deg, var(--color-chocolate), var(--color-caramel-dark));
  color: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.cta-card::after {
  content: "🍿";
  position: absolute;
  font-size: 180px;
  opacity: 0.08;
  right: 8%;
  bottom: -35px;
}

.cta-card span {
  color: #ffd78a;
  font-weight: 900;
}

.cta-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  margin: 12px 0;
}

.cta-card p {
  opacity: 0.82;
  margin-bottom: 28px;
}

/* FAQ */
.faq-section {
  background: var(--color-bg);
}

.premium-accordion {
  max-width: 860px;
  margin: 0 auto;
}

.accordion-item {
  border: 0;
  margin-bottom: 16px;
  border-radius: var(--radius-md) !important;
  overflow: hidden;
  box-shadow: 0 16px 35px rgba(58,30,18,0.06);
}

.accordion-button {
  font-weight: 900;
  color: var(--color-chocolate);
  padding: 22px 26px;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  background: #fff4df;
  color: var(--color-caramel-dark);
}

.accordion-body {
  color: var(--color-muted);
  line-height: 1.8;
}

/* Contact */
.contact-section {
  background: linear-gradient(135deg, #fff7e8, #fffaf3);
}

.contact-info {
  display: grid;
  gap: 15px;
  margin-top: 28px;
}

.contact-info a,
.contact-info span {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-brown);
  font-weight: 800;
}

.contact-info i {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: var(--color-white);
  color: var(--color-caramel-dark);
  box-shadow: 0 12px 26px rgba(58,30,18,0.08);
}

.contact-form {
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-soft);
}

.contact-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-label {
  font-weight: 800;
  color: var(--color-chocolate);
}

.form-control,
.form-select {
  border: 1px solid rgba(143, 72, 24, 0.14);
  border-radius: 16px;
  padding: 14px 16px;
  color: var(--color-brown);
  box-shadow: none !important;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--color-gold);
}

.form-note {
  display: block;
  text-align: center;
  margin-top: 12px;
  color: var(--color-muted);
  font-weight: 600;
}

.contact-form button[type="submit"]:disabled {
  opacity: 0.72;
  cursor: wait;
  transform: none;
}

.contact-form-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  padding: 12px 15px;
  border-radius: 14px;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}

.contact-form-status:empty {
  display: none;
}

.contact-form-status::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.contact-form-status.is-success {
  border: 1px solid rgba(37, 150, 87, 0.2);
  background: rgba(58, 174, 109, 0.1);
  color: #1d7444;
}

.contact-form-status.is-success::before {
  content: "\f058";
}

.contact-form-status.is-error {
  border: 1px solid rgba(216, 72, 57, 0.2);
  background: rgba(216, 72, 57, 0.08);
  color: #a93429;
}

.contact-form-status.is-error::before {
  content: "\f06a";
}

/* Footer */
.footer-section {
  background: var(--color-chocolate);
  color: rgba(255,255,255,0.78);
  padding: 75px 0 28px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-white);
  font-weight: 900;
  font-size: 1.2rem;
  margin-bottom: 18px;
}

.footer-logo:hover {
  color: var(--color-gold);
}

.footer-section h4 {
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 900;
  margin-bottom: 18px;
}

.footer-section a {
  display: block;
  color: rgba(255,255,255,0.72);
  margin-bottom: 10px;
  transition: var(--transition);
}

.footer-section a:hover {
  color: var(--color-gold);
  transform: translateX(4px);
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  margin: 0;
}

.social-links a:hover {
  transform: translateY(-4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  margin-top: 52px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.88rem;
}

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  font-size: 2rem;
  box-shadow: 0 18px 38px rgba(37,211,102,0.38);
  animation: pulse-whatsapp 1.7s infinite;
  transition: var(--transition);
}

.floating-whatsapp:hover {
  color: #fff;
  background: #1db954;
  transform: scale(1.08);
}

@keyframes pulse-whatsapp {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.46); }
  70% { box-shadow: 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* Responsive */
@media (max-width: 991px) {
  .main-header {
    background: rgba(255, 249, 239, 0.95);
    box-shadow: 0 12px 40px rgba(58, 30, 18, 0.08);
  }

  .navbar-collapse {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    margin-top: 14px;
    padding: 18px;
    box-shadow: var(--shadow-soft);
  }

  .nav-link {
    padding: 12px 0;
  }

  .nav-link::after {
    display: none;
  }

  .hero-section {
    padding: 130px 0 75px;
  }

  .hero-image-card img,
  .about-image img,
  .event-card img {
    height: 430px;
  }

  .section-padding {
    padding: 78px 0;
  }
}

@media (max-width: 767px) {
  .hero-section .row > .col-lg-6:first-child {
    order: 2;
  }

  .hero-section .row > .col-lg-6:nth-child(2) {
    order: 1;
  }

  .hero-section h1 {
    letter-spacing: -1px;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-mini-info {
    flex-direction: column;
  }

  .hero-mini-info div {
    width: 100%;
  }

  .floating-card {
    display: none;
  }

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

  .gallerySwiper img {
    height: 280px;
  }

  .contact-form {
    padding: 24px;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom span {
    display: block;
    margin-bottom: 10px;
  }

  .floating-whatsapp {
    width: 56px;
    height: 56px;
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  .section-badge {
    font-size: 0.78rem;
  }

  .hero-image-card,
  .about-image {
    padding: 10px;
    border-radius: 28px;
  }

  .hero-image-card img,
  .about-image img,
  .event-card img {
    height: 330px;
    border-radius: 22px;
  }

  .cta-card {
    padding: 52px 20px;
    border-radius: 30px;
  }
}


/* Category carousel - added in v1 + categories */
.category-carousel-section {
  margin: -16px 0 52px;
}

.categorySwiper {
  padding: 10px 4px 48px;
}

.categorySwiper .swiper-slide {
  height: auto;
}

.category-carousel-card {
  height: 100%;
  min-height: 142px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(143, 72, 24, 0.10);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: 0 18px 45px rgba(58, 30, 18, 0.07);
  color: var(--color-chocolate);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.category-carousel-card::before {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  right: -36px;
  top: -36px;
  background: rgba(243, 178, 61, 0.18);
  transition: var(--transition);
}

.category-carousel-card:hover,
.category-carousel-card.active {
  transform: translateY(-8px);
  color: var(--color-chocolate);
  box-shadow: var(--shadow-hover);
  border-color: rgba(199, 121, 42, 0.28);
}

.category-carousel-card:hover::before,
.category-carousel-card.active::before {
  transform: scale(1.35);
  background: rgba(243, 178, 61, 0.26);
}

.category-carousel-icon {
  width: 58px;
  height: 58px;
  min-width: 58px;
  display: inline-grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--color-caramel), var(--color-gold));
  color: var(--color-white);
  font-size: 1.4rem;
  box-shadow: 0 14px 28px rgba(199, 121, 42, 0.24);
  position: relative;
  z-index: 2;
}

.category-carousel-content {
  display: grid;
  gap: 4px;
  position: relative;
  z-index: 2;
}

.category-carousel-content strong {
  font-size: 1.04rem;
  font-weight: 900;
}

.category-carousel-content small {
  color: var(--color-muted);
  font-weight: 700;
  line-height: 1.35;
}

.category-carousel-content em {
  width: fit-content;
  margin-top: 4px;
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 900;
  color: var(--color-caramel-dark);
  background: rgba(243, 178, 61, 0.16);
  border-radius: 999px;
  padding: 6px 10px;
}

.category-carousel-arrow {
  margin-left: auto;
  color: var(--color-caramel-dark);
  opacity: 0.65;
  position: relative;
  z-index: 2;
  transition: var(--transition);
}

.category-carousel-card:hover .category-carousel-arrow {
  opacity: 1;
  transform: translateX(4px);
}

.category-pagination {
  bottom: 8px !important;
}

.product-category-group {
  scroll-margin-top: 110px;
}

.product-category-group + .product-category-group {
  margin-top: 62px;
}

.category-group-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 26px;
}

.category-group-title h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  font-weight: 800;
  color: var(--color-chocolate);
  margin: 10px 0 8px;
  letter-spacing: -0.7px;
}

.category-group-title p {
  color: var(--color-muted);
  margin: 0;
  line-height: 1.7;
}

.category-group-title a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: max-content;
  color: var(--color-caramel-dark);
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(143,72,24,0.10);
  box-shadow: 0 12px 26px rgba(58,30,18,0.06);
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 900;
  transition: var(--transition);
}

.category-group-title a:hover {
  background: #25d366;
  color: var(--color-white);
  transform: translateY(-3px);
}

.category-group-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(243, 178, 61, 0.16);
  color: var(--color-caramel-dark);
  border: 1px solid rgba(243, 178, 61, 0.26);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 900;
}

@media (max-width: 767px) {
  .category-carousel-section {
    margin: -8px 0 38px;
  }

  .category-group-title {
    display: block;
  }

  .category-group-title a {
    margin-top: 18px;
  }

  .product-category-group + .product-category-group {
    margin-top: 46px;
  }
}


/* Compact sticky catalog categories - iFood-like navigation */
.category-sticky-wrapper {
  position: sticky;
  top: 72px;
  z-index: 860;
  margin: -18px 0 42px;
  padding: 10px 0;
  background: rgba(255, 241, 216, 0.88);
  backdrop-filter: blur(18px);
  border-top: 1px solid rgba(143, 72, 24, 0.06);
  border-bottom: 1px solid rgba(143, 72, 24, 0.10);
}

.category-sticky-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.68);
  border: 1px solid rgba(143, 72, 24, 0.09);
  box-shadow: 0 14px 30px rgba(58,30,18,0.07);
  border-radius: 999px;
  padding: 8px 10px;
  overflow: hidden;
}

.category-nav-label {
  min-width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--color-caramel-dark);
  background: rgba(243, 178, 61, 0.14);
  font-size: 0.76rem;
  font-weight: 900;
}

.category-pill-swiper {
  flex: 1;
  min-width: 0;
  padding: 0;
}

.category-pill-swiper .swiper-wrapper {
  align-items: center;
}

.category-pill-swiper .swiper-slide {
  width: auto !important;
}

.category-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: max-content;
  color: var(--color-brown);
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(143, 72, 24, 0.13);
  border-radius: 999px;
  padding: 10px 13px;
  font-size: 0.86rem;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(58,30,18,0.045);
  transition: var(--transition);
}

.category-pill i {
  color: var(--color-caramel);
  font-size: 0.82rem;
}

.category-pill small {
  min-width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(243, 178, 61, 0.20);
  color: var(--color-caramel-dark);
  font-size: 0.68rem;
  font-weight: 900;
}

.category-pill:hover,
.category-pill.active {
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-caramel), var(--color-gold));
  border-color: transparent;
  box-shadow: 0 12px 26px rgba(199,121,42,0.22);
  transform: translateY(-2px);
}

.category-pill:hover i,
.category-pill.active i {
  color: var(--color-white);
}

.category-pill:hover small,
.category-pill.active small {
  background: rgba(255,255,255,0.22);
  color: var(--color-white);
}

.product-category-group {
  scroll-margin-top: 130px;
}

/* Hides the old large category carousel if present from previous versions */
.category-carousel-section {
  display: none;
}

@media (max-width: 991px) {
  .category-sticky-wrapper {
    top: 66px;
    margin-left: -12px;
    margin-right: -12px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .category-sticky-nav {
    border-radius: 24px;
  }
}

@media (max-width: 767px) {
  .category-sticky-wrapper {
    top: 64px;
    margin-top: -10px;
    margin-bottom: 32px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .category-sticky-nav {
    display: block;
    border-radius: 22px;
    padding: 8px;
  }

  .category-nav-label {
    margin-bottom: 7px;
  }

  .category-pill {
    padding: 9px 12px;
    font-size: 0.82rem;
  }

  .category-pill small {
    min-width: 20px;
    height: 20px;
  }
}


/* Language switcher - i18n */
.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  margin-right: 12px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(143, 72, 24, 0.10);
  border-radius: 999px;
  padding: 4px;
  box-shadow: 0 10px 24px rgba(58,30,18,0.06);
}

.language-btn {
  border: 0;
  background: transparent;
  color: var(--color-brown);
  border-radius: 999px;
  padding: 7px 10px;
  line-height: 1;
  font-size: 0.74rem;
  font-weight: 900;
  transition: var(--transition);
}

.language-btn:hover,
.language-btn.active {
  background: linear-gradient(135deg, var(--color-caramel), var(--color-gold));
  color: var(--color-white);
  box-shadow: 0 8px 18px rgba(199,121,42,0.18);
}

@media (min-width: 992px) {
  .language-switcher {
    order: 2;
  }

  .navbar-collapse {
    order: 3;
  }
}

@media (max-width: 420px) {
  .language-switcher {
    margin-right: 8px;
  }

  .language-btn {
    padding: 6px 8px;
    font-size: 0.68rem;
  }

  .brand-logo {
    gap: 7px;
  }

  .brand-logo span:last-child {
    font-size: 0.95rem;
  }
}


/* Mobile header language switcher fix */
.navbar > .container {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 8px;
}

.brand-logo {
  min-width: 0;
  flex: 1 1 auto;
}

.brand-logo span:last-child {
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.language-switcher {
  flex: 0 0 auto;
}

.navbar-toggler {
  flex: 0 0 auto;
}

@media (max-width: 575px) {
  .main-header {
    padding: 8px 0;
  }

  .navbar > .container {
    gap: 6px;
  }

  .brand-logo {
    max-width: calc(100% - 112px);
    gap: 7px;
  }

  .brand-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    font-size: 1rem;
  }

  .brand-logo span:last-child {
    font-size: 0.92rem;
    line-height: 1.1;
  }

  .language-switcher {
    margin-left: 0;
    margin-right: 0;
    padding: 3px;
    gap: 3px;
    max-width: 66px;
  }

  .language-btn {
    padding: 6px 8px;
    font-size: 0.68rem;
  }

  .navbar-toggler {
    width: 36px;
    min-width: 36px;
    height: 36px;
    padding: 4px;
  }

  .navbar-toggler-icon {
    width: 1.25em;
    height: 1.25em;
  }
}

@media (max-width: 360px) {
  .brand-logo {
    max-width: calc(100% - 104px);
  }

  .brand-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
  }

  .brand-logo span:last-child {
    font-size: 0.82rem;
  }

  .language-btn {
    padding: 5px 7px;
    font-size: 0.64rem;
  }

  .navbar-toggler {
    width: 34px;
    min-width: 34px;
  }
}


/* Mobile header overflow fix v2 */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  position: relative;
}

.main-header {
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100vw;
}

@media (max-width: 575px) {
  .main-header .navbar > .container {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding-left: 10px;
    padding-right: 10px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 7px;
  }

  .main-header .brand-logo {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    display: inline-flex;
  }

  .main-header .brand-logo .brand-icon {
    flex: 0 0 auto;
  }

  .main-header .brand-logo span:last-child {
    display: block;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .main-header .language-switcher {
    margin: 0;
    width: auto;
    max-width: none;
    min-width: 54px;
    justify-self: end;
  }

  .main-header .navbar-toggler {
    margin: 0;
    justify-self: end;
  }

  .main-header .navbar-collapse {
    grid-column: 1 / -1;
    width: 100%;
    min-width: 0;
  }

  .hero-section,
  main,
  section,
  footer {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .hero-section h1 {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 380px) {
  .main-header .navbar > .container {
    padding-left: 8px;
    padding-right: 8px;
    gap: 5px;
    grid-template-columns: minmax(0, 1fr) auto auto;
  }

  .main-header .brand-logo span:last-child {
    font-size: 0.78rem;
  }

  .main-header .language-switcher {
    min-width: 50px;
    padding: 2px;
  }

  .main-header .language-btn {
    padding: 5px 6px;
    font-size: 0.62rem;
  }

  .main-header .navbar-toggler {
    width: 32px;
    min-width: 32px;
    height: 32px;
  }
}


/* Sticky category menu fix after mobile overflow adjustment */
@media (max-width: 575px) {
  /*
    Importante:
    position: sticky deixa de funcionar quando algum ancestral direto
    está com overflow hidden/auto. Por isso, liberamos main e sections
    e mantemos o controle de rolagem lateral no html/body.
  */
  main,
  section,
  footer {
    overflow-x: visible !important;
  }

  .hero-section {
    overflow: hidden !important;
  }

  .flavors-section,
  #sabores,
  #sabores > .container,
  .products-dynamic-area {
    overflow: visible !important;
  }

  .category-sticky-wrapper {
    position: sticky !important;
    top: 64px;
    z-index: 950;
  }
}

@media (min-width: 576px) {
  .flavors-section,
  #sabores,
  #sabores > .container,
  .products-dynamic-area {
    overflow: visible !important;
  }

  .category-sticky-wrapper {
    position: sticky !important;
    z-index: 950;
  }
}


/* Reliable JS fixed menu for product categories */
.category-sticky-placeholder {
  height: 0;
}

.category-sticky-wrapper.is-fixed {
  position: fixed !important;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1200;
  margin: 0 !important;
  padding: 8px 0;
  background: rgba(255, 241, 216, 0.94);
  border-bottom: 1px solid rgba(143, 72, 24, 0.10);
  box-shadow: 0 18px 35px rgba(58,30,18,0.10);
  backdrop-filter: blur(18px);
}

.category-sticky-wrapper.is-fixed .category-sticky-nav {
  margin-left: 0;
  margin-right: 0;
}

@media (max-width: 575px) {
  .category-sticky-wrapper.is-fixed {
    width: calc(100vw - 24px) !important;
    max-width: calc(100vw - 24px);
    padding-left: 0;
    padding-right: 0;
  }

  .category-sticky-wrapper.is-fixed .category-sticky-nav {
    border-radius: 20px;
  }
}


/* Fixed category menu alignment correction */
.category-sticky-wrapper.is-fixed {
  left: auto !important;
  right: auto !important;
  transform: none !important;
}

@media (max-width: 575px) {
  .category-sticky-wrapper.is-fixed {
    left: 12px !important;
    right: 12px !important;
    width: auto !important;
    max-width: none !important;
    transform: none !important;
  }
}

@media (max-width: 380px) {
  .category-sticky-wrapper.is-fixed {
    left: 8px !important;
    right: 8px !important;
  }
}


/* Header permanent category menu */
.header-category-bar {
  width: 100%;
  background: rgba(255, 249, 239, 0.94);
  border-top: 1px solid rgba(143, 72, 24, 0.07);
  border-bottom: 1px solid rgba(143, 72, 24, 0.10);
  box-shadow: 0 14px 28px rgba(58,30,18,0.07);
  backdrop-filter: blur(16px);
  padding: 8px 0;
}

.header-category-bar .container {
  min-width: 0;
  overflow: hidden;
}

.header-category-swiper {
  width: 100%;
  padding: 0;
}

.header-category-swiper .swiper-wrapper {
  align-items: center;
}

.header-category-swiper .swiper-slide {
  width: auto !important;
}

.header-category-bar .category-pill {
  padding: 8px 12px;
  font-size: 0.82rem;
  box-shadow: 0 7px 16px rgba(58,30,18,0.05);
}

.header-category-bar .category-pill i {
  font-size: 0.78rem;
}

.header-category-bar .category-pill small {
  min-width: 20px;
  height: 20px;
  font-size: 0.66rem;
}

.category-sticky-wrapper,
.category-sticky-placeholder {
  display: none !important;
}

@media (max-width: 575px) {
  .header-category-bar {
    padding: 7px 0;
  }

  .header-category-bar .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .header-category-bar .category-pill {
    padding: 8px 10px;
    font-size: 0.78rem;
    gap: 6px;
  }

  .header-category-bar .category-pill small {
    min-width: 19px;
    height: 19px;
    font-size: 0.62rem;
  }

  .hero-section {
    padding-top: 150px;
  }
}

@media (max-width: 380px) {
  .header-category-bar .container {
    padding-left: 8px;
    padding-right: 8px;
  }

  .header-category-bar .category-pill {
    padding: 7px 9px;
    font-size: 0.72rem;
  }
}


/* Product detail page - dynamic product.html */
.product-page-body {
  background: #fff1d8;
}

.product-page-header {
  background: rgba(255, 249, 239, 0.96);
  box-shadow: 0 12px 36px rgba(58, 30, 18, 0.08);
  backdrop-filter: blur(16px);
}

.product-page-header .navbar > .container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.product-page-header .brand-logo {
  flex: 1 1 auto;
}

.product-back-top {
  flex: 0 0 auto;
}

.product-detail-page {
  padding: 120px 0 55px;
  min-height: 100vh;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
  gap: 34px;
  align-items: start;
}

.product-page-gallery {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.product-page-thumbs {
  display: grid;
  gap: 14px;
}

.product-page-thumb {
  width: 112px;
  height: 112px;
  border: 2px solid rgba(143, 72, 24, 0.12);
  background: #fff;
  border-radius: 12px;
  padding: 5px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 12px 24px rgba(58,30,18,0.06);
}

.product-page-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 9px;
  display: block;
}

.product-page-thumb:hover,
.product-page-thumb.active {
  border-color: var(--color-caramel);
  background: #f3b23d;
  transform: translateY(-2px);
}

.product-page-main-image {
  background: #fff;
  border-radius: 12px;
  min-height: 620px;
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(58,30,18,0.08);
}

.product-page-main-image img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  display: block;
}

.product-page-info {
  background: rgba(255, 241, 216, 0.78);
  border: 1px solid rgba(143, 72, 24, 0.10);
  border-radius: 18px;
  padding: 28px;
  position: sticky;
  top: 110px;
}

.product-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  font-size: 0.78rem;
  color: var(--color-muted);
  margin-bottom: 18px;
}

.product-breadcrumb a {
  color: var(--color-muted);
  font-weight: 700;
}

.product-breadcrumb a:hover {
  color: var(--color-caramel-dark);
}

.product-page-topline {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.product-page-info h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3vw, 3.25rem);
  line-height: 1.02;
  font-weight: 800;
  color: #2f4664;
  margin-bottom: 22px;
}

.product-page-price {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  font-weight: 800;
  color: #2f4664;
  line-height: 1;
  margin-bottom: 24px;
}

.product-page-buy {
  width: 100%;
  justify-content: center;
  margin-bottom: 0;
  background: #3aae6d;
  box-shadow: 0 18px 40px rgba(58, 174, 109, 0.24);
}

.product-page-buy:hover {
  background: #249657;
}

.product-size-selector {
  margin: 18px 0 28px;
  padding: 17px;
  border: 1px solid rgba(143, 72, 24, 0.13);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.product-size-selector h2 {
  margin: 0 0 12px;
  color: var(--color-muted);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-size-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.product-size-option {
  min-width: 0;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 9px;
  border: 1px solid rgba(143, 72, 24, 0.2);
  border-radius: 12px;
  background: rgba(255, 249, 239, 0.88);
  color: var(--color-brown);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 8px 20px rgba(58, 30, 18, 0.05);
}

.product-size-option i {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-caramel-dark);
  font-size: 0.58rem;
  opacity: 0;
  transform: scale(0.65);
  transition: var(--transition);
}

.product-size-option:hover {
  border-color: rgba(199, 121, 42, 0.65);
  background: var(--color-white);
  color: var(--color-caramel-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(143, 72, 24, 0.12);
}

.product-size-option.active {
  border-color: transparent;
  background: linear-gradient(135deg, var(--color-caramel), var(--color-gold));
  color: var(--color-white);
  box-shadow: 0 12px 26px rgba(199, 121, 42, 0.25);
}

.product-size-option.active i {
  opacity: 1;
  transform: scale(1);
}

.product-size-option:focus-visible {
  outline: 3px solid rgba(58, 174, 109, 0.28);
  outline-offset: 3px;
}

.product-quantity-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(143, 72, 24, 0.13);
}

.product-quantity-label {
  color: var(--color-muted);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-quantity-control {
  display: inline-grid;
  grid-template-columns: 38px 44px 38px;
  align-items: center;
  padding: 4px;
  border: 1px solid rgba(143, 72, 24, 0.18);
  border-radius: 999px;
  background: rgba(255, 249, 239, 0.92);
  box-shadow: 0 8px 20px rgba(58, 30, 18, 0.06);
}

.product-quantity-button {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-caramel-dark);
  font-size: 0.78rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 5px 14px rgba(58, 30, 18, 0.08);
}

.product-quantity-button:hover:not(:disabled) {
  background: linear-gradient(135deg, var(--color-caramel), var(--color-gold));
  color: var(--color-white);
  transform: scale(1.05);
}

.product-quantity-button:focus-visible {
  outline: 3px solid rgba(58, 174, 109, 0.28);
  outline-offset: 2px;
}

.product-quantity-button:disabled {
  opacity: 0.36;
  cursor: not-allowed;
  box-shadow: none;
}

.product-quantity-value {
  min-width: 44px;
  color: var(--color-chocolate);
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
}

.product-page-price.is-updating {
  animation: product-price-change 0.35s ease;
}

@keyframes product-price-change {
  0% { opacity: 0.35; transform: translateY(4px); }
  100% { opacity: 1; transform: translateY(0); }
}

.product-page-description {
  border-top: 1px solid rgba(143, 72, 24, 0.18);
  padding-top: 24px;
}

.product-page-description h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: #2f4664;
  margin: 0 0 16px;
}

.product-page-description p {
  color: #2f4664;
  line-height: 1.85;
  margin-bottom: 24px;
}

.product-page-back {
  margin-top: 4px;
}

.product-not-found {
  text-align: center;
  padding: 120px 20px;
}

.product-not-found h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  margin-bottom: 24px;
}

.product-card-link {
  display: block;
  color: inherit;
  height: 100%;
}

.product-card-link:hover {
  color: inherit;
}

.product-card-link .flavor-content > a {
  display: none !important;
}

.product-card-price {
  display: block;
  color: var(--color-caramel-dark);
  font-weight: 900;
  font-size: 1.05rem;
  margin-top: 8px;
}

.product-card-detail-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--color-caramel-dark);
  font-weight: 900;
  margin-top: 10px;
  transition: var(--transition);
}

.product-card-link:hover .product-card-detail-link {
  color: #25d366;
  transform: translateX(4px);
}

.tag-inline {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  background: var(--color-gold);
  color: var(--color-chocolate);
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 0.74rem;
  font-weight: 900;
}

.tag-inline.premium {
  background: var(--color-chocolate);
  color: var(--color-white);
}

.tag-inline.new {
  background: var(--color-red);
  color: var(--color-white);
}

.tag-inline.salty {
  background: #ffead5;
  color: var(--color-caramel-dark);
}

@media (max-width: 991px) {
  .product-detail-layout {
    grid-template-columns: 1fr;
  }

  .product-page-info {
    position: static;
  }

  .product-page-main-image,
  .product-page-main-image img {
    min-height: auto;
    height: 520px;
  }
}

@media (max-width: 767px) {
  .product-detail-page {
    padding-top: 104px;
  }

  .product-detail-layout {
    gap: 22px;
  }

  .product-page-gallery {
    grid-template-columns: 1fr;
  }

  .product-page-thumbs {
    order: 2;
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 4px;
  }

  .product-page-thumb {
    min-width: 82px;
    width: 82px;
    height: 82px;
  }

  .product-page-main-image {
    order: 1;
  }

  .product-page-main-image,
  .product-page-main-image img {
    height: 360px;
  }

  .product-page-info {
    padding: 22px;
  }

  .product-page-header .navbar > .container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
  }

  .product-back-top span {
    display: none;
  }
}

@media (max-width: 420px) {
  .product-page-main-image,
  .product-page-main-image img {
    height: 310px;
  }

  .product-page-info h1 {
    font-size: 1.85rem;
  }

  .product-page-price {
    font-size: 2.25rem;
  }

  .product-size-selector {
    margin-top: 15px;
    padding: 13px;
  }

  .product-size-options {
    gap: 7px;
  }

  .product-size-option {
    min-height: 44px;
    gap: 4px;
    padding: 9px 5px;
    font-size: 0.72rem;
  }

  .product-size-option i {
    width: 16px;
    height: 16px;
    flex-basis: 16px;
    font-size: 0.52rem;
  }

  .product-quantity-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-top: 13px;
    padding-top: 13px;
  }

  .product-quantity-control {
    grid-template-columns: 34px 38px 34px;
  }

  .product-quantity-button {
    width: 34px;
    height: 34px;
  }

  .product-quantity-value {
    min-width: 38px;
    font-size: 1.08rem;
  }
}


/* Boca Nua Gourmet brand/logo update */
.brand-logo {
  gap: 12px;
}

.brand-mouth-logo {
  width: 48px;
  height: 32px;
  min-width: 48px;
  object-fit: contain;
  display: block;
}

.brand-name {
  display: inline-flex !important;
  align-items: baseline;
  gap: 6px;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: 'Cinzel', 'Playfair Display', Georgia, serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #1f2625;
}

.brand-name-main,
.brand-name-accent {
  display: inline-block;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.brand-name-main {
  color: #1f2625;
}

.brand-name-accent {
  color: var(--color-caramel);
}

.brand-logo:hover .brand-name-main {
  color: var(--color-chocolate);
}

.brand-logo:hover .brand-name-accent {
  color: var(--color-caramel-dark);
}

@media (max-width: 575px) {
  .brand-logo {
    gap: 8px;
  }

  .brand-mouth-logo {
    width: 38px;
    height: 26px;
    min-width: 38px;
  }

  .brand-name {
    font-size: 0.86rem;
    gap: 4px;
  }

  .main-header .brand-logo .brand-mouth-logo {
    flex: 0 0 auto;
  }
}

@media (max-width: 380px) {
  .brand-mouth-logo {
    width: 34px;
    height: 23px;
    min-width: 34px;
  }

  .brand-name {
    font-size: 0.72rem;
    gap: 3px;
  }
}


/* Boca Nua Gourmet - original full logo in navbar */
.main-header {
  min-height: 76px;
}

.main-header .navbar {
  min-height: 76px;
}

.brand-logo {
  gap: 0 !important;
  align-items: center;
  min-width: 0;
}

.brand-full-logo {
  display: block;
  width: auto;
  height: 58px;
  max-width: 210px;
  object-fit: contain;
}

.product-page-header .brand-full-logo {
  height: 58px;
  max-width: 210px;
}

@media (max-width: 575px) {
  .main-header {
    min-height: 68px;
  }

  .main-header .navbar {
    min-height: 68px;
  }

  .brand-full-logo,
  .product-page-header .brand-full-logo {
    height: 48px;
    max-width: 158px;
  }

  .main-header .navbar > .container {
    grid-template-columns: minmax(0, 1fr) auto auto;
  }
}

@media (max-width: 380px) {
  .brand-full-logo,
  .product-page-header .brand-full-logo {
    height: 42px;
    max-width: 138px;
  }
}


/* Boca Nua navbar logo - trimmed image + editable text */
.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-logo-image-full {
  height: 58px;
  width: auto;
  max-width: 190px;
  object-fit: contain;
  display: block;
  flex: 0 0 auto;
}

.brand-text-dynamic {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  color: var(--color-chocolate);
  letter-spacing: -0.3px;
  white-space: nowrap;
}

.brand-text-dynamic strong {
  color: var(--color-caramel);
}

.main-header .navbar {
  min-height: 76px;
}

@media (max-width: 767px) {
  .brand-logo {
    gap: 8px;
  }

  .brand-logo-image-full {
    height: 44px;
    max-width: 126px;
  }

  .brand-text-dynamic {
    font-size: 0.88rem;
    max-width: 118px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .main-header .navbar {
    min-height: 66px;
  }
}

@media (max-width: 420px) {
  .brand-logo-image-full {
    height: 40px;
    max-width: 112px;
  }

  .brand-text-dynamic {
    font-size: 0.78rem;
    max-width: 96px;
  }
}

@media (max-width: 360px) {
  .brand-logo-image-full {
    height: 36px;
    max-width: 96px;
  }

  .brand-text-dynamic {
    font-size: 0.72rem;
    max-width: 78px;
  }
}


/* Navbar brand fix - logo maior e texto sem quebra */
.main-header .navbar {
  min-height: 88px !important;
  padding-top: 4px !important;
  padding-bottom: 4px !important;
}

.main-header .navbar > .container,
.product-page-header .navbar > .container {
  min-width: 0;
  align-items: center;
}

.brand-logo,
.product-brand-logo {
  min-width: 0;
  flex: 1 1 auto;
  gap: 10px !important;
  overflow: visible !important;
}

.brand-logo-image-full {
  height: 74px !important;
  max-height: 74px !important;
  max-width: 170px !important;
  width: auto !important;
  object-fit: contain !important;
  flex: 0 0 auto !important;
}

.brand-text-dynamic {
  display: inline-flex !important;
  align-items: baseline;
  gap: 4px;
  white-space: nowrap !important;
  flex-wrap: nowrap !important;
  max-width: none !important;
  overflow: visible !important;
  text-overflow: unset !important;
  line-height: 1 !important;
}

.brand-text-dynamic strong {
  display: inline !important;
  white-space: nowrap !important;
}

@media (max-width: 991px) {
  .main-header .navbar {
    min-height: 78px !important;
  }

  .brand-logo-image-full {
    height: 62px !important;
    max-height: 62px !important;
    max-width: 142px !important;
  }

  .brand-text-dynamic {
    font-size: 1rem !important;
  }
}

@media (max-width: 575px) {
  .main-header {
    padding-top: 2px !important;
    padding-bottom: 2px !important;
  }

  .main-header .navbar {
    min-height: 72px !important;
    padding-top: 2px !important;
    padding-bottom: 2px !important;
  }

  .main-header .navbar > .container,
  .product-page-header .navbar > .container {
    grid-template-columns: minmax(0, 1fr) auto auto !important;
    gap: 5px !important;
    padding-left: 8px !important;
    padding-right: 8px !important;
  }

  .brand-logo,
  .product-brand-logo {
    gap: 6px !important;
    max-width: 100% !important;
  }

  .brand-logo-image-full {
    height: 56px !important;
    max-height: 56px !important;
    max-width: 116px !important;
  }

  .brand-text-dynamic {
    font-size: 0.82rem !important;
    letter-spacing: -0.2px !important;
    max-width: none !important;
  }

  .language-switcher {
    transform: scale(0.94);
    transform-origin: right center;
  }

  .navbar-toggler {
    width: 32px !important;
    min-width: 32px !important;
  }

  .hero-section {
    padding-top: 150px;
  }
}

@media (max-width: 420px) {
  .brand-logo-image-full {
    height: 52px !important;
    max-height: 52px !important;
    max-width: 104px !important;
  }

  .brand-text-dynamic {
    font-size: 0.76rem !important;
    gap: 3px !important;
  }

  .language-switcher {
    transform: scale(0.9);
  }
}

@media (max-width: 360px) {
  .brand-logo-image-full {
    height: 46px !important;
    max-height: 46px !important;
    max-width: 92px !important;
  }

  .brand-text-dynamic {
    font-size: 0.68rem !important;
  }

  .language-switcher {
    transform: scale(0.86);
  }
}
