@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  --primary-blue: #253993;
  --primary-blue-dark: #121f47;
  --primary-blue-light: #445cd8;
  --primary-blue-soft: rgba(37, 57, 147, 0.06);
  --accent-yellow: #ffdd00;
  --accent-yellow-dark: #e6c700;
  --accent-yellow-light: #fff4b3;
  --accent-yellow-soft: rgba(255, 221, 0, 0.15);
  --bg-light: #f7f9fd;
  --bg-white: #ffffff;
  --text-dark: #121829;
  --text-muted: #526085;
  --border-light: rgba(37, 57, 147, 0.08);
  --border-yellow: rgba(255, 221, 0, 0.25);
  --shadow-sm: 0 6px 16px rgba(18, 24, 41, 0.03);
  --shadow-md: 0 16px 36px rgba(18, 24, 41, 0.06);
  --shadow-lg: 0 32px 64px rgba(18, 24, 41, 0.08);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

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

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

#brands {
  scroll-margin-top: 90px;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--primary-blue-dark);
  line-height: 1.2;
}

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

/* Utility Layouts */
.container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

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

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
}

/* Badges & Text formatting */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--accent-yellow-soft);
  color: var(--primary-blue-dark);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
  border: 1px solid var(--border-yellow);
}

.eyebrow i {
  color: var(--primary-blue);
}

.section-header {
  max-width: 650px;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 18px;
  color: var(--text-muted);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background-color: var(--primary-blue);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(37, 57, 147, 0.2);
}

.btn-primary:hover {
  background-color: var(--primary-blue-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 57, 147, 0.3);
}

.btn-accent {
  background-color: var(--accent-yellow);
  color: var(--primary-blue-dark);
  box-shadow: 0 10px 24px rgba(255, 221, 0, 0.2);
}

.btn-accent:hover {
  background-color: var(--accent-yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 221, 0, 0.3);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
}

.btn-outline:hover {
  background-color: var(--primary-blue);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--primary-blue);
  font-size: 15px;
}

.btn-text:hover {
  color: var(--primary-blue-light);
}

.btn-text i {
  transition: transform 0.2s ease;
}

.btn-text:hover i {
  transform: translateX(4px);
}

/* Glassmorphism Header */
.v2-header {
  position: fixed;
  top: 20px;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
}

.v2-header.scrolled {
  top: 0;
}

.v2-header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-md);
  padding: 12px 24px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.v2-header.scrolled .v2-header-container {
  border-radius: 0;
  width: 100%;
  border-left: none;
  border-right: none;
  border-top: none;
  border-bottom: 1px solid var(--border-light);
  background-color: rgba(255, 255, 255, 0.95);
  padding: 8px 32px;
}

.v2-logo {
  flex-shrink: 0;
}

.v2-logo img {
  max-height: 48px;
  width: auto;
  display: block;
}

.v2-nav {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.v2-nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.v2-nav-menu a {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary-blue-dark);
  white-space: nowrap;
}

.v2-nav-menu a:hover {
  background-color: var(--primary-blue-soft);
  color: var(--primary-blue);
}

.v2-nav-menu a.active {
  background-color: var(--primary-blue);
  color: #ffffff;
}

.v2-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.v2-header-actions .header-wa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 999px;
  background-color: #25d366;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.15);
}

.v2-header-actions .header-wa:hover {
  background-color: #20ba5a;
  transform: translateY(-1px);
}

.v2-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--primary-blue-dark);
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
}

/* Mobile Dropdown Menu */
.v2-mobile-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 24px;
  right: 24px;
  background-color: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
  padding: 24px;
  display: none;
  flex-direction: column;
  gap: 20px;
  transform: translateY(-10px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.v2-mobile-dropdown.active {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}

.v2-mobile-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.v2-mobile-nav a {
  display: block;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-blue-dark);
}

.v2-mobile-nav a:hover {
  background-color: var(--primary-blue-soft);
  color: var(--primary-blue);
}

.v2-mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.v2-mobile-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
}

.v2-mobile-actions .header-wa {
  background-color: #25d366;
  color: #ffffff;
}

.v2-mobile-actions .header-phone {
  background-color: var(--primary-blue);
  color: #ffffff;
}

@media (max-width: 1150px) {
  .v2-nav-menu, .v2-header-actions {
    display: none;
  }
  .v2-menu-toggle {
    display: block;
  }
}

/* Hero Section */
.v2-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px 0;
  background: linear-gradient(180deg, #eef3ff 0%, #f7f9fd 100%);
  overflow: hidden;
}

