/* ==========================================================================
   BERLES LUXURY HOSPITALITY - MAIN APPLICATION STYLES
   ========================================================================== */

/* Typography & Root Font Weights */
.berles-app-root {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.berles-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all 0.3s ease;
  background-color: transparent;
  padding: 1.25rem 0;
}

.berles-header.is-scrolled {
  background-color: var(--header-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-color);
  padding: 0.85rem 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .header-inner {
    gap: 1.5rem;
  }
}

.header-brand {
  display: flex;
  align-items: center;
  flex-shrink: 1;
  min-width: 0;
}

.header-logo-img {
  height: 38px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

@media (min-width: 768px) {
  .header-logo-img {
    height: 52px;
    max-width: none;
  }
}

.header-brand:hover .header-logo-img {
  transform: scale(1.02);
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .desktop-nav {
    display: flex;
  }
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-primary);
  position: relative;
  padding: 0.25rem 0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-emerald);
  transition: width 0.3s ease;
}

body.theme-dark .nav-link::after {
  background-color: var(--color-gold);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link-badge {
  font-size: 0.65rem;
  background-color: var(--color-emerald);
  color: #ffffff;
  padding: 0.15rem 0.45rem;
  border-radius: 9999px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

body.theme-dark .nav-link-badge {
  background-color: var(--color-gold);
  color: #141213;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .header-actions {
    gap: 0.75rem;
  }
}

/* Theme Switcher Button */
.theme-switcher-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  transition: all 0.25s ease;
}

.theme-switcher-btn:hover {
  transform: translateY(-2px);
  border-color: var(--color-gold);
}

.icon-sun {
  color: #f59e0b;
}

.icon-moon {
  color: var(--color-emerald);
}

/* Language Switcher */
.lang-switcher-wrap {
  position: relative;
}

.lang-trigger-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.8rem;
  border-radius: 8px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.25s ease;
}

.lang-trigger-btn:hover {
  border-color: var(--color-gold);
}

.chevron-icon {
  transition: transform 0.2s ease;
}

.chevron-icon.open {
  transform: rotate(180deg);
}

.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  inset-inline-end: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  min-width: 140px;
  padding: 0.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  z-index: 110;
}

.lang-option-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.6rem 0.8rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-primary);
  text-align: inherit;
  transition: background 0.2s ease;
}

.lang-option-btn:hover,
.lang-option-btn.is-active {
  background: var(--bg-surface);
  color: var(--color-emerald);
}

body.theme-dark .lang-option-btn.is-active {
  color: var(--color-gold);
}

.lang-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-emerald);
}

body.theme-dark .lang-dot {
  background: var(--color-gold);
}

/* Quick Download Catalog Button */
.btn-download-catalog {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.25s ease;
}

.btn-download-catalog:hover {
  background: var(--color-emerald);
  color: #ffffff;
  border-color: var(--color-emerald);
}

@media (max-width: 1023px) {
  .btn-download-catalog.hide-on-mobile {
    display: none !important;
  }
}

/* Request Sample Kit Button */
.btn-request-sample {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  border-radius: 8px;
  background: var(--color-emerald);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(70, 103, 86, 0.35);
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .btn-request-sample {
    display: inline-flex;
  }
}

.btn-request-sample:hover {
  background: var(--color-emerald-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(70, 103, 86, 0.45);
}

body.theme-dark .btn-request-sample {
  background: var(--color-gold);
  color: #141213;
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.3);
}

body.theme-dark .btn-request-sample:hover {
  background: var(--color-gold-light);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.45);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  min-width: 42px;
  min-height: 42px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.25s ease;
  z-index: 105;
}

.mobile-menu-toggle-btn:hover,
.mobile-menu-toggle-btn.is-active {
  background: var(--color-emerald);
  color: #ffffff;
  border-color: var(--color-emerald);
  box-shadow: 0 4px 14px rgba(70, 103, 86, 0.35);
}

body.theme-dark .mobile-menu-toggle-btn:hover,
body.theme-dark .mobile-menu-toggle-btn.is-active {
  background: var(--color-gold);
  color: #141213;
  border-color: var(--color-gold);
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.35);
}

