/* ===========================
   BEPPI KIDS – style.css
   =========================== */

:root {
  --green: #b5d300;
  --navy: #1a3a6b;
  --yellow: #FFD93D;
  --pink: #FF6B9D;
  --sky: #5BC8F5;
  --bg: #FAFBFF;
  --white: #fff;
  --text: #1a2340;
  --text-light: #6b7a99;
  --radius: 20px;
  --shadow: 0 8px 32px rgba(26,58,107,0.10);
  --shadow-hover: 0 16px 48px rgba(26,58,107,0.18);
}

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

html { scroll-behavior: smooth; }

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

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 2px solid #eef2ff;
  box-shadow: 0 2px 16px rgba(26,58,107,0.07);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo { height: 70px; }
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  text-decoration: none;
  font-weight: 700;
  color: var(--navy);
  font-size: 1rem;
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 3px;
  background: var(--green);
  border-radius: 99px;
  transition: width .25s;
}
.nav-links a:hover { color: var(--green); }
.nav-links a:hover::after { width: 100%; }
.cart-btn {
  background: var(--navy);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  display: flex; align-items: center; gap: 6px;
  transition: background .2s, transform .1s;
}
.cart-btn:hover { background: var(--green); color: var(--navy); transform: scale(1.05); }
.cart-badge {
  background: var(--yellow);
  color: var(--navy);
  border-radius: 50%;
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 900;
}

/* ===== HERO ===== */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
/* Bubbles live INSIDE the hero-img-wrap, not over the text */
.hero-bubbles { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.bubble {
  position: absolute;
  font-size: 2.2rem;
  animation: floatBubble 6s ease-in-out infinite;
  opacity: .85;
}
/* All bubbles anchored to the RIGHT half of the hero (the circle side) */
.b1 { top: 12%;  right: 38%; animation-delay: 0s;   font-size: 1.6rem; } /* shoe — top left of circle */
.b2 { top: 8%;   right: 4%;  animation-delay: 1s;   font-size: 2rem;   } /* star — top right */
.b4 { bottom: 18%; right: 3%;  animation-delay: 3s; font-size: 1.8rem; } /* heart — bottom right */
.b5 { top: 52%;  right: 2%;   animation-delay: 1.5s; font-size: 1.4rem; } /* footprint — mid right */

@keyframes floatBubble {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(10deg); }
}

.hero-content {
  flex: 1;
  max-width: 560px;
  position: relative;
  z-index: 1;
  animation: fadeUp .8s both;
}
.hero-tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--navy);
  font-weight: 800;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: .9rem;
  margin-bottom: 20px;
  letter-spacing: .5px;
}
.hero-content h1 {
  font-family: 'Baloo 2', cursive;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 16px;
}
.hero-accent { color: var(--green); }
.hero-sub {
  color: var(--text-light);
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 32px;
}
.btn-hero {
  display: inline-block;
  background: var(--navy);
  color: white;
  font-weight: 800;
  font-size: 1.1rem;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 6px 24px rgba(26,58,107,0.25);
}
.btn-hero:hover {
  background: var(--green);
  color: var(--navy);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(181,211,0,0.35);
}

.hero-img-wrap {
  flex: 1;
  max-width: 480px;
  min-width: 320px;
  position: relative;
  z-index: 1;
  display: flex; align-items: center; justify-content: center;
  animation: fadeUp .8s .2s both;
}
/* --- The Mint Circle Container --- */
.hero-blob {
  width: 420px; 
  height: 420px;
  /* Use the soft mint green from your reference image */
  background: rgba(173, 222, 203, 0.45); 
  border-radius: 50%;
  display: flex; 
  align-items: center; 
  justify-content: center;
  position: relative;
  /* Ensure the shoe can overflow the circle */
  overflow: visible; 
  box-shadow: none;
  animation: none;
}

/* --- The Enlarged Shoe --- */
.hero-shoe-img {
  /* Increase width to 115% to make it larger than the circle */
  width: 160%; 
  height: auto;
  max-width: none; /* Allows it to exceed the 420px container */
  position: relative;
  z-index: 10;
  /* Slight rotation and shift to match the "adventure" look */
  transform: rotate(-5deg) translateX(30px, -15px); 
  filter: drop-shadow(15px 15px 25px rgba(0,0,0,0.15));
  transition: transform 0.3s ease;
}

.hero-shoe-img:hover {
  /* Interactive scale effect */
  transform: scale(1.08) rotate(-3deg);
}
@keyframes floatShoe {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-14px) rotate(5deg); }
}
@keyframes pulseSlow {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}
/* legacy hero-img kept for compat */
.hero-img { max-width: 100%; position: relative; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== SECTIONS ===== */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
}
.section-title {
  font-family: 'Baloo 2', cursive;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
  text-align: center;
  margin-bottom: 48px;
}
.section-title.left { text-align: left; }