.v2-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.v2-hero-content h1 {
  font-size: clamp(38px, 6vw, 64px);
  margin-top: 10px;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.v2-hero-content h1 span {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.v2-hero-content p {
  font-size: 20px;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 580px;
}

.v2-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.v2-hero-highlights {
  display: flex;
  gap: 32px;
  border-top: 1px solid var(--border-light);
  padding-top: 32px;
}

.v2-hero-highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.v2-hero-highlight-item i {
  font-size: 24px;
  color: var(--primary-blue);
  background-color: var(--primary-blue-soft);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.v2-hero-highlight-item span {
  font-weight: 700;
  font-size: 15px;
  color: var(--primary-blue-dark);
}

.v2-hero-media {
  position: relative;
}

.v2-hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}

.v2-hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v2-hero-badge {
  position: absolute;
  bottom: 30px;
  left: -30px;
  background-color: #ffffff;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border-light);
  animation: float 6s ease-in-out infinite;
}

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

.v2-hero-badge i {
  font-size: 28px;
  color: var(--accent-yellow-dark);
  background-color: var(--accent-yellow-soft);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
}

.v2-hero-badge h4 {
  font-size: 18px;
  margin-bottom: 2px;
}

.v2-hero-badge p {
  font-size: 13px;
  color: var(--text-muted);
}

@media (max-width: 1024px) {
  .v2-hero {
    padding-top: 120px;
  }
  .v2-hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .v2-hero-media {
    max-width: 500px;
    margin: 0 auto;
  }
  .v2-hero-badge {
    left: 20px;
  }
}

/* Strengths / Benefits Section */
.v2-strengths {
  background-color: #ffffff;
}

.v2-strengths-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.v2-strength-card {
  background-color: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 40px;
  border: 1px solid transparent;
  transition: var(--transition);
}

.v2-strength-card:hover {
  background-color: #ffffff;
  border-color: var(--border-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.v2-strength-card .icon-wrapper {
  font-size: 32px;
  color: var(--primary-blue);
  background-color: var(--primary-blue-soft);
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  margin-bottom: 24px;
  transition: var(--transition);
}

.v2-strength-card:hover .icon-wrapper {
  background-color: var(--accent-yellow);
  color: var(--primary-blue-dark);
}

.v2-strength-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.v2-strength-card p {
  color: var(--text-muted);
}

.content-placeholder {
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #eef5fb, #dcebf6);
  color: var(--primary-blue);
}

.hero-brand-panel {
  min-height: 460px;
  flex-direction: column;
  gap: 18px;
  padding: 48px;
  text-align: center;
}

.hero-brand-panel img,
.about-history-panel img {
  width: min(280px, 80%);
  height: auto;
  object-fit: contain;
}

.hero-brand-panel strong {
  font-size: 40px;
  color: var(--primary-blue);
}

.hero-brand-panel span {
  max-width: 320px;
  font-size: 18px;
  font-weight: 600;
}

.department-placeholder {
  height: 230px;
  font-size: 64px;
}

.department-placeholder-large {
  height: 100%;
  min-height: 390px;
}

.about-history-panel {
  min-height: 480px;
  border-radius: 24px;
}

.services-section {
  background: #f7fafc;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trademark-note {
  margin: 24px 0;
  padding: 20px 22px;
  border-left: 4px solid var(--accent-yellow);
  background: #f5f8fb;
  border-radius: 0 12px 12px 0;
}

.trademark-note strong {
  color: var(--primary-blue);
}

.trademark-note p {
  margin: 8px 0 0;
}

@media (max-width: 992px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-brand-panel { min-height: 340px; padding: 32px 20px; }
  .hero-brand-panel strong { font-size: 32px; }
}

@media (max-width: 992px) {
  .v2-strengths-grid {
    grid-template-columns: 1fr;
  }
}

/* Departments Section */
.v2-departments {
  background-color: var(--bg-light);
}

.v2-departments-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.v2-dept-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.v2-dept-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 24, 41, 0) 40%, rgba(18, 24, 41, 0.9) 100%);
  z-index: 1;
}

.v2-dept-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.6s ease;
}

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

.v2-dept-content {
  position: relative;
  z-index: 2;
  padding: 30px;
  color: #ffffff;
}

.v2-dept-content h3 {
  color: #ffffff;
  font-size: 24px;
  margin-bottom: 10px;
}

.v2-dept-content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.v2-dept-card:hover .v2-dept-content p {
  opacity: 1;
  max-height: 100px;
  margin-bottom: 12px;
}

.v2-dept-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-yellow);
}

