﻿/* Ø§Ù„ØªÙ†Ø³ÙŠÙ‚Ø§Øª Ø§Ù„Ø£Ø³Ø§Ø³ÙŠØ© */
    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;
    }

    .products-container {
      max-width: 1200px;
      margin: 2rem auto;
      padding: 0 1rem;
    }

    .products-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 4fr));
      gap: 5px;
      max-width: 900px;
      margin: 0 auto;
    }

    @media (max-width: 768px) {
      .products-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .product-card {
        max-width: 100%;
        margin: 0;
      }

      .product-image-container {
        height: 180px;
      }

      .product-image {
        height: 180px;
      }
    }

    @media (max-width: 480px) {
      .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 4fr));
      }

      .product-image-container {
        height: 150px;
      }

      .product-image {
        height: 150px;
      }

      .product-title {
        font-size: 1rem;
        height: 2.2em;
      }

      .product-description {
        font-size: 0.8rem;
        height: 2.2em;
      }

      .product-price {
        font-size: 1rem;
      }

      .product-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
      }
    }

    .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: 350px;
    }

    .product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .product-image-container {
      height: 200px;
      overflow: hidden;
    }

    .product-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      transition: transform 0.5s ease;
      border-radius: 18px;
    }

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

    .product-info {
      padding: 1.5rem;
    }

    .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;
    }

    .product-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 1rem;
    }

    .product-price {
      font-weight: 700;
      font-size: 1rem;
      color: #000;
    }

    .product-btn {
      background: #000;
      color: #fff;
      border: none;
      padding: 0.6rem 1.2rem;
      border-radius: 4px;
      font-weight: 500;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .product-btn:hover {
      background: #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(2, 4fr);
      }

      .product-info {
        padding: 1rem;
      }
    }

