body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background-color: #fff9f7;
    color: #444;
  }
  
  header {
    background-color: #ffe5e0;
    padding: 20px;
    text-align: center;
  }
  
  header h1 {
    margin: 0;
    color: #b84f4f;
  }
  
  nav a {
    margin: 0 10px;
    color: #b84f4f;
    text-decoration: none;
    font-weight: bold;
  }
  
  .hero {
    text-align: center;
    padding: 40px 20px;
    background: #fff0ec;
  }
  
  .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 30px;
  }
  
  .product-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.2s;
  }
  
  .product-card:hover {
    transform: scale(1.03);
  }
  
  .product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .product-card h3 {
    margin: 10px;
  }
  
  .product-card p {
    margin: 0 10px 10px;
    color: #666;
  }
  
  footer {
    text-align: center;
    background-color: #ffe5e0;
    padding: 20px;
    margin-top: 40px;
  }
  .product-detail {
    display: flex;
    justify-content: center;
    padding: 40px;
  }
  
  .product-single {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    max-width: 600px;
  }
  
  .product-single img {
    width: 100%;
    margin-bottom: 10px;
    border-radius: 8px;
  }
  
  .product-single .price {
    font-size: 1.2rem;
    color: #b84f4f;
    margin-bottom: 10px;
  }
  .product-card img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #fff;
  }
  .gallery {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
  }
  
  .gallery img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
    scroll-snap-align: start;
    cursor: pointer;
    transition: transform 0.2s;
  }
  
  .gallery img:hover {
    transform: scale(1.05);
  }
  .lightbox {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    backdrop-filter: blur(3px);
  }
  
  .lightbox img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(255,255,255,0.2);
  }
  
  .lightbox .close {
    position: absolute;
    top: 20px; right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    font-weight: bold;
  }
  
  .lightbox .nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    font-size: 40px;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
  }
  
  .lightbox .prev { left: 40px; }
  .lightbox .next { right: 40px; }
  
  .lightbox .nav:hover,
  .lightbox .close:hover {
    background: rgba(255,255,255,0.4);
  }
    