@media (max-width: 1024px) {
  .v2-departments-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 580px) {
  .v2-departments-grid {
    grid-template-columns: 1fr;
  }
}

/* Recipes Section */
.v2-recipes {
  background-color: #ffffff;
}

.v2-recipes-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 60px;
}

.v2-recipes-header .section-header {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .v2-recipes-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

.v2-recipes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.v2-recipe-card {
  background-color: var(--bg-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(18, 24, 41, 0.04);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.v2-recipe-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  background-color: #ffffff;
  border-color: var(--border-light);
}

.v2-recipe-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.v2-recipe-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.v2-recipe-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: var(--primary-blue);
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.v2-recipe-meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.v2-recipe-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.v2-recipe-meta i {
  color: var(--primary-blue);
}

.v2-recipe-body h3 {
  font-size: 20px;
  margin-bottom: 10px;
  line-height: 1.3;
}

.v2-recipe-body p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.v2-recipe-footer {
  margin-top: auto;
  border-top: 1px solid rgba(18, 24, 41, 0.06);
  padding-top: 18px;
}

@media (max-width: 992px) {
  .v2-recipes-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .v2-recipes-grid {
    grid-template-columns: 1fr;
  }
}

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

.v2-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.v2-about-media {
  position: relative;
}

.v2-about-img-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.v2-about-img-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.v2-about-img-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.v2-about-img-item:nth-child(2) {
  transform: translateY(30px);
}

.v2-about-experience {
  position: absolute;
  bottom: -20px;
  right: 20px;
  background-color: var(--primary-blue);
  color: #ffffff;
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  text-align: center;
  max-width: 180px;
}

.v2-about-experience strong {
  display: block;
  font-size: 38px;
  font-family: 'Outfit', sans-serif;
  color: var(--accent-yellow);
  line-height: 1;
}

.v2-about-experience span {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.v2-about-content h2 {
  font-size: clamp(32px, 5vw, 44px);
  margin-bottom: 24px;
}

.v2-about-content p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 24px;
}

.v2-about-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
}

.v2-about-features li {
  font-weight: 700;
  color: var(--primary-blue-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.v2-about-features li i {
  color: #25d366;
  font-size: 18px;
}

@media (max-width: 992px) {
  .v2-about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .v2-about-media {
    max-width: 500px;
    margin: 0 auto;
  }
  .v2-about-img-item:nth-child(2) {
    transform: translateY(0);
  }
  .v2-about-experience {
    bottom: -10px;
    right: -10px;
  }
}

/* FAQ & Info Accordion */
.v2-faq {
  background-color: #ffffff;
}

.v2-faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
}

.v2-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.v2-accordion-item {
  border-radius: var(--radius-sm);
  background-color: var(--bg-light);
  border: 1px solid transparent;
  transition: var(--transition);
  overflow: hidden;
}

.v2-accordion-item.active {
  background-color: #ffffff;
  border-color: var(--border-light);
  box-shadow: var(--shadow-md);
}

.v2-accordion-header {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.v2-accordion-header h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  transition: var(--transition);
}

.v2-accordion-item.active .v2-accordion-header h3 {
  color: var(--primary-blue);
}

.v2-accordion-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: rgba(18, 24, 41, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--text-dark);
  transition: var(--transition);
}

.v2-accordion-item.active .v2-accordion-icon {
  background-color: var(--primary-blue);
  color: #ffffff;
  transform: rotate(180deg);
}

.v2-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.v2-accordion-content {
  padding: 0 24px 24px 24px;
  color: var(--text-muted);
  font-size: 14px;
  border-top: 1px solid rgba(18, 24, 41, 0.04);
  padding-top: 16px;
}

@media (max-width: 992px) {
  .v2-faq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Contact & Store Info */
.v2-contact {
  background-color: var(--bg-light);
}

.v2-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}

.v2-contact-info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.v2-contact-card {
  background-color: #ffffff;
  border-radius: var(--radius-md);
  padding: 30px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.v2-contact-card i {
  font-size: 24px;
  color: var(--primary-blue);
  background-color: var(--primary-blue-soft);
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  margin-bottom: 20px;
}

.v2-contact-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.v2-contact-card p, .v2-contact-card a {
  font-size: 14px;
  color: var(--text-muted);
}

.v2-map-wrapper {
  background-color: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  min-height: 400px;
  position: relative;
}

.v2-map-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
  display: block;
}

.v2-form-wrapper h3 {
  font-size: 26px;
  margin-bottom: 12px;
}

.v2-form-wrapper p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 28px;
}

.v2-form-group {
  margin-bottom: 20px;
}

