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

:root {
  --bg-cream: #FAF2EE;
  --text-dark: #0A1128;
  --text-muted: #535970;
  --brand-terracotta: #CE2D2D;
  --brand-terracotta-dark: #A51D1D;
  --brand-terracotta-light: #FDF1ED;
  --brand-sage: #4AA063;
  --brand-sage-dark: #327546;
  --brand-sage-light: #EFF7F2;
  --brand-gold: #FFC300;
  --brand-gold-light: #FFFBF0;
  --brand-blue: #002FA7;
  
  --white: #FFFFFF;
  --border-color: #EFE4DF;
  
  --shadow-xs: 0 2px 8px rgba(10, 17, 40, 0.015);
  --shadow-sm: 0 8px 24px rgba(10, 17, 40, 0.03);
  --shadow-md: 0 16px 40px rgba(10, 17, 40, 0.05);
  --shadow-lg: 0 24px 60px rgba(10, 17, 40, 0.07);
  
  --radius-xs: 8px;
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 32px;
  --radius-full: 9999px;
  
  --font-titles: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease-out;
  
  --navbar-height: 80px;
}

/* Base resets */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-titles);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.25;
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  background: none;
  outline: none;
}

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

svg {
  display: inline-block;
  vertical-align: middle;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-cream);
}
::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--brand-sage);
}

/* Layout Utilities */
.container {
  width: 100%;
  padding-left: 24px;
  padding-right: 24px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 640px) { .container { max-width: 640px; } }
@media (min-width: 768px) { .container { max-width: 768px; } }
@media (min-width: 1024px) { .container { max-width: 1024px; } }
@media (min-width: 1280px) { .container { max-width: 1200px; } }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--brand-terracotta);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background-color: var(--brand-terracotta-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(212, 126, 104, 0.3);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background-color: var(--white);
  color: var(--text-dark);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-xs);
}

.btn-secondary:hover {
  background-color: var(--bg-cream);
  border-color: var(--brand-sage);
  transform: translateY(-2px);
}

.btn-accent {
  background-color: var(--brand-sage-light);
  color: var(--brand-sage-dark);
}

.btn-accent:hover {
  background-color: var(--brand-sage);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: #25D366;
  color: var(--white);
}

.btn-whatsapp:hover {
  background-color: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.25);
}

.btn-icon-only {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: var(--radius-full);
  background-color: var(--white);
  border: 1px solid var(--border-color);
  color: var(--text-dark);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.btn-icon-only:hover {
  background-color: var(--bg-cream);
  border-color: var(--brand-terracotta);
  color: var(--brand-terracotta);
  transform: scale(1.05);
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--navbar-height);
  background-color: rgba(250, 247, 242, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(235, 230, 222, 0.6);
  z-index: 100;
  transition: var(--transition-smooth);
}

.navbar-scrolled {
  box-shadow: var(--shadow-sm);
  background-color: rgba(250, 247, 242, 0.95);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-titles);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--brand-terracotta);
}

.logo-icon {
  background-color: var(--brand-terracotta-light);
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.nav-links {
  display: none;
}

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

.cart-indicator {
  position: relative;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background-color: var(--brand-terracotta);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg-cream);
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
  }
  
  .nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-muted);
    position: relative;
    padding: 8px 0;
  }
  
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--brand-terracotta);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
  }
  
  .nav-link:hover {
    color: var(--text-dark);
  }
  
  .nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }
  
  .nav-link-active {
    color: var(--text-dark);
  }
  
  .nav-link-active::after {
    transform: scaleX(1);
  }
}

/* HERO SECTION */
.hero {
  padding-top: calc(var(--navbar-height) + 24px);
  padding-bottom: 64px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.badge-geo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background-color: var(--brand-sage-light);
  color: var(--brand-sage-dark);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(140, 166, 152, 0.2);
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.hero-title span {
  color: var(--brand-terracotta);
  position: relative;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 12px;
  margin-bottom: 40px;
}

.hero-indicators {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
}

.indicator-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}

.indicator-icon {
  color: var(--brand-sage);
  flex-shrink: 0;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
  width: 100%;
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.hero-image-wrapper:hover img {
  transform: scale(1.03);
}

.floating-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border-color);
}

