﻿body {
      font-family: 'Poppins', sans-serif;
      margin: 0;
      padding: 0;
      background-color: #f9f9f9;
      color: #333;
    }
    
    .birthday-page-header {
      background: linear-gradient(135deg, #000000 0%, #333333 100%);
      padding: 3rem 0;
      text-align: center;
      margin-bottom: 1rem;
    }
    
    .birthday-main-title {
      font-weight: 700;
      font-size: 2.5rem;
      color: #fff;
      margin-bottom: 1rem;
    }
    
    .birthday-subtitle {
      font-weight: 400;
      font-size: 1.2rem;
      color: #fff;
      max-width: 700px;
      margin: auto;
      opacity: 0.9;
    }
    
      /* === Product Cards Section === */
  .products-section {
    background: #f5f7fa;
    padding: 3rem 0;
  }
  
  .products-header {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .products-title {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
  }
  
  .products-title:after {
    content: "";
    position: absolute;
    width: 50%;
    height: 4px;
    background: linear-gradient(90deg, #6e8efb 0%, #4a6cf7 100%);
    bottom: -10px;
    left: 25%;
    border-radius: 2px;
  }
  
  .products-subtitle {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
  }
  
  .products-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 4fr));
    gap: 5px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .product-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  }
  
  .product-image-container {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
  }
  
  .product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .product-card:hover .product-image {
    transform: scale(1.05);
  }
  
  .product-info {
    padding: 1.5rem;
    width: 100%;
  }
  
  .product-title {
      font-family: "Poppins", sans-serif;
      font-weight: 600;
      font-size: 1.2rem;
      color: #333;
      margin-bottom: 0.1rem;
      -webkit-line-clamp: 2; /* Ø¹Ø¯Ø¯ Ø§Ù„Ø£Ø³Ø·Ø± Ø§Ù„Ù…Ø·Ù„ÙˆØ¨Ø© */
      -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 2.8em; /* ÙŠØªÙ†Ø§Ø³Ø¨ Ù…Ø¹ Ø¹Ø¯Ø¯ Ø§Ù„Ø£Ø³Ø·Ø± */
  line-height: 1.4em;
  }
  
  .product-title:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #6e8efb;
    border-radius: 3px;
  }
  
  .product-description {
     font-family: "Poppins", sans-serif;
      color: #666;
      font-size: 0.9rem;
      margin-bottom: 1px;
      display: -webkit-box;
  -webkit-line-clamp: 2; /* Ø¹Ø¯Ø¯ Ø§Ù„Ø£Ø³Ø·Ø± Ø§Ù„Ù…Ø·Ù„ÙˆØ¨Ø© */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 2.8em; /* ÙŠØªÙ†Ø§Ø³Ø¨ Ù…Ø¹ Ø¹Ø¯Ø¯ Ø§Ù„Ø£Ø³Ø·Ø± */
  line-height: 1.4em;
  margin-bottom: 4px;
  }
  
  .product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  
  .product-price {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #4a6cf7;
  }
  
  .product-btn {
    background: linear-gradient(135deg, #6e8efb 0%, #4a6cf7 100%);
    color: white;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(74, 108, 247, 0.3);
  }
  
  .product-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(74, 108, 247, 0.4);
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .products-grid {
      grid-template-columns: repeat(auto-fill, minmax(200px, 4fr));
      gap:5px;
    }
  }
  
  @media (max-width: 480px) {
    .products-grid {
      grid-template-columns: 1fr;
    }
    
    .products-title {
      font-size: 2rem;
    }
    
    .products-subtitle {
      font-size: 1rem;
    }
  }
    
    .booking-modal {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.8);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 1000;
    }
    
    .modal-content {
      background: #fff;
      width: 90%;
      max-width: 500px;
      border-radius: 10px;
      padding: 2rem;
      position: relative;
    }
    
    .close-modal {
      position: absolute;
      top: 1rem;
      right: 1rem;
      font-size: 1.5rem;
      cursor: pointer;
      color: #999;
    }
    
    .modal-title {
      font-weight: 600;
      font-size: 1.5rem;
      color: #000;
      margin-bottom: 1.5rem;
      text-align: center;
    }
    
    .form-group {
      margin-bottom: 1.2rem;
    }
    
    .form-group label {
      display: block;
      font-weight: 500;
      font-size: 0.9rem;
      color: #444;
      margin-bottom: 0.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 0.8rem;
      border: 1px solid #ddd;
      border-radius: 6px;
      font-family: 'Poppins', sans-serif;
    }
    
    .submit-booking {
      width: 100%;
      padding: 0.9rem;
      background: #000;
      color: #fff;
      border: none;
      border-radius: 6px;
      font-weight: 500;
      font-size: 1rem;
      cursor: pointer;
      margin-top: 1rem;
      transition: background 0.3s ease;
    }
    
    .submit-booking:hover {
      background: #333;
    }
    
    @media (max-width: 768px) {
      .products-grid {
      grid-template-columns: repeat(auto-fill, minmax(200px, 4fr));
      }
      
      .product-info {
        padding: 1rem;
      }
    }
    
    @media (max-width: 480px) {
      .products-grid {
              grid-template-columns: repeat(auto-fill, minmax(150px, 4fr));

      }
    }