.v2-form-group label {
  display: block;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary-blue-dark);
  margin-bottom: 8px;
}

.v2-form-control {
  width: 100%;
  padding: 14px 20px;
  border-radius: 12px;
  border: 1px solid rgba(18, 24, 41, 0.1);
  background-color: var(--bg-light);
  font-family: inherit;
  font-size: 15px;
  color: var(--text-dark);
  transition: var(--transition);
}

.v2-form-control:focus {
  outline: none;
  border-color: var(--primary-blue);
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(37, 57, 147, 0.08);
}

textarea.v2-form-control {
  resize: vertical;
  min-height: 120px;
}

@media (max-width: 992px) {
  .v2-contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 580px) {
  .v2-contact-info-cards {
    grid-template-columns: 1fr;
  }
  .v2-contact-card.map-card {
    grid-column: span 1;
  }
}

/* Premium Footer */
.v2-footer {
  background-color: var(--primary-blue-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 0 0;
  border-radius: 40px 40px 0 0;
  font-size: 15px;
}

.v2-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  margin-bottom: 60px;
  direction: rtl;
}

.v2-footer-grid > * {
  direction: ltr;
}

.v2-footer-logo img {
  max-height: 52px;
  width: auto;
  margin-bottom: 24px;
}

.v2-footer-about p {
  line-height: 1.6;
  margin-bottom: 28px;
}

.v2-footer-socials {
  display: flex;
  gap: 12px;
}

.v2-footer-socials a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.v2-footer-socials a:hover {
  background-color: var(--accent-yellow);
  border-color: var(--accent-yellow);
  color: var(--primary-blue-dark);
}

.v2-footer-column h4 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 28px;
  position: relative;
  padding-bottom: 8px;
}

.v2-footer-column h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 3px;
  background-color: var(--accent-yellow);
  border-radius: 2px;
}

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

.v2-footer-links a:hover {
  color: var(--accent-yellow);
  transform: translateX(4px);
}

.v2-footer-hours {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.v2-footer-hours li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 8px;
}

.v2-footer-hours li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.v2-footer-hours span {
  font-weight: 600;
}

.v2-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 30px 0;
  background-color: rgba(0, 0, 0, 0.15);
}

.v2-footer-bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.v2-footer-bottom-container a {
  color: #ffffff;
  font-weight: 600;
}

.v2-footer-bottom-container a:hover {
  color: var(--accent-yellow);
}

@media (max-width: 992px) {
  .v2-footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .v2-footer-bottom-container {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* ============================================================
   BRANDS SECTION
   ============================================================ */
.v2-brands {
  padding: 80px 0 70px;
  background: var(--bg-white);
  overflow: hidden;
}

.v2-brands .section-header {
  max-width: 600px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: 52px;
}

.brands-marquee-wrapper {
  position: relative;
  overflow: hidden;
}

.brands-marquee-wrapper::before,
.brands-marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.brands-marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-white) 0%, transparent 100%);
}

.brands-marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-white) 0%, transparent 100%);
}

.brands-track {
  display: flex;
  gap: 16px;
  width: max-content;
  padding: 8px 0 16px;
  animation: brandScroll 32s linear infinite;
}

.brands-track:hover {
  animation-play-state: paused;
}

@keyframes brandScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.brand-card {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-light);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 14px 24px 14px 14px;
  min-width: 285px;
  transition: var(--transition);
  cursor: default;
  user-select: none;
}

.brand-card:hover {
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  background: var(--bg-white);
}

.brand-logo {
  width: 96px;
  height: 72px;
  padding: 8px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-name {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--primary-blue-dark);
  line-height: 1.2;
}

.brand-type {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ============================================================
   PRODOTTI PAGE
   ============================================================ */
.prodotti-hero {
  background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--primary-blue) 100%);
  padding: 140px 0 80px;
  color: #fff;
  text-align: center;
}

.prodotti-hero h1 {
  color: #fff;
  font-size: clamp(36px, 6vw, 56px);
  margin-bottom: 16px;
}

.prodotti-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto;
}

/* Category tabs */
.cat-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 56px;
}

.cat-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  border: 2px solid var(--border-light);
  background: var(--bg-white);
  color: var(--text-muted);
  transition: var(--transition);
}

.cat-tab:hover,
.cat-tab.active {
  background: var(--primary-blue);
  color: #fff;
  border-color: var(--primary-blue);
  box-shadow: 0 8px 20px rgba(37,57,147,0.2);
}

.cat-tab i { font-size: 15px; }

