/* ==============================================
   FUNNY LOC - STYLES COMPLETS
   ============================================== */

:root {
  --funnyloc-primary: #f58442;
  --funnyloc-secondary: #7b746c;
  --funnyloc-danger: #dc3545;
  --funnyloc-dark: #212529;
  --funnyloc-light: #f8f9fa;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --navbar-height: 76px;
  --submenu-height: 60px;
}

* {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--funnyloc-dark);
  overflow-x: hidden;
  padding-top: 76px; /* Compensation pour la navbar fixe */
}

/* Padding supplémentaire quand le submenu produits est présent */
body:has(.submenu-products) {
  padding-top: calc(var(--navbar-height) + var(--submenu-height));
}

/* Fallback pour les navigateurs ne supportant pas :has() */
body.page-produits {
  padding-top: calc(var(--navbar-height) + var(--submenu-height));
}

/* ==============================================
   NAVIGATION
   ============================================== */

.navbar-funnyloc {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
}

.navbar-funnyloc.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.logo_color_1 {
  color: var(--funnyloc-primary);
  font-weight: 800;
  letter-spacing: -1px;
}

.logo_color_2 {
  color: var(--funnyloc-secondary);
  font-weight: 800;
  letter-spacing: -1px;
}

.nav-link {
  font-weight: 500;
  transition: var(--transition-smooth);
  position: relative;
}

.nav-link:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--funnyloc-primary);
  transition: width 0.3s ease;
}

.nav-link:hover:after,
.nav-link.active:after {
  width: 80%;
}

.nav_phone {
  border: 1px solid var(--funnyloc-primary);
  font-weight: 600;
  transition: var(--transition-smooth);
  color: var(--funnyloc-dark);
}

.nav_phone:hover {
  background: var(--funnyloc-primary);
  color: white !important;
}

/* ==============================================
   HERO SECTIONS
   ============================================== */

.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  background-image: url(/design/qui-sommes-nous/funnyloc_agency.webp);
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(245, 132, 66, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(123, 116, 108, 0.15) 0%, transparent 50%);
  animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, 20px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--funnyloc-light);
  text-shadow: 0 8px 26px rgba(0,0,0,0.9);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: rgba(255,255,255,0.95);
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
  margin-bottom: 3rem;
  font-weight: 400;
}

.btn-hero {
  padding: 1rem 1.1rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition-smooth);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.btn-hero-primary {
  background: white;
  color: var(--funnyloc-dark);
}

.btn-hero-primary:hover {
  background: white;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
  color: var(--funnyloc-primary);
}

.btn-hero-secondary {
  background: var(--funnyloc-dark);
  color: var(--funnyloc-light);
}

.btn-hero-secondary:hover {
  background: var(--funnyloc-dark);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
  color: var(--funnyloc-primary);
}

.btn-hero-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-hero-outline:hover {
  background: white;
  color: var(--funnyloc-primary);
}

/* Hero pour pages internes */
.page-hero {
  position: relative;
  padding: 5rem 0 4rem;
  background: var(--funnyloc-dark);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 0, 0, 0.2) 0%, transparent 50%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: white;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: rgba(255,255,255,0.95);
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* ==============================================
   SECTIONS TITRES
   ============================================== */

.section-title {
  position: relative;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--funnyloc-dark);
  margin-bottom: 3rem;
  text-align: center;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--funnyloc-primary);
  border-radius: 2px;
}

.section-title.text-white::after {
  background: white;
}

/* ==============================================
   PRODUCT CARDS (Page d'accueil)
   ============================================== */

.product-card {
  position: relative;
  height: 350px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.9) 100%);
  z-index: 1;
  transition: var(--transition-smooth);
}

.product-card:hover::before {
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.85) 100%);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.product-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  z-index: 2;
  color: white;
}

.product-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.product-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-card li {
  font-size: 1.2rem;
  display: flex;
  align-items: center;
}

.product-card li::before {
  content: '✓';
  margin-right: 0.75rem;
  color: var(--funnyloc-secondary);
  font-weight: bold;
  font-size: 1.2rem;
}

/* Backgrounds pour les cards */
.card-mobilier {
  background-size: cover;
  background-position: center;
  background-image: url('/design/home/decoration_fete.jpg');
}

.card-structure {
  background-size: cover;
  background-position: center;
  background-image: url('/design/home/materiel_divertissement.jpg');
}

.card-vaisselle {
  background-size: cover;
  background-position: center;
  background-image: url('/design/home/mobilier_festif.jpg');
}

.card-materiel {
  background-image: url('/design/home/materiel_festif.jpg');
  background-size: cover;
  background-position: center;
}