.floating-badge-icon {
  background-color: var(--brand-gold);
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.floating-badge-text h4 {
  font-size: 0.8rem;
  font-weight: 700;
}

.floating-badge-text p {
  font-size: 0.7rem;
  color: var(--text-muted);
}

@media (min-width: 768px) {
  .hero-ctas {
    flex-direction: row;
    width: auto;
  }
  
  .hero-title {
    font-size: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .hero {
    padding-top: calc(var(--navbar-height) + 48px);
    padding-bottom: 96px;
  }
  
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
  }
  
  .hero-image-wrapper {
    aspect-ratio: 16/11;
  }
}

/* SECTION GLOBAL HEADINGS */
.section {
  padding-top: 64px;
  padding-bottom: 64px;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-tag {
  color: var(--brand-terracotta);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.section-title {
  font-size: 2.2rem;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
}

/* CATEGORIES SECTION */
.categories-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.category-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-xs);
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1 1 calc(50% - 16px);
  max-width: 180px;
  min-width: 140px;
}

.category-card:hover {
  border-color: var(--brand-terracotta);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.category-card-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  background-color: var(--brand-gold-light);
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.category-card:hover .category-card-icon {
  background-color: var(--brand-terracotta-light);
}

.category-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.category-card p {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: none;
}

@media (min-width: 768px) {
  .categories-grid {
    gap: 20px;
  }
  .category-card {
    flex: 1 1 calc(20% - 20px);
    max-width: 200px;
    padding: 28px 16px;
  }
  .category-card h3 {
    font-size: 1rem;
  }
}

/* HOW IT WORKS SECTION */
.how-bg {
  background-color: var(--white);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.how-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.how-step {
  text-align: center;
  padding: 24px;
  position: relative;
}

.how-step-num {
  font-family: var(--font-titles);
  font-weight: 800;
  font-size: 4rem;
  color: var(--brand-terracotta-light);
  line-height: 1;
  margin-bottom: 8px;
}

.how-step h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.how-step p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

@media (min-width: 768px) {
  .how-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}

/* PRODUCTS FEATURED GRID */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.product-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-xs);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
}

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

.product-card-image {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  background-color: var(--brand-gold-light);
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.product-card:hover .product-card-image img {
  transform: scale(1.04);
}

.product-svg-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--brand-terracotta-dark);
}

.product-card-fav {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 5;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

.product-card-fav:hover {
  transform: scale(1.1);
  color: var(--brand-terracotta);
  background-color: var(--white);
}

.product-card-fav.is-fav {
  background-color: var(--brand-terracotta);
  border-color: var(--brand-terracotta);
  color: var(--white);
}

.product-badge-cat {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 5;
  background-color: rgba(42, 41, 38, 0.7);
  backdrop-filter: blur(4px);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-xs);
}

.product-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
}

.product-card-title {
  font-size: 1.25rem;
  font-weight: 600;
}

.product-card-price {
  font-family: var(--font-titles);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--brand-terracotta);
  white-space: nowrap;
}

.product-card-price span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
}

.product-card-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.7rem;
}

.product-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
  border-top: 1px dashed var(--border-color);
  padding-top: 12px;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: var(--text-muted);
  background-color: var(--bg-cream);
  padding: 4px 10px;
  border-radius: var(--radius-xs);
}

.product-card-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: auto;
}

@media (min-width: 640px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* TINY ART STUDIO COMPARATIVE SECTION */
.art-studio-section {
  background-color: var(--white);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.art-studio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.art-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.art-intro h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.art-intro-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4/3;
  margin-top: 24px;
}

.art-packages-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.art-package-card {
  background-color: var(--bg-cream);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
}

.art-package-card-premium {
  border-color: var(--brand-terracotta);
  background-color: var(--brand-gold-light);
  box-shadow: var(--shadow-sm);
}

.art-package-card-premium::before {
  content: 'MÁS POPULAR';
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: var(--brand-terracotta);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-xs);
  letter-spacing: 0.05em;
}

.art-package-header {
  margin-bottom: 24px;
}

.art-package-name {
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.art-package-price {
  font-family: var(--font-titles);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--brand-terracotta);
}

.art-package-price span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}

