/* Product Page Specific Styles */

/* Product Hero Section */
.product-hero-section {
    width: 100%;
  height: 75vh; /* height 70vh */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;

  /* Background image + overlay gradient */
  background: 
    url("../images/product-image/product-hero-section-banner.png")
      center/cover no-repeat;

  /* Smooth overlay blending */
  background-blend-mode: overlay;
}

.product-hero-section .hero-content h1 {
  color: #f6f3fc;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.product-hero-section .lead {
  color: #b0a8c0;
  font-size: 1.15rem;
  line-height: 1.8;
}

.product-hero-section .hero-image img {
  box-shadow: 0 20px 60px rgba(200, 216, 46, 0.15);
  border: 1px solid rgba(200, 216, 46, 0.2);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Featured Products Section */
.product-featured-section {
  padding: 80px 0;
  background: #050709;
}

.product-featured-section h2 {
  color: #f6f3fc;
  margin-bottom: 30px;
}

.product-featured-section .text-muted {
  color: white !important; 
}

/* Product Card */
.product-card {
  background: #0f1419;
  border: 1px solid rgba(200, 216, 46, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  
}

.product-card:hover {
  border-color: #c8d82e;
  box-shadow: 0 10px 40px rgba(200, 216, 46, 0.15);
  transform: translateY(-5px);
}

.product-card .product-image {
  width: 100%;
  height: 280px;
  padding: 15px;;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0f18 0%, #1a1f28 100%);
}

.product-card .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-card .product-info {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-card .product-info h5 {
  color: #f6f3fc;
  margin-bottom: 12px;
}

.product-card .product-info p {
  color: white !important; 
  flex-grow: 1;
}

.product-price {
  border-top: 1px solid rgba(200, 216, 46, 0.1);
  padding-top: 15px;
}

.product-price span:first-child {
  color: #c8d82e;
}

/* Product Grid Section */
.product-grid-section {
  padding: 80px 0;
  background: #050709;
}

.product-grid-section h2 {
  color: #f6f3fc;
}

/* Product Filter Tabs */
.product-filter-tabs {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  border: 1px solid rgba(200, 216, 46, 0.2);
  color: #b0a8c0;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.filter-btn:hover,
.filter-btn.active {
  background: #c8d82e;
  color: #050709;
  border-color: #c8d82e;
}

/* Product List Item */
.product-list-item {
  background: #0f1419;
  border: 1px solid rgba(200, 216, 46, 0.1);
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s ease;
}

.product-list-item:hover {
  border-color: #c8d82e;
  box-shadow: 0 10px 40px rgba(200, 216, 46, 0.15);
}

.product-list-item h5 {
  color: #f6f3fc;
}

.product-list-item .text-muted {
  color: white !important; 
}

.product-list-item .badge {
  background: rgba(200, 216, 46, 0.15);
  color: #c8d82e;
}

/* Product Features Section */
.product-features-section {
  padding: 80px 0;
  background: #0f1419;
}

.product-features-section h2 {
  color: #f6f3fc;
}

.feature-card {
  background: #050709;
  border: 1px solid rgba(200, 216, 46, 0.1);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: #c8d82e;
  box-shadow: 0 10px 40px rgba(200, 216, 46, 0.15);
  transform: translateY(-5px);
}

.feature-icon {
  color: #c8d82e;
  /* margin-bottom: 20px; */
}

.feature-card h5 {
  color: #f6f3fc;
  margin-bottom: 12px;
}

.feature-card p {
  color: white !important; 
  margin-bottom: 0;
}

.pricing-card {
  background: #0f1419;
  border: 1px solid rgba(200, 216, 46, 0.1);
  border-radius: 12px;
  padding: 40px 30px;
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
}

.pricing-card:hover {
  border-color: #c8d82e;
  box-shadow: 0 10px 40px rgba(200, 216, 46, 0.15);
  transform: translateY(-5px);
}

.pricing-card.featured {
  border-color: #c8d82e;
  box-shadow: 0 20px 60px rgba(200, 216, 46, 0.2);
  transform: scale(1.05);
}

.pricing-card h5 {
  color: #f6f3fc;
  margin-bottom: 15px;
}

.pricing-amount {
  color: #c8d82e;
}

.pricing-features {
  color: white !important; 
  margin: 20px 0;
  list-style: none;
  padding: 0;
}

.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(200, 216, 46, 0.1);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.featured-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #c8d82e;
  color: #050709;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Buttons */
.btn-custom-primary {
  background: #c8d82e;
  color: #050709;
border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-custom-primary:hover {
  background: #d4e356;
  color: #050709;
  box-shadow: 0 10px 30px rgba(200, 216, 46, 0.3);
}

.btn-outline-custom-primary {
  border: 2px solid #c8d82e;
  color: #c8d82e;
  background: transparent;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-custom-primary:hover {
  background: #c8d82e;
  color: #050709;
}

/* Responsive Design */
@media (max-width: 768px) {
 

  .product-hero-section .display-4 {
    font-size: 2rem;
  }

  .product-featured-section,
  .product-grid-section,
  .product-features-section,
  .product-cta-section {
    padding: 50px 0;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .product-filter-tabs {
    gap: 10px;
  }

  .filter-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}