/* ==============================================
   SECTIONS SERVICES
   ============================================== */

.services-section {
  background: var(--funnyloc-light);
  padding: 5rem 0;
}

.service-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--funnyloc-dark);
}

.download-catalog {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--funnyloc-danger);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition-smooth);
  box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
}

.download-catalog:hover {
  background: #bb2d3b;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(220, 53, 69, 0.4);
}

/* ==============================================
   ENGAGEMENT CARDS
   ============================================== */

.engagement-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  transition: var(--transition-smooth);
  border: 2px solid transparent;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.engagement-card:hover {
  transform: translateY(-5px);
  border-color: var(--funnyloc-primary);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.engagement-icon {
  width: 70px;
  height: 70px;
  background: var(--funnyloc-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.engagement-icon i {
  font-size: 2rem;
  color: white;
}

.engagement-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--funnyloc-dark);
  margin-bottom: 1rem;
}

.engagement-card p {
  color: #6c757d;
  line-height: 1.6;
}

/* ==============================================
   CTA SECTIONS
   ============================================== */

.cta-section {
  background: var(--funnyloc-light);
  padding: 5rem 0;
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--funnyloc-dark);
}

.cta-text {
  font-size: 1.3rem;
  color: #6c757d;
  margin-bottom: 2rem;
}

.btn-cta {
  padding: 1rem 2.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition-smooth);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

/* ==============================================
   STATS SECTION
   ============================================== */

.stats-section {
  background: var(--funnyloc-dark);
  color: var(--funnyloc-primary);
  padding: 3rem 0;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--funnyloc-light);
  font-size: 1.1rem;
  opacity: 0.9;
}

/* ==============================================
   TEAM CARDS (Page Qui sommes-nous)
   ============================================== */

.team-section {
  background: var(--funnyloc-light);
  padding: 5rem 0;
}

.team-card {
  background: white;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  transition: var(--transition-smooth);
  height: 100%;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.team-card-image {
  position: relative;
  height: 300px;
  background: var(--funnyloc-light);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 2px solid var(--funnyloc-primary);
}

.team-card-image.cara {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.team-card-image.melvin {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.team-icon {
  font-size: 6rem;
  color: white;
  opacity: 0.3;
}

.team-role-badge {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.95);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  color: var(--funnyloc-dark);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.team-card-content {
  padding: 2rem;
}

.team-name {
  font-size: 2rem;
  font-weight: 800;
  color: var(--funnyloc-dark);
  margin-bottom: 1rem;
}

.team-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #6c757d;
}

.team-quote {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: var(--funnyloc-light);
  border-radius: 15px;
  border-left: 4px solid var(--funnyloc-primary);
  font-style: italic;
  color: #495057;
}

/* ==============================================
   STORY SECTION (Page Qui sommes-nous)
   ============================================== */

.story-section {
  padding: 5rem 0;
}

.story-content {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #495057;
}

.story-content p {
  margin-bottom: 1.5rem;
}

.story-highlight {
  background: var(--funnyloc-light);
  padding: 2rem;
  border-radius: 20px;
  border-left: 5px solid var(--funnyloc-primary);
  margin: 2rem 0;
}

.story-highlight h3 {
  color: var(--funnyloc-primary);
  font-weight: 700;
  margin-bottom: 1rem;
}

/* ==============================================
   VALUES SECTION (Page Qui sommes-nous)
   ============================================== */

.values-section {
  padding: 5rem 0;
}

.value-card {
  text-align: center;
  padding: 2rem;
  border-radius: 20px;
  background: white;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: var(--transition-smooth);
  height: 100%;
  border: 2px solid transparent;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  border-color: var(--funnyloc-primary);
}

.value-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--funnyloc-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon i {
  font-size: 2.5rem;
  color: white;
}

.value-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--funnyloc-dark);
}

.value-card p {
  color: #6c757d;
  line-height: 1.6;
}

/* ==============================================
   PROCESS SECTION (Page Qui sommes-nous)
   ============================================== */

.process-section {
  background: var(--funnyloc-light);
  padding: 5rem 0;
  color: var(--funnyloc-dark);
}

.process-step {
  text-align: center;
  padding: 2rem;
  position: relative;
}