.art-package-features {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.art-package-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
}

.art-package-feature-item svg {
  color: var(--brand-sage);
  flex-shrink: 0;
  margin-top: 3px;
}

@media (min-width: 1024px) {
  .art-studio-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 64px;
  }
  
  .art-packages-cards {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

/* MINI ICE CLUB CART EXPERIENCE */
.ice-club-box {
  background-color: var(--brand-sage-light);
  border-radius: var(--radius-lg);
  padding: 40px 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  border: 1px solid rgba(140, 166, 152, 0.2);
}

.ice-club-content h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.ice-club-tag {
  color: var(--brand-sage-dark);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.ice-club-desc {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.ice-club-flavors {
  margin-bottom: 32px;
}

.ice-club-flavors h3 {
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--brand-sage-dark);
}

.flavors-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.flavor-pill {
  background-color: var(--white);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 6px;
}

.ice-club-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
}

.ice-club-table td {
  padding: 12px 0;
  border-bottom: 1px dashed rgba(140, 166, 152, 0.3);
  font-size: 0.85rem;
}

.ice-club-table td strong {
  color: var(--text-dark);
}

.ice-club-table td:last-child {
  text-align: right;
  font-weight: 600;
}

.ice-image-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
  width: 100%;
}

@media (min-width: 1024px) {
  .ice-club-box {
    grid-template-columns: 1fr 1fr;
    padding: 64px;
    gap: 64px;
  }
}

/* WHY LITTLE BUDDY SECTION */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.why-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-xs);
  transition: var(--transition-smooth);
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-sage);
}

.why-card-icon {
  background-color: var(--brand-sage-light);
  color: var(--brand-sage-dark);
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.why-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

@media (min-width: 768px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
  }
}

/* GALLERY SECTION */
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1/1;
  background-color: var(--brand-gold-light);
}

.gallery-item-tall {
  aspect-ratio: 3/4;
}

.gallery-item-wide {
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(42, 41, 38, 0.8) 0%, rgba(42, 41, 38, 0) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition-smooth);
  color: var(--white);
}

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

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
}

.gallery-item-overlay p {
  font-size: 0.75rem;
  opacity: 0.8;
}

@media (min-width: 768px) {
  .gallery-masonry {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

/* TESTIMONIALS SECTION */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.review-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition-smooth);
}

.review-card:hover {
  box-shadow: var(--shadow-md);
}

.review-stars {
  color: #FFB800;
  display: flex;
  gap: 4px;
}

.review-comment {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
}

