/* Section */
.amado-category-section {
  background: #f8f8f8;
  padding: 100px 0;
  overflow: hidden;
}

.amado-category-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #333;
  position: relative;
  display: inline-block;
}

.amado-category-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #fbb710;
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
}

.amado-category-subtitle {
  color: #666;
  font-size: 16px;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease-in-out;
}

/* Card Styles */
.amado-category-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  position: relative;
  animation: fadeUp 0.8s ease forwards;
  opacity: 0;
}

/* Stagger Animation */
.amado-category-card:nth-child(1) {
  animation-delay: 0.2s;
}
.amado-category-card:nth-child(2) {
  animation-delay: 0.4s;
}
.amado-category-card:nth-child(3) {
  animation-delay: 0.6s;
}
.amado-category-card:nth-child(4) {
  animation-delay: 0.8s;
}

/* Image Hover Zoom */
.amado-category-img {
  overflow: hidden;
  border-radius: 8px;
}

.amado-category-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.amado-category-card:hover .amado-category-img img {
  transform: scale(1.1) rotate(1deg);
}

/* Card Hover Effects */
.amado-category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.amado-category-card h5 {
  font-size: 18px;
  font-weight: 600;
  color: #222;
  margin: 15px 0 0;
  transition: color 0.3s ease;
}

.amado-category-card:hover h5 {
  color: #fbb710;
}

/* Animations */
@keyframes fadeUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    transform: translateY(15px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.amado-trending-products {
  background: #fff;
  padding: 100px 0;
}

.amado-trending-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #333;
}

.amado-trending-subtitle {
  color: #777;
  font-size: 16px;
  margin-bottom: 40px;
}

/* Product Card */
.amado-product-card {
  background: #f9f9f9;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 30px;
  transition: all 0.4s ease;
  cursor: pointer;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
}

.amado-product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* Product Image */
.amado-product-img {
  position: relative;
  overflow: hidden;
}

.amado-product-img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.amado-product-card:hover .amado-product-img img {
  transform: scale(1.1);
}

/* Badge */
.amado-product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #e74c3c;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 30px;
  text-transform: uppercase;
}

/* Product Info */
.amado-product-info {
  padding: 20px;
}

.amado-product-info h5 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px;
  color: #222;
}

.amado-product-info .price {
  font-size: 16px;
  color: #27ae60;
  font-weight: 700;
}

/* style Banner */

.premium-hotdeal-banner {
  background: linear-gradient(145deg, #0f0f0f, #1c1c1c);
  padding: 120px 20px;

  position: relative;
  overflow: hidden;
  color: #fff;
  text-align: center;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

/* Floating Gradient Orbs */
.premium-hotdeal-banner::before,
.premium-hotdeal-banner::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.2), transparent 70%);
  z-index: 0;
  animation: floatOrbs 8s ease-in-out infinite;
}
.premium-hotdeal-banner::before {
  top: -100px;
  left: -100px;
}
.premium-hotdeal-banner::after {
  bottom: -100px;
  right: -100px;
  animation-delay: 4s;
}

@keyframes floatOrbs {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(30px);
  }
}

/* Content */
.premium-hotdeal-content {
  position: relative;
  z-index: 1;
}

.premium-subtitle {
  font-size: 16px;
  letter-spacing: 2px;
  color: #d4af37;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.premium-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #ffd700, #f5f5f5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.premium-text {
  font-size: 18px;
  margin-bottom: 40px;
}
.premium-text span {
  color: #ffd700;
  font-weight: bold;
}

/* Countdown Timer */
.premium-timer {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 40px;
}

.premium-timer div {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  padding: 20px 25px;
  border-radius: 12px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: transform 0.3s ease;
}
.premium-timer div:hover {
  transform: translateY(-5px);
}

.premium-timer span {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #ffd700;
}
.premium-timer p {
  margin: 0;
  font-size: 14px;
  color: #bbb;
}

/* Button */
.premium-btn {
  display: inline-block;
  padding: 14px 40px;
  background: linear-gradient(90deg, #ffd700, #e6c200);
  color: #000;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.premium-btn:hover {
  background: linear-gradient(90deg, #e6c200, #ffd700);

  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

/* Brand accent + nicer active state */
.navbar-light .navbar-nav .nav-link {
  font-weight: 600;
  padding: 0.6rem 0.8rem;
}
.navbar-light .navbar-nav .nav-link:hover {
  color: #f59e0b;
} /* hover */
.navbar-light .navbar-nav .active > .nav-link {
  color: #fbb710;
} /* active */

/* Improve toggler contrast on light bg */
.navbar-light .navbar-toggler {
  border-color: rgba(0, 0, 0, 0.1);
}
/* Make navbar links larger and bold */
.navbar-nav .nav-link {
  color: #000 !important;
  font-size: 1rem; /* bigger text */
  font-weight: 600; /* semi-bold */
  padding: 0.75rem 1rem; /* bigger click area */
}

.navbar-nav .nav-link:hover {
  color: #f59e0b; /* brand hover */
}

.navbar-nav .active > .nav-link {
  color: #fbb710; /* brand active */
}