.process-number {
  width: 70px;
  height: 70px;
  background: white;
  color: var(--funnyloc-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  margin: 0 auto 1.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.process-step h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.process-step p {
  font-size: 1.1rem;
  opacity: 0.95;
}

/* ==============================================
   PAGE PRODUITS - SOUS-MENU STICKY
   ============================================== */

.submenu-products {
  position: fixed;
  top: var(--navbar-height);
  left: 0;
  right: 0;
  z-index: 1020;
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: var(--transition-smooth);
  height: var(--submenu-height);
  top:68px;
}

.submenu-products.scrolled {
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.submenu-container {
  height: 100%;
  display: flex;
  align-items: center;
}

.submenu-nav {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.5rem 0;
}

.submenu-nav::-webkit-scrollbar {
  display: none;
}

.submenu-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  background: var(--funnyloc-light);
  color: var(--funnyloc-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: var(--transition-smooth);
  border: 2px solid transparent;
}
.category-container-selected{
	 background: var(--funnyloc-primary);
	  color: white;
}

.submenu-item:hover {
  background: var(--funnyloc-primary);
 
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(245, 132, 66, 0.3);
}

.submenu-item.active {
  background: var(--funnyloc-primary);
  color: white;
  border-color: var(--funnyloc-primary);
}

.submenu-item i {
  font-size: 1.1rem;
}

/* ==============================================
   PAGE PRODUITS - SECTIONS
   ============================================== */

.products-section {
  padding: 4rem 0;
}

.category-section {
  padding: 3rem 0;
  scroll-margin-top: calc(var(--navbar-height) + var(--submenu-height) + 2rem);
}

.category-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--funnyloc-dark);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid var(--funnyloc-primary);
  display: inline-block;
}

/* ==============================================
   PAGE PRODUITS - PRODUCT ITEMS
   ============================================== */

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}

/* Forcer 3 colonnes minimum sur écrans moyens/larges */
@media (min-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product-item {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: var(--transition-smooth);
  cursor: pointer;
}

.product-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.product-image {
  position: relative;
  width: 100%;
  height: 200px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-image-placeholder {
  font-size: 3rem;
  color: white;
  opacity: 0.5;
}

.product-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: white;
  color: var(--funnyloc-secondary);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.75rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.product-content {
  padding: 1.5rem;
  background-color:var(--funnyloc-light);
}

.product-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--funnyloc-dark);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.product-description {
  font-size: 0.9rem;
  color: #6c757d;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-footer {
  padding: 0 1.5rem 1.5rem;
  align-items: center;
   background-color:var(--funnyloc-light);
  color:var(--funnyloc-primary);
}

.product-cta {
  color: var(--funnyloc-primary);
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-smooth);
}

.product-cta:hover {
  color: var(--funnyloc-secondary);
  gap: 0.75rem;
}

/* ==============================================
   PAGE PRODUITS - CTA FLOATING
   ============================================== */

.cta-floating {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
}

.btn-cta-floating {
  background: var(--funnyloc-primary);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 10px 30px rgba(245, 132, 66, 0.4);
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.btn-cta-floating:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(245, 132, 66, 0.5);
  background: var(--funnyloc-secondary);
  color: white;
}

/* ==============================================
   FOOTER
   ============================================== */

footer {
  background: var(--funnyloc-dark);
  color: white;
  padding: 3rem 0 1rem;
}

footer a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: var(--transition-smooth);
}

footer a:hover {
  color: var(--funnyloc-secondary);
}

/* ==============================================
   ANIMATIONS
   ============================================== */

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==============================================
   RESPONSIVE
   ============================================== */

@media (max-width: 768px) {
  body {
    padding-top: 70px;
  }

  body.page-produits {
    padding-top: calc(70px + 55px);
  }

  :root {
    --navbar-height: 70px;
    --submenu-height: 55px;
  }

  .submenu-products {
    top: 62px;
  }

  .submenu-item {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  .hero-section {
    min-height: 70vh;
  }

  .section-title {
    font-size: 2rem;
  }

  .product-card {
    height: 300px;
    margin-bottom: 1rem;
  }

  .btn-hero {
    padding: 0.8rem 1.8rem;
    font-size: 1rem;
  }

  .page-title {
    font-size: 2rem;
  }

  .team-card-image {
    height: 250px;
  }

  .story-content {
    font-size: 1.1rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .cta-title {
    font-size: 2rem;
  }

  .cta-text {
    font-size: 1.1rem;
  }

  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
  }

  .category-title {
    font-size: 1.6rem;
  }

  .cta-floating {
    bottom: 1rem;
    right: 1rem;
  }

  .btn-cta-floating {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .hero-title,
  .page-title {
    font-size: 1.8rem;
  }

  .hero-subtitle,
  .page-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .product-card h3 {
    font-size: 1.4rem;
  }

  .product-card li {
    font-size: 1rem;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .submenu-item {
    font-size: 0.85rem;
  }

  .category-title {
    font-size: 1.4rem;
  }
}