* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: "Poppins";
}

body {
  background: linear-gradient(90deg,
        rgba(175,40,40,1) 10%,
        rgba(142,68,173,1) 50%,
        rgb(102,163,249) 100%);
  color: #fff;
  overflow-x: hidden;
}

/* ================= HEADER ================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 12px 6%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(90deg,
        rgba(175,40,40,1) 10%,
        rgba(142,68,173,1) 50%,
        rgb(102,163,249) 100%);
    z-index: 9999;
    border-bottom: 2px solid #000;
}

/* LOGO */
.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    animation: logoSlide 1.2s ease forwards;
}

@keyframes logoSlide {
  from { transform: translateX(-60px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* ================= LOGO SIZE FIX ================= */

/* Default (Desktop) */
.logo-area img {
  height: 70px;
  width: auto;
  object-fit: contain;
 
}

/* Mobile only */
@media (max-width: 768px) {
  .logo-area img {
    height: 80px;   /* 🔥 mobile-la perusa theriyum */
  }

  .logo-area h1 {
    font-size: 24px;   /* text match agum */
  }

  .logo-area p {
    font-size: 12px;
  }
}

.logo-area h1 {
  font-size: 32px;
  color: #FFD700;
}

.logo-area p {
  font-size: 14px;
  color: #f3efef;
}

/* ================= DESKTOP NAV ================= */

.navbar {
    display: flex;
    gap: 15px;
    align-items: center;
}

.navbar a {
    padding: 10px 20px;
    background: rgba(255,255,255,0.2);
    border-radius: 25px;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
    opacity: 0;
    animation: navSlide 1s ease forwards;
}

.navbar a:nth-child(1){animation-delay:.2s}
.navbar a:nth-child(2){animation-delay:.4s}
.navbar a:nth-child(3){animation-delay:.6s}
.navbar a:nth-child(4){animation-delay:.8s}
.navbar a:nth-child(5){animation-delay:1s}

@keyframes navSlide {
  from { transform: translateY(-40px); opacity:0; }
  to { transform: translateY(0); opacity:1; }
}

.navbar a:hover {
    background: gold;
    color: black;
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(255,215,0,0.5);
}

/* MOBILE MENU BUTTON */
#menu-btn {
    display: none;
    font-size: 32px;
    cursor: pointer;
    color: white;
    z-index: 99999;
}

/* ================= MOBILE MENU ================= */
@media (max-width: 768px) {

  #menu-btn {
      display: block;
      position: absolute;
      top: 18px;
      right: 20px;
  }

  /* NAV HIDDEN BY DEFAULT */
  .navbar {
      position: fixed;
      top: 0;
      right: -320px;
      
      width: 260px;
      background: rgba(0,0,0,0.9);
      backdrop-filter: blur(8px);
      padding: 80px 20px;
      flex-direction: column;
      gap: 20px;
      border-radius: 0 0 0 20px;
      transition: right 0.35s ease;
      display: flex;
  }

  .navbar.active {
      right: 0;
  }

  .navbar a {
      background: rgba(255,255,255,0.15);
      font-size: 18px;
      border-radius: 12px;
      display: block;
  }

  body {
      padding-top: 90px; /* safe for header */
  }
}

/* ================= PRODUCT PAGE ================= */

.product-list-page {
   
    text-align: center;
    min-height: 100vh;
}


.product-title {
    font-size: 40px;
    margin-bottom: 40px;
    color: #fff;
}

.product-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

/* ✅ CARD FIX (REMOVE FIXED WIDTH) */
.product-card {
  
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255, 255, 255, .2);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, .2);
  color: #fff;
  border-radius: 15px;
  padding: 20px;
  transition: 0.3s ease;
  /* ⭐ Add this */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
 
 
}

/* ✅ HOVER EFFECT */
.product-card {
  transition: all 0.3s ease;
  position: relative;
  
}

/* ✅ GLOW ON HOVER */
.product-card:hover {
  background-color: linear-gradient(0deg,rgba(34, 193, 195, 1) 0%, rgba(253, 187, 45, 1) 100%);;   /* Optional – you can remove if you want only glow */
  transform: translateY(-10px) scale(1.03);

  box-shadow:
    0 0 20px rgba(255, 215, 0, 0.9),
    0 0 45px rgba(255, 215, 0, 0.7),
    0 0 70px rgba(255, 215, 0, 0.6);
  transform: translateY(-10px);
}

.product-img-small {
    width: 100%;
    max-width: 200px;
    border-radius: 12px;
    margin-bottom: 15px;
}

.size {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    color: gold;
}

.product-desc-small {
    font-size: 16px;
    color: #eee;
    line-height: 1.5;
    margin-bottom: 20px;
}

.order-btn-small {
    display: inline-block;
    background: #00c853;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 0 15px rgba(0,200,83,0.6);
    transition: 0.3s;
     width: fit-content;       /* 🔥 stops stretching */
    align-self: center;       /* 🔥 centers in card */
}

@media (max-width: 768px) {
    .order-btn-small {
        width: auto;          /* 🔥 keep normal size */
        padding: 12px 22px;
    }
}


.order-btn-small:hover {
    background: #00e676;
}

/* Back Button */
.back-btn {
  text-align: center;
  margin-top: 40px;
}

.back-btn a {
  padding: 14px 30px;
  background: #ffd700;
  color: #000;
  font-size: 16px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.back-btn a:hover {
  background: #fff;
}

/* 📱 PRODUCT CARD – MOBILE FIX */
/* ================= PRODUCT CARD MOBILE SAFE ================= */
@media (max-width: 768px) {

  .product-card {
    padding: 14px;
    border-radius: 12px;
  }

 @media (max-width: 600px) {
  .product-img-small {
    width: 100%;
    height: auto;
  }
}

  .order-btn-small {
    width: 100%;
    text-align: center;
     width: fit-content;       /* 🔥 stops stretching */
    align-self: center;       /* 🔥 centers in card */
    
    
  }
}

.more-info-text {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 12px;
  font-size: 20px;
  color: #fff;
  
}

.more-info-text strong {
  color: gold;
}
@media (max-width: 768px) {
  .more-info-text {
    font-size: 14px;
    margin-top: 30px;
    margin-bottom: 10px;
  }
}