@media (min-width: 1024px) {
  .mobile-menu-toggle-btn {
    display: none !important;
  }
}

/* Mobile Nav Backdrop */
.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 999;
  animation: fadeIn 0.25s ease;
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  bottom: 0;
  inset-inline-end: 0;
  width: 85%;
  max-width: 340px;
  background: var(--bg-card);
  border-inline-start: 1px solid var(--border-color);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.35);
  z-index: 1000;
  overflow-y: auto;
  animation: slideInDrawer 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

body[dir="rtl"] .mobile-nav-drawer {
  box-shadow: 10px 0 30px rgba(0, 0, 0, 0.35);
  animation-name: slideInDrawerRtl;
}

@keyframes slideInDrawer {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInDrawerRtl {
  from {
    opacity: 0;
    transform: translateX(-100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-color-subtle);
}

.mobile-drawer-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.mobile-drawer-close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.2s ease;
}

.mobile-drawer-close:hover {
  background: var(--color-terracotta);
  color: #ffffff;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-item {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-color-subtle);
}

.mobile-nav-footer {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-catalog-btn,
.mobile-sample-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
}

.mobile-catalog-btn {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
}

.mobile-sample-btn {
  background: var(--color-emerald);
  color: #ffffff;
}

body.theme-dark .mobile-sample-btn {
  background: var(--color-gold);
  color: #141213;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.berles-hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 6rem;
  padding-bottom: 5rem;
  overflow: hidden;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.2s ease-in-out, transform 8s ease-out;
}

.hero-slide-bg.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(18, 20, 19, 0.45) 0%,
    rgba(18, 20, 19, 0.75) 60%,
    rgba(18, 20, 19, 0.92) 100%
  );
}

.hero-content-container {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
  max-width: 960px;
}

.hero-text-content {
  color: #ffffff;
  margin-bottom: 2.5rem;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  border-radius: 9999px;
  background: rgba(212, 175, 55, 0.18);
  border: 1px solid rgba(212, 175, 55, 0.45);
  backdrop-filter: blur(8px);
  color: var(--color-gold-light);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-main-title {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

@media (min-width: 768px) {
  .hero-main-title {
    font-size: 4rem;
  }
}

body[dir="rtl"] .hero-main-title {
  font-family: 'Amiri', 'Cairo', serif;
}

.hero-subtitle-description {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  max-width: 780px;
  margin-bottom: 2.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-actions-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 2rem;
  border-radius: 8px;
  background: var(--color-emerald);
  color: #ffffff;
  font-weight: 600;
  font-size: 1.05rem;
  box-shadow: 0 6px 20px rgba(70, 103, 86, 0.5);
  transition: all 0.3s ease;
}

.btn-hero-primary:hover {
  background: #365243;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(70, 103, 86, 0.65);
}

body.theme-dark .btn-hero-primary {
  background: var(--color-gold);
  color: #141213;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

body.theme-dark .btn-hero-primary:hover {
  background: var(--color-gold-light);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.75rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: #ffffff;
  transform: translateY(-2px);
}

/* Controls Bar */
.hero-controls-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-arrow-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  backdrop-filter: blur(8px);
  transition: all 0.25s ease;
}

.hero-arrow-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

.hero-indicators {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transition: all 0.3s ease;
}

.hero-dot.is-active {
  width: 30px;
  border-radius: 9999px;
  background: var(--color-gold);
}

/* Metrics Bar */
.hero-metrics-bar {
  position: relative;
  z-index: 10;
  margin-top: auto;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .metrics-grid {
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
  }
}

.metric-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.metric-number {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
}

.metric-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.metric-divider {
  display: none;
}

/* ==========================================================================
   SECTION COMMON BLOCKS
   ========================================================================== */
.section-header-block {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 3.5rem auto;
}

.section-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  border-radius: 9999px;
  background: rgba(70, 103, 86, 0.12);
  border: 1px solid var(--border-color);
  color: var(--color-emerald);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

body.theme-dark .section-badge-pill {
  background: rgba(212, 175, 55, 0.12);
  color: var(--color-gold);
}

.section-title {
  font-size: 2.4rem;
  line-height: 1.25;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3.2rem;
  }
}

.section-subtitle {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ==========================================================================
   PRODUCT CATALOG
   ========================================================================== */
.berles-products-section {
  padding: 6rem 0;
  background-color: var(--bg-surface);
}

.category-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3.5rem;
}

.cat-tab-btn {
  padding: 0.65rem 1.25rem;
  border-radius: 9999px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.25s ease;
}

.cat-tab-btn:hover {
  border-color: var(--color-emerald);
  color: var(--color-emerald);
}

.cat-tab-btn.is-active {
  background: var(--color-emerald);
  color: #ffffff;
  border-color: var(--color-emerald);
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(70, 103, 86, 0.25);
}

body.theme-dark .cat-tab-btn.is-active {
  background: var(--color-gold);
  color: #141213;
  border-color: var(--color-gold);
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

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

.product-card {
  background: var(--bg-card);
  border-radius: 16px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: var(--shadow-subtle);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-premium);
  border-color: var(--color-gold);
}

.product-image-frame {
  position: relative;
  height: 280px;
  background: #f0ede6;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.theme-dark .product-image-frame {
  background: #191b1a;
}

.product-card-img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
  transition: transform 0.5s ease;
}

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