/* Product grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--bg-white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-blue);
}

.product-card-img {
  height: 180px;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  color: var(--primary-blue);
  position: relative;
  overflow: hidden;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent-yellow);
  color: var(--primary-blue-dark);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.product-card-body h3 {
  font-size: 17px;
  margin-bottom: 8px;
  color: var(--primary-blue-dark);
}

.product-card-body p {
  font-size: 14px;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 16px;
  line-height: 1.5;
}

.product-formats {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.product-format {
  background: var(--primary-blue-soft);
  color: var(--primary-blue);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--border-light);
}

.product-wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  border-radius: 999px;
  padding: 10px 20px;
  font-weight: 700;
  font-size: 13px;
  transition: var(--transition);
  text-decoration: none;
}

.product-wa-btn:hover {
  background: #1da851;
  transform: translateY(-1px);
}

/* Category section wrapper */
.cat-section { display: none; }
.cat-section.visible { display: block; }

/* CTA prodotti */
.prodotti-cta {
  background: linear-gradient(135deg, var(--primary-blue-dark), var(--primary-blue));
  color: #fff;
  text-align: center;
  padding: 80px 0;
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.prodotti-cta h2 { color: #fff; margin-bottom: 16px; }
.prodotti-cta p  { color: rgba(255,255,255,0.8); margin-bottom: 32px; font-size: 18px; }

@media (max-width: 768px) {
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
  .cat-tabs { gap: 8px; }
  .cat-tab { padding: 10px 16px; font-size: 13px; }
  .prodotti-cta {
    width: calc(100% - 28px);
    margin-bottom: 28px;
    padding: 58px 18px;
    border-radius: var(--radius-md);
  }
}

/* Category-only products page */
.category-overview {
  background: var(--bg-light);
}

.category-intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 48px;
  margin-bottom: 44px;
}

.category-intro h2 {
  max-width: 650px;
  font-size: clamp(32px, 5vw, 48px);
}

.category-intro p {
  color: var(--text-muted);
  font-size: 17px;
}

.category-jump {
  position: sticky;
  top: 88px;
  z-index: 10;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 56px;
  padding: 12px;
  border: 1px solid var(--border-light);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(14px);
}

.category-jump a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 17px;
  border-radius: 999px;
  color: var(--primary-blue-dark);
  font-size: 13px;
  font-weight: 700;
}

.category-jump a:hover {
  color: #fff;
  background: var(--primary-blue);
}

.category-list {
  display: grid;
  gap: 34px;
}

.category-panel {
  scroll-margin-top: 170px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  min-height: 460px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  background: var(--bg-white);
  box-shadow: var(--shadow-md);
}

.category-panel-reverse .category-panel-media {
  order: 2;
}

.category-panel-media {
  position: relative;
  min-height: 360px;
  overflow: hidden;
}

.category-panel-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(18, 31, 71, 0.5));
}

.category-panel-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.category-panel:hover .category-panel-media img {
  transform: scale(1.04);
}

.category-number {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 14px;
  color: rgba(255,255,255,0.9);
  font-family: 'Outfit', sans-serif;
  font-size: 64px;
  font-weight: 800;
  line-height: 1;
}

.category-panel-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(30px, 5vw, 64px);
}

.category-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 15px;
  color: var(--primary-blue);
  background: var(--accent-yellow);
  font-size: 20px;
}

.category-label {
  margin-bottom: 8px;
  color: var(--primary-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.category-panel h2 {
  margin-bottom: 15px;
  font-size: clamp(28px, 4vw, 40px);
}

.category-panel-content > p {
  margin-bottom: 20px;
  color: var(--text-muted);
  font-size: 16px;
}

.category-features {
  display: grid;
  gap: 9px;
  margin-bottom: 26px;
  list-style: none;
  color: var(--primary-blue-dark);
  font-size: 14px;
  font-weight: 600;
}

.category-features i {
  margin-right: 8px;
  color: #25a85b;
}

.category-contact {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 20px;
  border-radius: 999px;
  color: #fff;
  background: #25d366;
  font-size: 13px;
  font-weight: 700;
}

.category-contact:hover {
  background: #1da851;
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .category-intro {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .category-jump {
    position: static;
    border-radius: var(--radius-md);
  }

  .category-panel {
    grid-template-columns: 1fr;
  }

  .category-panel-reverse .category-panel-media {
    order: 0;
  }
}

@media (max-width: 600px) {
  .category-panel-media {
    min-height: 240px;
  }

  .category-panel-content {
    padding: 28px 24px 32px;
  }

  .category-jump a {
    width: 100%;
    justify-content: center;
  }
}