/* ===== CATEGORIES ===== */
.categories { background: white; }
.cat-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.cat-card {
  background: var(--bg);
  border: 2.5px solid #eef2ff;
  border-radius: 20px;
  padding: 28px 36px;
  display: flex; flex-direction: column;
  align-items: center; gap: 12px;
  cursor: pointer;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--navy);
  transition: all .2s;
  min-width: 130px;
}
.cat-card:hover {
  border-color: var(--green);
  background: #f5ffe0;
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.cat-icon { font-size: 2.5rem; }

/* ===== PRODUCTS ===== */
.products-section { background: var(--bg); }
.filter-bar {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  background: white;
  border: 2px solid #e0e7ff;
  border-radius: 50px;
  padding: 10px 22px;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  color: var(--navy);
  transition: all .2s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

/* ===== PRODUCT CARD ===== */
.product-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
  cursor: pointer;
  animation: fadeUp .5s both;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.product-img-wrap {
  position: relative;
  background: #f8f9ff;
  height: 200px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
  transition: transform .3s;
}
.product-card:hover .product-img { transform: scale(1.06); }
.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--yellow);
  color: var(--navy);
  font-weight: 800;
  font-size: .75rem;
  padding: 4px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.product-info { padding: 18px 20px 20px; }
.product-name {
  font-family: 'Baloo 2', cursive;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.product-cat {
  font-size: .8rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: .6px;
  margin-bottom: 12px;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-price {
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--navy);
}
.btn-add {
  background: var(--navy);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 10px 18px;
  font-weight: 800;
  font-size: .9rem;
  cursor: pointer;
  transition: background .2s, transform .1s;
}
.btn-add:hover { background: var(--green); color: var(--navy); transform: scale(1.07); }

/* ===== ABOUT ===== */
.about { background: white; }
.about-inner {
  display: flex;
  gap: 60px;
  align-items: center;
  flex-wrap: wrap;
}
.about-text { flex: 1; min-width: 260px; }
.about-text p { color: var(--text-light); line-height: 1.7; font-size: 1.05rem; margin-bottom: 24px; }
.about-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.about-list li { font-weight: 700; font-size: 1rem; }
.about-badges {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-shrink: 0;
}
.badge-card {
  background: linear-gradient(135deg, #f5ffe0 0%, #e8f4ff 100%);
  border-radius: 16px;
  padding: 20px 28px;
  display: flex; align-items: center; gap: 16px;
  font-weight: 800;
  color: var(--navy);
  font-size: 1rem;
  border: 2px solid #eef2ff;
  min-width: 220px;
}
.badge-card span { font-size: 2rem; }

/* ===== CONTACT ===== */
.contact-section { background: var(--bg); }
.contact-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.contact-card {
  background: white;
  border-radius: 16px;
  padding: 20px 32px;
  font-weight: 700;
  color: var(--navy);
  box-shadow: var(--shadow);
  font-size: 1rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  color: white;
  text-align: center;
  padding: 40px 24px;
}
.footer-logo { height: 52px; margin-bottom: 12px; }
.footer p { color: rgba(255,255,255,.65); font-size: .9rem; }

/* ===== CART SIDEBAR ===== */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.cart-overlay.active { opacity: 1; pointer-events: all; }
.cart-sidebar {
  position: fixed;
  right: -420px;
  top: 0; bottom: 0;
  width: 400px;
  max-width: 95vw;
  background: white;
  z-index: 201;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 48px rgba(26,58,107,0.15);
  transition: right .35s cubic-bezier(.4,0,.2,1);
  border-radius: 24px 0 0 24px;
}
.cart-sidebar.open { right: 0; }
.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px 16px;
  border-bottom: 2px solid #eef2ff;
}
.cart-header h2 { font-family: 'Baloo 2', cursive; font-size: 1.5rem; color: var(--navy); }
.close-cart {
  background: #f0f4ff;
  border: none;
  border-radius: 50%;
  width: 36px; height: 36px;
  font-size: 1rem;
  cursor: pointer;
  font-weight: 800;
  color: var(--navy);
}
.cart-items { flex: 1; overflow-y: auto; padding: 16px 24px; display: flex; flex-direction: column; gap: 16px; }
.cart-empty { text-align: center; color: var(--text-light); font-weight: 700; padding: 40px 0; font-size: 1.05rem; line-height: 1.8; }

.cart-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--bg);
  border-radius: 14px;
  padding: 14px;
  position: relative;
}
.cart-item-emoji { font-size: 3rem; }
.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 800; color: var(--navy); font-size: .95rem; }
.cart-item-details { font-size: .83rem; color: var(--text-light); margin-top: 3px; line-height: 1.5; }
.cart-item-price { font-weight: 900; color: var(--navy); font-size: 1rem; margin-top: 6px; }
.cart-item-remove {
  position: absolute;
  top: 10px; right: 10px;
  background: none; border: none;
  font-size: 1rem; cursor: pointer;
  color: #ccc; transition: color .2s;
}
.cart-item-remove:hover { color: #e74c3c; }

.cart-footer {
  padding: 16px 24px 24px;
  border-top: 2px solid #eef2ff;
}
.cart-total {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
  text-align: right;
}
.btn-checkout {
  width: 100%;
  background: #25D366;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 16px;
  font-size: 1.05rem;
  font-weight: 800;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: background .2s, transform .15s;
}
.btn-checkout:hover { background: #1ebe5d; transform: scale(1.02); }

/* ===== MODALS ===== */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 300;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal {
  background: white;
  border-radius: 24px;
  padding: 36px;
  max-width: 500px;
  width: 100%;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  animation: modalPop .3s both;
}
@keyframes modalPop {
  from { transform: scale(.9); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: #f0f4ff;
  border: none;
  border-radius: 50%;
  width: 36px; height: 36px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
}
.modal h2 {
  font-family: 'Baloo 2', cursive;
  color: var(--navy);
  font-size: 1.7rem;
  margin-bottom: 8px;
}
.modal-sub { color: var(--text-light); margin-bottom: 24px; font-size: .95rem; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 700; color: var(--navy); margin-bottom: 6px; font-size: .9rem; }
.form-group input, .form-group textarea {
  width: 100%;
  border: 2px solid #e0e7ff;
  border-radius: 12px;
  padding: 12px 16px;
  font-family: 'Nunito', sans-serif;
  font-size: .95rem;
  color: var(--text);
  transition: border-color .2s;
  resize: vertical;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
}
.order-summary {
  background: var(--bg);
  border-radius: 14px;
  padding: 16px;
  margin: 20px 0;
  font-size: .88rem;
  color: var(--text);
  line-height: 1.7;
  max-height: 160px;
  overflow-y: auto;
}
.btn-whatsapp {
  width: 100%;
  background: #25D366;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 16px;
  font-size: 1.05rem;
  font-weight: 800;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: background .2s, transform .15s;
}
.btn-whatsapp:hover { background: #1ebe5d; transform: scale(1.02); }

/* ===== SIZE MODAL ===== */
.size-modal { max-width: 400px; }
.size-product-header {
  display: flex; gap: 16px; align-items: center;
  margin-bottom: 24px;
}
.size-product-img {
  width: 90px; height: 90px;
  object-fit: contain;
  border-radius: 12px;
  background: #f8f9ff;
  padding: 4px;
  flex-shrink: 0;
}
.cart-item-img {
  width: 64px; height: 64px;
  object-fit: contain;
  border-radius: 10px;
  background: #f8f9ff;
  padding: 2px;
  flex-shrink: 0;
}
.size-product-name {
  font-family: 'Baloo 2', cursive;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
}
.size-product-price { font-weight: 900; font-size: 1.1rem; color: var(--navy); margin-top: 4px; }
.size-label { font-weight: 800; color: var(--navy); margin-bottom: 12px; display: block; }
.sizes-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.size-chip {
  background: #f0f4ff;
  border: 2.5px solid #e0e7ff;
  border-radius: 10px;
  padding: 10px 16px;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  transition: all .2s;
  color: var(--navy);
}
.size-chip:hover, .size-chip.selected { background: var(--navy); color: white; border-color: var(--navy); }
.btn-add-to-cart {
  width: 100%;
  background: var(--navy);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 16px;
  font-size: 1.05rem;
  font-weight: 800;
  cursor: pointer;
  transition: background .2s;
}
.btn-add-to-cart:hover { background: var(--green); color: var(--navy); }

/* ===== RESPONSIVE – TABLET ===== */
@media (max-width: 900px) {
  .hero { gap: 32px; padding: 48px 20px; }
  .hero-content { max-width: 100%; }
  .hero-blob { width: 340px; height: 340px; }
}

/* ===== RESPONSIVE – MOBILE ===== */
@media (max-width: 768px) {

  /* NAV */
  .navbar { padding: 0; }
  .nav-inner { padding: 10px 16px; }
  .nav-links { display: none; }
  .logo { height: 52px; }
  .cart-btn { padding: 8px 14px; font-size: .9rem; }

  /* HERO */
.hero {
    flex-direction: column; /* Stack text on top of image */
    text-align: center;     /* Center the text alignment */
    padding: 40px 16px;
    gap: 20px;              /* Space between text and circle */
    min-height: auto;
  }

  /* 2. Center the text content and remove left padding */
  .hero-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;    /* Centers the button and tag */
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  /* 3. Center the Circle and Shoe */
  .hero-img-wrap {
    width: 100%;
    display: flex;
    justify-content: center; /* Centers the blob horizontally */
    align-items: center;
    margin-top: 20px;
  }

/* 4. The Smaller Green Circle */
  .hero-blob {
    width: 260px; /* Smaller for mobile */
    height: 260px;
    background: rgba(173, 222, 203, 0.45);
    border-radius: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible; /* Allows the shoe to pop out the bottom */
  }

  /* 5. The Centered & Downward Shoe */
  .hero-shoe-img {
    width: 165%; /* Large size */
    max-width: none;
    position: absolute; /* Absolute positioning relative to the circle */
    left: 75%;
    /* Translate -70% centers it horizontally. 
       Adjust -30% to move it more or less 'down' over the edge.
    */
    transform: translate(-50%, -50%) rotate(2deg); 
    top: 50%;
    z-index: 10;
  }
}
.hero-bubbles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 15; /* Ensures icons stay on top of the shoe */
  }

  /* 1. The Star (Top Left) */
  .b1 { 
    top: -10%; 
    left: 10%; 
    font-size: 1.8rem; 
    animation-delay: 0s;
  } 

  /* 2. The Rainbow (Bottom Left) */
  .b2 { 
    bottom: 0%; 
    left: -0%; 
    font-size: 0rem; 
    animation-delay: 1s;
  } 

  /* 3. The Sparkles/Hand (Top Right) */
  .b3 { 
    top: 5%; 
    right: -5%; 
    font-size: 1.6rem; 
    animation-delay: 1.5s;
  } 

  /* 4. Optional: Heart (Bottom Right) if you use b4 */
  .b4 { 
    bottom: 0%; 
    right: 0%; 
    font-size: 0rem; 
  }
}

  /* SECTIONS */
  .section-inner { padding: 48px 16px; }
  .section-title { font-size: 1.7rem; margin-bottom: 28px; }

  /* CATEGORIES */
  .cat-grid { gap: 12px; }
  .cat-card { padding: 20px 20px; min-width: 110px; font-size: .95rem; }
  .cat-icon { font-size: 2rem; }

  /* FILTER BAR */
  .filter-bar { gap: 8px; }
  .filter-btn { padding: 8px 16px; font-size: .85rem; }

  /* PRODUCT GRID – 2 columns on phone */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .product-img-wrap { height: 150px; }
  .product-emoji { font-size: 4.5rem; }
  .product-name { font-size: 1rem; }
  .product-price { font-size: 1.1rem; }
  .btn-add { padding: 8px 12px; font-size: .8rem; }
  .product-info { padding: 12px 14px 14px; }

  /* ABOUT */
  .about-inner { flex-direction: column; gap: 32px; }
  .about-badges { flex-direction: column; }
  .badge-card { min-width: 0; }

  /* CONTACT */
  .contact-cards { flex-direction: column; align-items: center; }
  .contact-card { width: 100%; max-width: 340px; text-align: center; }

  /* CART SIDEBAR – slides up from bottom on mobile */
  .cart-sidebar {
    width: 100%;
    border-radius: 24px 24px 0 0;
    top: auto;
    bottom: -100%;
    right: 0;
    transition: bottom .35s cubic-bezier(.4,0,.2,1);
    max-height: 90vh;
  }
  .cart-sidebar.open { bottom: 0; }

  /* MODALS */
  .modal { padding: 24px 18px; border-radius: 20px 20px 0 0; }
  .modal-overlay { align-items: flex-end; padding: 0; }

  /* FOOTER */
  .footer { padding: 28px 16px; }
  .footer-logo { height: 42px; }
}

/* ===== RESPONSIVE – SMALL PHONES ===== */
@media (max-width: 380px) {
  .products-grid { grid-template-columns: 1fr; }
  .hero-blob { width: 220px; height: 220px; }
  .hero-content h1 { font-size: 1.75rem; }
}
/* --- Agrandissement des photos --- */
.product-img {
    width: 100%;
    height: 250px; /* Reduced slightly for better proportions */
    object-fit: contain; /* Changed from cover to contain to see the whole shoe */
    background-color: #f8f9ff; /* Light background to define the shoe area */
    padding: 15px; /* Space around the shoe so it doesn't touch the edges */
    border-radius: 12px;
    cursor: zoom-in;
    transition: transform 0.3s ease;
    display: block;
    margin: 0 auto; /* Centers the image tag */
}

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

/* --- Modal de Zoom --- */
.zoom-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.9);
    align-items: center;
    justify-content: center;
}

.zoom-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

.zoom-close {
    position: absolute;
    top: 20px; right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}
/* Styling for the new Product Title and Smaller Ref */
.product-name {
  font-size: 1.1rem;
  margin-bottom: 2px;
}
.product-ref {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}