.product-eco-badge {
  position: absolute;
  top: 1rem;
  inset-inline-end: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  border-radius: 9999px;
  color: var(--color-emerald);
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

body.theme-dark .product-eco-badge {
  background: rgba(25, 28, 27, 0.85);
  color: var(--color-gold);
}

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

.product-card-title {
  font-size: 1.35rem;
  line-height: 1.35;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.product-card-tagline {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  min-height: 44px;
}

.product-specs-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1rem;
  background: var(--bg-surface);
  border-radius: 10px;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.spec-label {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--text-muted);
  font-weight: 500;
  flex-shrink: 0;
}

.spec-value {
  color: var(--text-primary);
  font-weight: 600;
  text-align: end;
}

.spec-value.highlight {
  color: var(--color-emerald);
}

body.theme-dark .spec-value.highlight {
  color: var(--color-gold);
}

.spec-value.moq-text {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.product-card-footer {
  margin-top: auto;
}

.btn-card-sample {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.25s ease;
}

.btn-card-sample:hover {
  background: var(--color-emerald);
  color: #ffffff;
  border-color: var(--color-emerald);
}

body.theme-dark .btn-card-sample:hover {
  background: var(--color-gold);
  color: #141213;
  border-color: var(--color-gold);
}

/* ==========================================================================
   CUSTOMIZER / PRIVATE LABEL STUDIO
   ========================================================================== */
.berles-customizer-section {
  padding: 6rem 0;
  background-color: var(--bg-primary);
}

.custom-steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 4.5rem;
}

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

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

.step-card {
  background: var(--bg-card);
  padding: 2rem 1.5rem;
  border-radius: 14px;
  border: 1px solid var(--border-color);
  position: relative;
  transition: transform 0.3s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-gold);
}

.step-number {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
  display: block;
  margin-bottom: 0.8rem;
}

.step-title {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
  color: var(--text-primary);
}

.step-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Interactive Studio Box */
.interactive-studio-wrapper {
  background: var(--bg-card);
  border-radius: 20px;
  border: 1px solid var(--border-color);
  padding: 2.5rem;
  box-shadow: var(--shadow-premium);
}

@media (min-width: 1024px) {
  .interactive-studio-wrapper {
    padding: 3.5rem;
  }
}

.studio-heading-inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem auto;
}

.studio-title {
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.studio-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
}

.studio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .studio-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.studio-controls-col {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.studio-field-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.studio-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}

.studio-input {
  width: 100%;
  padding: 0.85rem 1.25rem;
  border-radius: 10px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: all 0.25s ease;
}

.studio-input:focus {
  border-color: var(--color-emerald);
  box-shadow: 0 0 0 3px rgba(70, 103, 86, 0.15);
}

body.theme-dark .studio-input:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.style-options-list,
.foil-options-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
}

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

.style-pick-btn,
.foil-pick-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.25s ease;
  text-align: inherit;
}