.review-author-avatar {
  background-color: var(--brand-terracotta-light);
  color: var(--brand-terracotta-dark);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.review-author-info h4 {
  font-size: 0.9rem;
  font-weight: 600;
}

.review-author-info p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

/* FAQ SECTION */
.faq-bg {
  background-color: var(--white);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.faq-list {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: var(--bg-cream);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-header {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
  background: none;
}

.faq-question {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.faq-icon {
  color: var(--brand-terracotta);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-content {
  padding: 0 24px 20px 24px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.faq-item.is-open {
  border-color: var(--brand-sage);
  background-color: var(--white);
}

.faq-item.is-open .faq-icon {
  transform: rotate(180deg);
}

.faq-item.is-open .faq-body {
  max-height: 200px;
}

/* FINAL CTA */
.final-cta {
  padding-top: 80px;
  padding-bottom: 80px;
}

.final-cta-box {
  background-color: var(--brand-terracotta);
  border-radius: var(--radius-lg);
  padding: 64px 24px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.final-cta-box h2 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.final-cta-box p {
  opacity: 0.9;
  font-size: 1.05rem;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta-box .btn {
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.final-cta-box::after {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 200px;
  height: 200px;
  background-color: rgba(255,255,255,0.03);
  border-radius: var(--radius-full);
}

/* FOOTER */
.footer {
  background-color: var(--text-dark);
  color: var(--bg-cream);
  padding-top: 64px;
  padding-bottom: 40px;
}

.footer h3, .footer h4 {
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  color: var(--white);
  font-family: var(--font-titles);
  font-weight: 700;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-logo-icon {
  background-color: var(--brand-terracotta);
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.footer-info p {
  font-size: 0.85rem;
  opacity: 0.7;
}

.footer-links h4 {
  font-size: 1rem;
  margin-bottom: 16px;
  position: relative;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-list a {
  font-size: 0.85rem;
  opacity: 0.7;
}

.footer-links-list a:hover {
  opacity: 1;
  color: var(--brand-terracotta);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  font-size: 0.8rem;
  opacity: 0.6;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 64px;
  }
  
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* CATALOG PAGE LAYOUT */
.catalog-section {
  padding-top: calc(var(--navbar-height) + 32px);
  padding-bottom: 80px;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

/* CATALOG FILTERS */
.catalog-filters {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: fit-content;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.filter-group h4 {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 8px;
}

.filter-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Custom Checkbox/Radio */
.filter-checkbox, .filter-radio {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  cursor: pointer;
  user-select: none;
}

.filter-checkbox input, .filter-radio input {
  display: none;
}

.checkbox-box {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-cream);
  transition: var(--transition-fast);
}

.filter-checkbox input:checked + .checkbox-box {
  background-color: var(--brand-sage);
  border-color: var(--brand-sage);
  color: var(--white);
}

.radio-circle {
  width: 20px;
  height: 20px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-cream);
  transition: var(--transition-fast);
}

.filter-radio input:checked + .radio-circle {
  background-color: var(--brand-terracotta);
  border-color: var(--brand-terracotta);
}

.filter-radio input:checked + .radio-circle::after {
  content: '';
  width: 8px;
  height: 8px;
  background-color: var(--white);
  border-radius: var(--radius-full);
}

.filter-checkbox:hover .checkbox-box, .filter-radio:hover .radio-circle {
  border-color: var(--brand-terracotta);
}

.filter-checkbox input:checked + .checkbox-box svg {
  display: block;
}

.filter-checkbox .checkbox-box svg {
  display: none;
  font-size: 0.7rem;
}

.search-wrapper {
  position: relative;
  width: 100%;
}

.search-input {
  width: 100%;
  background-color: var(--bg-cream);
  border: 1px solid var(--border-color);
  padding: 12px 16px 12px 40px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.search-input:focus {
  background-color: var(--white);
  border-color: var(--brand-terracotta);
  box-shadow: 0 0 0 4px var(--brand-terracotta-light);
}

.search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

@media (min-width: 1024px) {
  .catalog-layout {
    grid-template-columns: 280px 1fr;
    align-items: start;
  }
}

/* CATALOG CONTENT */
.catalog-content-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.catalog-stats {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.catalog-active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.active-filter-pill {
  background-color: var(--brand-terracotta-light);
  color: var(--brand-terracotta-dark);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: var(--radius-xs);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.active-filter-pill:hover {
  background-color: var(--brand-terracotta);
  color: var(--white);
}

/* SIDEBAR / CART FLOATING */
.sidebar-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(42, 41, 38, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.sidebar-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.quote-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 460px;
  height: 100%;
  background-color: var(--white);
  box-shadow: var(--shadow-lg);
  z-index: 160;
  transform: translateX(100%);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.quote-sidebar.is-open {
  transform: translateX(0);
}

.sidebar-header {
  padding: 24px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sidebar-header h2 {
  font-size: 1.35rem;
}

.sidebar-close {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid var(--border-color);
  transition: var(--transition-fast);
}

.sidebar-close:hover {
  background-color: var(--bg-cream);
  color: var(--brand-terracotta);
  border-color: var(--brand-terracotta);
}

.sidebar-body {
  padding: 24px;
  overflow-y: auto;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-section-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.quote-items-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quote-item-card {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 12px;
  align-items: center;
  background-color: var(--bg-cream);
  padding: 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
}

.quote-item-img {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-xs);
  overflow: hidden;
  background-color: var(--brand-gold-light);
}

.quote-item-details h4 {
  font-size: 0.9rem;
  font-weight: 600;
}

.quote-item-details p {
  font-size: 0.8rem;
  color: var(--brand-terracotta);
  font-weight: 600;
}

.quote-item-quantity {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: var(--white);
  border: 1px solid var(--border-color);
  padding: 4px 8px;
  border-radius: var(--radius-full);
}

.qty-btn {
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.qty-btn:hover {
  color: var(--brand-terracotta);
}

.qty-val {
  font-size: 0.8rem;
  font-weight: 600;
  width: 14px;
  text-align: center;
}

.quote-item-delete {
  cursor: pointer;
  color: var(--text-muted);
  transition: var(--transition-fast);
  margin-left: 8px;
}

.quote-item-delete:hover {
  color: #E53935;
}

.quote-empty {
  text-align: center;
  padding: 48px 0;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.quote-empty-icon {
  font-size: 3rem;
  opacity: 0.5;
}

/* SIDEBAR FORM */
.quote-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input, .form-group textarea {
  width: 100%;
  background-color: var(--bg-cream);
  border: 1px solid var(--border-color);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  transition: var(--transition-smooth);
}

.form-group input:focus, .form-group textarea:focus {
  background-color: var(--white);
  border-color: var(--brand-sage);
}

.sidebar-footer {
  padding: 24px;
  border-top: 1px solid var(--border-color);
  background-color: var(--bg-cream);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quote-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
}

.quote-summary-total {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
}

.quote-summary-total span {
  color: var(--brand-terracotta);
}

/* PRODUCT DETAIL DRAWERS / MODAL */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(42, 41, 38, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.product-detail-modal {
  background-color: var(--white);
  width: 100%;
  height: 100%;
  max-width: 900px;
  max-height: 100%;
  overflow-y: auto;
  z-index: 210;
  transform: translateY(100%);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.modal-backdrop.is-open .product-detail-modal {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .product-detail-modal {
    border-radius: var(--radius-lg);
    height: 90vh;
    max-height: 750px;
    transform: scale(0.9) translateY(40px);
  }
  
  .modal-backdrop.is-open .product-detail-modal {
    transform: scale(1) translateY(0);
  }
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  background-color: rgba(255,255,255,0.9);
  backdrop-filter: blur(4px);
}

.modal-body {
  display: grid;
  grid-template-columns: 1fr;
}

.modal-gallery {
  aspect-ratio: 4/3;
  background-color: var(--brand-gold-light);
  position: relative;
}

.modal-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-info-panel {
  padding: 32px 24px;
}

.modal-product-cat {
  color: var(--brand-sage-dark);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.modal-product-name {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.modal-product-price {
  font-family: var(--font-titles);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--brand-terracotta);
  margin-bottom: 20px;
}

.modal-product-price span {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

.modal-product-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.modal-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 28px;
  background-color: var(--bg-cream);
  padding: 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
}

.spec-item h5 {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
}

.spec-item p {
  font-size: 0.85rem;
  font-weight: 600;
}

.modal-includes {
  margin-bottom: 28px;
}

.modal-includes h4 {
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.includes-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

@media (min-width: 640px) {
  .includes-list {
    grid-template-columns: 1fr 1fr;
  }
}

.includes-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
}

.includes-item svg {
  color: var(--brand-sage);
  flex-shrink: 0;
}

.modal-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 32px;
}

@media (min-width: 640px) {
  .modal-actions {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

@media (min-width: 768px) {
  .modal-body {
    grid-template-columns: 1fr 1fr;
  }
  
  .modal-gallery {
    aspect-ratio: auto;
    height: 100%;
  }
  
  .modal-info-panel {
    padding: 48px;
    height: 100%;
    overflow-y: auto;
  }
}

/* TABS / SWITCH VIEW */
.view-panel {
  display: none;
}

.view-panel.is-active {
  display: block;
}

/* ANIMATIONS & TRANSITIONS */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.bounce-hover:hover {
  animation: bounce 0.5s ease infinite alternate;
}

@keyframes bounce {
  0% { transform: translateY(0); }
  100% { transform: translateY(-4px); }
}

.loading-skeleton {
  background: linear-gradient(90deg, var(--border-color) 25%, var(--bg-cream) 50%, var(--border-color) 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

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

/* EXTRA PREMIUM ILLUSTRATIONS STYLING */
.organic-decoration {
  position: absolute;
  pointer-events: none;
  opacity: 0.4;
  z-index: 1;
}

.decor-1 { top: 10%; left: -2%; width: 120px; }
.decor-2 { bottom: 5%; right: -2%; width: 150px; }
