﻿/* Ø§Ù„ØªÙ†Ø³ÙŠÙ‚Ø§Øª Ø§Ù„Ø£Ø³Ø§Ø³ÙŠØ© */
    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-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    margin-bottom: 1rem;
  }
  
  .birthday-subtitle {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: #fff;
    max-width: 700px;
    margin: auto;
    opacity: 0.9;
  }
  
  .birthday-theme-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
  }

    /* Ø´Ø¨ÙƒØ© Ø§Ù„Ù…Ù†ØªØ¬Ø§Øª */
    .products-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(190px, 4fr));
      gap:5px ;
      max-width: 900px;
      margin: 0 auto;
     
    }
    
    

    
    /* Ø¨Ø·Ø§Ù‚Ø© Ø§Ù„Ù…Ù†ØªØ¬ */
    .product-card {
      background: #fff;
      border: 1px solid #e0e0e0;
      border-radius: 17px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
      transition: transform 0.3s, box-shadow 0.3s;
      max-width: 250px;
      padding: 4px ;
      
    }
    
    .product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .product-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 17px;
    }
    
    .product-details {
      padding: 1.5rem;
      padding: 4px ;
      text-align: center;
    }
    
    .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-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;
  padding: 4px ;
      
    }
    
    .product-price {
      font-family: "Poppins", sans-serif;
      font-weight: 700;
      font-size: 1rem;
      color: #222;
      margin-bottom: 1rem;
      margin-top: 9px;padding: 4px ;
      
    }
    
    .product-btn {
background: #000000;
    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);
    margin-top: 5px;
    margin-bottom: 5px;
    margin-left: auto;
    margin-right: auto;
    }
    
    .product-btn:hover {
      background-color: #333;
    }
    
    /* Ù†Ù…ÙˆØ°Ø¬ Ø§Ù„Ø­Ø¬Ø² */
    .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(100px, 4fr);
        gap:5px ;
      }
       .product-info {
        padding: 1rem;
      }
      .products-grid {
      margin: 0;
    }
    }

@media (max-width: 390px) {
  .products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Ø¹Ø±Ø¶ Ø¹Ù…ÙˆØ¯ÙŠÙ† Ù…ØªØ³Ø§ÙˆÙŠÙŠÙ† */
    gap: 5px;
    max-width: 100%; /* Ø§Ø³ØªØ®Ø¯Ù… Ø§Ù„Ø¹Ø±Ø¶ Ø§Ù„ÙƒØ§Ù…Ù„ */
  }


  .products-container {
    max-width: 100%;
    display: grid;
  }
}