.style-pick-btn:hover,
.foil-pick-btn:hover {
  border-color: var(--color-gold);
}

.style-pick-btn.is-selected,
.foil-pick-btn.is-selected {
  background: var(--bg-accent);
  border-color: var(--color-emerald);
  font-weight: 600;
}

body.theme-dark .style-pick-btn.is-selected,
body.theme-dark .foil-pick-btn.is-selected {
  border-color: var(--color-gold);
}

.color-swatch {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
}

.swatch-emerald { background: #466756; }
.swatch-amber { background: #8b5a2b; }
.swatch-onyx { background: #1a1a1a; }
.swatch-alabaster { background: #ede8de; border: 1px solid #ccc; }

.swatch-check,
.foil-check {
  margin-inline-start: auto;
  color: var(--color-emerald);
}

body.theme-dark .swatch-check,
body.theme-dark .foil-check {
  color: var(--color-gold);
}

.studio-moq-box {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--bg-surface);
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.moq-box-inner {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.moq-icon {
  color: var(--color-emerald);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

body.theme-dark .moq-icon {
  color: var(--color-gold);
}

.btn-order-mockup {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 8px;
  background: var(--color-emerald);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.btn-order-mockup:hover {
  background: var(--color-emerald-dark);
  transform: translateY(-2px);
}

body.theme-dark .btn-order-mockup {
  background: var(--color-gold);
  color: #141213;
}

/* 3D Bottle Stage Preview */
.studio-preview-col {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.bottle-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 380px;
}

.bottle-assembly {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 220px;
}

.bottle-pump {
  position: relative;
  width: 50px;
  height: 55px;
  border-radius: 6px 6px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 5;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.pump-nozzle {
  width: 32px;
  height: 12px;
  border-bottom: 3px solid;
  border-radius: 4px;
}

.pump-neck {
  width: 36px;
  height: 8px;
  margin-top: auto;
  border-radius: 2px;
}

.bottle-body {
  position: relative;
  width: 200px;
  height: 380px;
  border-radius: 36px 36px 20px 20px;
  border: 1.5px solid;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25), inset 0 0 25px rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.4s ease;
}

.bottle-highlight-sheen {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 25px;
  width: 14px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.bottle-label {
  width: 160px;
  padding: 1.5rem 1rem;
  border-radius: 8px;
  border: 1px solid;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  transition: all 0.3s ease;
}

.label-berles-logo {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1;
}

.label-sub-crest {
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  opacity: 0.75;
  margin-top: 0.2rem;
}

.label-divider-line {
  width: 40px;
  height: 1px;
  margin: 0.2rem auto;
}

.label-hotel-branding {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.hotel-crafted-for {
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  opacity: 0.8;
}

.hotel-custom-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.2;
  word-break: break-word;
}

.label-specs-subtext {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-top: 0.3rem;
}

.spec-title {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.spec-notes {
  font-size: 0.5rem;
  opacity: 0.8;
}

.spec-volume {
  font-size: 0.55rem;
  opacity: 0.7;
  margin-top: 0.2rem;
}

.bottle-ground-shadow {
  width: 160px;
  height: 16px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 70%);
  margin-top: 10px;
}

/* ==========================================================================
   SUSTAINABILITY & WHY US SECTION
   ========================================================================== */
.berles-sustainability-section {
  padding: 6rem 0;
  background-color: var(--bg-surface);
}

.sustainability-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

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

@media (min-width: 1200px) {
  .sustainability-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.sustainability-card {
  background: var(--bg-card);
  padding: 2.2rem 1.8rem;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.sustainability-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-emerald);
}

body.theme-dark .sustainability-card:hover {
  border-color: var(--color-gold);
}

.card-icon-bubble {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: rgba(70, 103, 86, 0.12);
  color: var(--color-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

body.theme-dark .card-icon-bubble {
  background: rgba(212, 175, 55, 0.12);
  color: var(--color-gold);
}

.card-title {
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.card-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Certifications Banner */
.certifications-banner {
  background: var(--bg-card);
  border-radius: 16px;
  border: 1px solid var(--border-color);
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .certifications-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
  }
}

.cert-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.cert-seal {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px dashed var(--color-emerald);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-emerald);
  font-size: 0.55rem;
  font-weight: 700;
  flex-shrink: 0;
}

body.theme-dark .cert-seal {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.cert-text strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.cert-text p {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.cert-divider {
  width: 1px;
  height: 40px;
  background: var(--border-color);
  display: none;
}

@media (min-width: 768px) {
  .cert-divider {
    display: block;
  }
}

/* Sustainability CTA Card */
.sustainability-cta-card {
  background: linear-gradient(135deg, var(--color-emerald) 0%, #293f34 100%);
  color: #ffffff;
  border-radius: 20px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .sustainability-cta-card {
    flex-direction: row;
    align-items: center;
    padding: 3.5rem;
  }
}

body.theme-dark .sustainability-cta-card {
  background: linear-gradient(135deg, #242926 0%, #151817 100%);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.cta-card-badge {
  font-size: 0.85rem;
  color: var(--color-gold-light);
  font-weight: 600;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 0.5rem;
}

.cta-card-title {
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.cta-card-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
}

.btn-cta-sample {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 2rem;
  border-radius: 8px;
  background: var(--color-gold);
  color: #141213;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.btn-cta-sample:hover {
  background: var(--color-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.berles-footer-section {
  background-color: #141213;
  color: #ede8de;
  padding-top: 5rem;
  padding-bottom: 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.25);
}

.footer-main-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .footer-main-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
}

.footer-about-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #b8b3a9;
  max-width: 420px;
}

.footer-cert-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cert-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.65rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.75rem;
  color: var(--color-gold-light);
}

.footer-col-title {
  font-size: 1.2rem;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  font-size: 0.95rem;
}

.footer-nav-list a {
  color: #b8b3a9;
  transition: color 0.2s ease;
}

.footer-nav-list a:hover {
  color: var(--color-gold);
}

.footer-sample-link {
  color: var(--color-gold-light);
  font-size: inherit;
  font-weight: 600;
  text-align: inherit;
  transition: opacity 0.2s ease;
}

.footer-sample-link:hover {
  opacity: 0.85;
}

.footer-catalog-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-gold);
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.95rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #b8b3a9;
}

.contact-icon {
  color: var(--color-gold);
  flex-shrink: 0;
}

.contact-icon.text-emerald {
  color: #22c55e;
}

.whatsapp-highlight-link {
  color: #4ade80;
  font-weight: 600;
}

.whatsapp-highlight-link:hover {
  text-decoration: underline;
}

.footer-bottom-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: #8c867b;
}

@media (min-width: 640px) {
  .footer-bottom-bar {
    flex-direction: row;
  }
}

.btn-scroll-top {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #ede8de;
  font-size: 0.85rem;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  transition: all 0.2s ease;
}

.btn-scroll-top:hover {
  background: rgba(255, 255, 255, 0.18);
  color: var(--color-gold);
}

/* ==========================================================================
   SAMPLE KIT MODAL
   ========================================================================== */
.modal-backdrop-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  overflow-y: auto;
}

.modal-dialog-box {
  background: var(--bg-card);
  border-radius: 20px;
  border: 1px solid var(--border-color);
  width: 100%;
  max-width: 680px;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem;
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  inset-inline-end: 1.25rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  transition: all 0.2s ease;
}

.modal-close-btn:hover {
  transform: rotate(90deg);
  background: var(--color-terracotta);
  color: #ffffff;
}

.modal-header-block {
  text-align: center;
  margin-bottom: 2rem;
}

.modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: rgba(70, 103, 86, 0.12);
  color: var(--color-emerald);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

body.theme-dark .modal-badge {
  background: rgba(212, 175, 55, 0.12);
  color: var(--color-gold);
}

.modal-title {
  font-size: 1.8rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.modal-subtitle {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.target-product-pill {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--color-emerald);
}

body.theme-dark .target-product-pill {
  color: var(--color-gold);
}

.modal-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--color-emerald);
}

body.theme-dark .form-input:focus,
body.theme-dark .form-textarea:focus {
  border-color: var(--color-gold);
}

.room-slider-group {
  padding: 1.25rem;
  background: var(--bg-surface);
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.slider-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.room-count-badge {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-emerald);
}

body.theme-dark .room-count-badge {
  color: var(--color-gold);
}

.room-slider {
  width: 100%;
  accent-color: var(--color-emerald);
  cursor: pointer;
}

body.theme-dark .room-slider {
  accent-color: var(--color-gold);
}

.slider-estimate-hint {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 0.5rem;
}

.checkboxes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
  margin-top: 0.4rem;
}

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

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  cursor: pointer;
}

.btn-submit-sample {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem;
  border-radius: 8px;
  background: var(--color-emerald);
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(70, 103, 86, 0.35);
  transition: all 0.3s ease;
}

.btn-submit-sample:hover {
  background: var(--color-emerald-dark);
  transform: translateY(-2px);
}

body.theme-dark .btn-submit-sample {
  background: var(--color-gold);
  color: #141213;
}

/* Success Screen */
.modal-success-screen {
  text-align: center;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.success-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(70, 103, 86, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-emerald);
}

body.theme-dark .success-icon-wrap {
  background: rgba(212, 175, 55, 0.15);
  color: var(--color-gold);
}

.success-title {
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--text-primary);
}

.success-sub {
  font-size: 1rem;
  color: var(--text-secondary);
}

.success-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  max-width: 360px;
}

.btn-whatsapp-direct {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem;
  border-radius: 8px;
  background: #22c55e;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s ease;
}

.btn-whatsapp-direct:hover {
  background: #16a34a;
}

.btn-modal-done {
  padding: 0.75rem;
  border-radius: 8px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  font-weight: 600;
}

/* ==========================================================================
   ADVANCED MOBILE VIEWPORT OPTIMIZATIONS (< 768px)
   ========================================================================== */
@media (max-width: 767px) {
  /* Container side padding */
  .berles-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  /* Header & Controls */
  .berles-header {
    padding: 0.65rem 0;
  }

  .header-inner {
    gap: 0.35rem;
  }

  .header-logo-img {
    height: 32px;
    max-width: 110px;
  }

  .header-actions {
    gap: 0.3rem;
  }

  .theme-switcher-btn {
    width: 36px;
    height: 36px;
  }

  .theme-switcher-btn svg {
    width: 16px;
    height: 16px;
  }

  .lang-trigger-btn {
    padding: 0.3rem 0.5rem;
    font-size: 0.75rem;
    height: 36px;
    gap: 0.2rem;
    border-radius: 8px;
  }

  .lang-trigger-btn .icon-globe {
    width: 13px;
    height: 13px;
  }

  .lang-trigger-btn .chevron-icon {
    width: 11px;
    height: 11px;
  }

  .mobile-menu-toggle-btn {
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
    border-radius: 8px;
  }

  .mobile-menu-toggle-btn svg {
    width: 19px;
    height: 19px;
  }

  /* Hero Section */
  .berles-hero-section {
    min-height: 90vh;
    padding-top: 4.8rem;
    padding-bottom: 2rem;
  }

  .hero-content-container {
    margin-bottom: 1.5rem;
  }

  .hero-text-content {
    margin-bottom: 1.5rem;
  }

  .hero-badge-pill {
    font-size: 0.72rem;
    padding: 0.3rem 0.75rem;
    margin-bottom: 1rem;
    max-width: 100%;
    white-space: normal;
    text-align: center;
    line-height: 1.4;
  }

  .hero-main-title {
    font-size: 1.85rem !important;
    line-height: 1.25 !important;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
  }

  body[dir="rtl"] .hero-main-title {
    font-size: 1.95rem !important;
    line-height: 1.35 !important;
  }

  .hero-subtitle-description {
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 1.75rem;
  }

  .hero-actions-group {
    flex-direction: column;
    width: 100%;
    gap: 0.65rem;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1.25rem;
    font-size: 0.95rem;
  }

  .hero-controls-bar {
    margin-top: 1rem;
    justify-content: center;
  }

  .hero-arrow-btn {
    width: 38px;
    height: 38px;
  }

  /* Metrics Grid on Mobile */
  .hero-metrics-bar {
    padding-top: 1.5rem;
    margin-top: 1rem;
  }

  .metrics-grid {
    gap: 0.75rem;
  }

  .metric-number {
    font-size: 1.5rem;
  }

  .metric-label {
    font-size: 0.72rem;
  }

  /* Common Section Headers */
  .section-header-block {
    margin-bottom: 2rem;
    padding: 0 0.25rem;
  }

  .section-badge-pill {
    font-size: 0.75rem;
    padding: 0.3rem 0.75rem;
    margin-bottom: 0.75rem;
  }

  .section-title {
    font-size: 1.75rem !important;
    line-height: 1.3 !important;
    margin-bottom: 0.75rem;
  }

  .section-subtitle {
    font-size: 0.92rem;
    line-height: 1.6;
  }

  /* Product Catalog */
  .berles-products-section {
    padding: 3.5rem 0;
  }

  .category-filter-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 0.25rem 0.5rem 0.75rem 0.5rem;
    margin-bottom: 2rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0.5rem;
  }

  .category-filter-tabs::-webkit-scrollbar {
    display: none;
  }

  .cat-tab-btn {
    padding: 0.5rem 0.9rem;
    font-size: 0.8rem;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .products-grid {
    gap: 1.25rem;
  }

  .product-image-frame {
    height: 220px;
  }

  .product-card-body {
    padding: 1.25rem;
  }

  .product-card-title {
    font-size: 1.15rem;
  }

  .product-card-tagline {
    font-size: 0.85rem;
    min-height: auto;
    margin-bottom: 1rem;
  }

  .product-specs-list {
    padding: 0.75rem;
    font-size: 0.8rem;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
  }

  /* Customizer Studio */
  .berles-customizer-section {
    padding: 3.5rem 0;
  }

  .custom-steps-grid {
    gap: 1rem;
    margin-bottom: 2.5rem;
  }

  .step-card {
    padding: 1.25rem 1rem;
  }

  .step-number {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
  }

  .step-title {
    font-size: 1.05rem;
  }

  .step-desc {
    font-size: 0.85rem;
  }

  .interactive-studio-wrapper {
    padding: 1.25rem 1rem;
    border-radius: 14px;
  }

  .studio-heading-inner {
    margin-bottom: 1.75rem;
  }

  .studio-title {
    font-size: 1.35rem;
  }

  .studio-subtitle {
    font-size: 0.88rem;
  }

  .studio-grid {
    gap: 2rem;
  }

  .studio-preview-col {
    padding: 0.5rem 0;
  }

  .bottle-stage {
    transform: scale(0.85);
    transform-origin: center;
    max-width: 100%;
  }

  /* Sustainability & Why Us */
  .berles-sustainability-section {
    padding: 3.5rem 0;
  }

  .sustainability-grid {
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .sustainability-card {
    padding: 1.5rem 1.25rem;
  }

  .card-icon-bubble {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    margin-bottom: 1rem;
  }

  .card-title {
    font-size: 1.15rem;
  }

  .card-desc {
    font-size: 0.85rem;
    line-height: 1.6;
  }

  .certifications-banner {
    padding: 1.25rem 1rem;
    gap: 1.25rem;
    margin-bottom: 2rem;
  }

  .cert-item {
    gap: 0.85rem;
  }

  .cert-seal {
    width: 44px;
    height: 44px;
    font-size: 0.5rem;
  }

  .sustainability-cta-card {
    padding: 1.5rem 1.25rem;
    gap: 1.25rem;
  }

  .cta-card-title {
    font-size: 1.35rem;
  }

  .cta-card-desc {
    font-size: 0.9rem;
  }

  .btn-cta-sample {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1.5rem;
  }

  /* Footer */
  .berles-footer-section {
    padding-top: 3.5rem;
    padding-bottom: 1.5rem;
  }

  .footer-main-grid {
    gap: 2rem;
    margin-bottom: 2.5rem;
  }

  .footer-col-title {
    margin-bottom: 1rem;
  }

  /* Modal on Mobile */
  .modal-dialog-box {
    padding: 1.5rem 1.15rem;
    border-radius: 16px;
    max-height: 94vh;
  }

  .modal-title {
    font-size: 1.4rem;
  }
}
