/**
* Custom styles for Wholesale Depot
*/
:root {
  --primary: #eb2f06;
  --primary-dark: #c0220a;
  --accent: #ff7c06;
  --dark: #000227;
  --dark-light: #0a0e3a;
}

body {
  font-family: "Inter", sans-serif;
  color: #333;
}

/* Navbar */
.navbar {
  background: #ffffff !important;
  padding: 5px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  transition:
    padding 0.3s ease,
    box-shadow 0.3s ease;
}
.navbar-brand {
  padding: 0;
}
.navbar-brand img {
  height: 60px;
  transition: height 0.3s ease;
}
.navbar .nav-link {
  color: #333 !important;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 1rem !important;
  transition:
    color 0.2s,
    font-size 0.3s ease,
    padding 0.3s ease;
}
.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--primary) !important;
}
.navbar-toggler {
  border-color: rgba(0, 0, 0, 0.2);
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280,0,0,0.6%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Carousel */
.hero-carousel .carousel-item {
  min-height: 600px;
  position: relative;
  overflow: hidden;
}
.hero-carousel .carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-slide-1 {
  background: radial-gradient(ellipse at 30% 40%, #1b4332 0%, var(--dark) 70%);
}
.hero-slide-2 {
  background: radial-gradient(ellipse at 70% 30%, #3a0647 0%, var(--dark) 70%);
}
.hero-slide-3 {
  background: radial-gradient(ellipse at 40% 60%, #1a1a2e 0%, var(--dark) 70%);
}
.hero-slide-4 {
  background: radial-gradient(ellipse at 60% 40%, #4a1a04 0%, var(--dark) 70%);
}

.hero-slide-content {
  position: relative;
  z-index: 2;
  padding-top: 10rem;
  padding-bottom: 7rem;
}

.hero-carousel .carousel-item .hero-icon-wrapper {
  width: 65px;
  height: 65px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: floatIcon 3s ease-in-out infinite;
}
@keyframes floatIcon {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
.icon-green-tea {
  background: linear-gradient(135deg, #2d6a4f, #52b788);
  color: #d8f3dc;
}
.icon-coming-1 {
  background: linear-gradient(135deg, #7b2d8e, #c77dff);
  color: #f3e8ff;
}
.icon-coming-2 {
  background: linear-gradient(135deg, #0f3460, #16c79a);
  color: #e0f7fa;
}
.icon-coming-3 {
  background: linear-gradient(135deg, #d84315, #ff8a65);
  color: #fbe9e7;
}

.hero-carousel h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: #fff;
}
.hero-carousel h1 span {
  background: linear-gradient(135deg, var(--accent), #ffb347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-carousel .slide-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.slide-badge-available {
  background: rgba(40, 167, 69, 0.2);
  color: #52b788;
  border: 1px solid rgba(40, 167, 69, 0.3);
}
.slide-badge-coming {
  background: rgba(108, 117, 125, 0.2);
  color: #adb5bd;
  border: 1px solid rgba(108, 117, 125, 0.3);
}
.hero-carousel .slide-desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 2rem;
}

.btn-hero {
  background: linear-gradient(135deg, var(--accent), #ffb347);
  color: var(--dark);
  font-weight: 700;
  padding: 0.85rem 2.5rem;
  border-radius: 50px;
  border: none;
  font-size: 1.05rem;
  box-shadow: 0 8px 30px rgba(255, 124, 6, 0.4);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(255, 124, 6, 0.55);
  color: var(--dark);
}
.btn-hero-outline {
  background: transparent;
  color: #fff;
  font-weight: 600;
  padding: 0.85rem 2.5rem;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  font-size: 1.05rem;
  transition: all 0.25s;
}
.btn-hero-outline:hover {
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}
.btn-disabled-slide {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
  padding: 0.85rem 2.5rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 1.05rem;
  cursor: not-allowed;
}

/* Decorative orbs on slides */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}
.hero-orb-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -80px;
  background: radial-gradient(circle, rgba(255, 124, 6, 0.12), transparent 70%);
}
.hero-orb-2 {
  width: 300px;
  height: 300px;
  bottom: -60px;
  left: 10%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.04),
    transparent 70%
  );
}
.hero-orb-3 {
  width: 200px;
  height: 200px;
  top: 30%;
  right: 25%;
  background: radial-gradient(circle, rgba(255, 124, 6, 0.08), transparent 70%);
}

/* Right side visual element */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.hero-visual-ring {
  width: 320px;
  height: 320px;
  border: 3px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-visual-ring::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 2px dashed rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}
.hero-visual-ring .ring-icon {
  font-size: 6rem;
  opacity: 0.15;
  color: #fff;
}

/* Carousel controls */
.hero-carousel .carousel-indicators {
  bottom: 20px;
}
.hero-carousel .carousel-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  opacity: 1;
  margin: 0 4px;
  transition: all 0.3s;
}
.hero-carousel .carousel-indicators .active {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.15);
}
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
  width: 38px;
  height: 38px;
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  opacity: 1;
  transition: background 0.3s;
}
.hero-carousel .carousel-control-prev {
  left: 15px;
}
.hero-carousel .carousel-control-next {
  right: 15px;
}
.hero-carousel .carousel-control-prev:hover,
.hero-carousel .carousel-control-next:hover {
  background: rgba(255, 124, 6, 0.3);
}
.hero-carousel .carousel-control-prev-icon,
.hero-carousel .carousel-control-next-icon {
  width: 0.85rem;
  height: 0.85rem;
}

/* Slide animations */
.hero-carousel .carousel-item.active .hero-icon-wrapper {
  animation:
    floatIcon 3s ease-in-out infinite,
    fadeSlideUp 0.8s ease-out;
}
.hero-carousel .carousel-item.active h1 {
  animation: fadeSlideUp 0.8s ease-out 0.1s both;
}
.hero-carousel .carousel-item.active .slide-desc {
  animation: fadeSlideUp 0.8s ease-out 0.2s both;
}
.hero-carousel .carousel-item.active .slide-buttons {
  animation: fadeSlideUp 0.8s ease-out 0.35s both;
}
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Products */
.products-section {
  padding: 5rem 0;
  background: #f8f9fa;
}
.section-title {
  font-weight: 700;
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.section-subtitle {
  color: #6c757d;
  font-size: 1.05rem;
  margin-bottom: 3rem;
}
.product-card {
  border: none;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  height: 100%;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}
.product-card .card-img-top {
  height: 220px;
  object-fit: cover;
  background: #e9ecef;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-img-placeholder {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: #adb5bd;
}
.product-img-placeholder.green-tea {
  background: linear-gradient(135deg, #d4edda, #b7e4c7);
  color: #2d6a4f;
}
.product-img-placeholder.coming-soon {
  background: linear-gradient(135deg, #e9ecef, #dee2e6);
  color: #adb5bd;
}
.product-card .card-body {
  padding: 1.5rem;
}
.product-card .card-title {
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--dark);
}
.product-card .card-text {
  color: #6c757d;
  font-size: 0.9rem;
  line-height: 1.6;
}
.badge-available {
  background: #28a745;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 400;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
}
.badge-coming {
  background: #6c757d;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 400;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
}
.btn-product {
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  padding: 0.5rem 1.5rem;
  font-size: 0.9rem;
  border: none;
  transition: background 0.2s;
}
.btn-product:hover {
  background: var(--primary-dark);
  color: #fff;
}

/* Why Us */
.why-section {
  padding: 7rem 0;
  background: #fff;
}
.why-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 1.25rem;
}
.why-card h5 {
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.why-card p {
  color: #6c757d;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* About */
.about-section {
  padding: 7rem 0;
  background: radial-gradient(ellipse at 60% 40%, #4a1a04 0%, var(--dark) 70%);
  color: #fff;
}
.about-section h2 {
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.about-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.8;
}
.about-highlight {
  background: rgba(255, 124, 6, 0.1);
  border-left: 4px solid var(--accent);
  padding: 1.25rem 1.5rem;
  border-radius: 0 12px 12px 0;
  margin-top: 1.5rem;
}
.about-highlight p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-size: 0.95rem;
}

/* Contact */
.contact-section {
  padding: 7rem 0;
  background: #f8f9fa;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
}
.contact-info-item h6 {
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.15rem;
}
.contact-info-item p {
  color: #6c757d;
  font-size: 0.9rem;
  margin: 0;
}

/* Newsletter Section */
.newsletter-section {
  padding: 5rem 0;
  background: radial-gradient(ellipse at 60% 40%, #4a1a04 0%, var(--dark) 70%);
  position: relative;
  overflow: hidden;
}
.newsletter-section::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 124, 6, 0.12), transparent 70%);
  pointer-events: none;
}
.newsletter-section::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -40px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.04),
    transparent 70%
  );
  pointer-events: none;
}
.newsletter-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #ffb347);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--dark);
  margin: 0 auto 1.5rem;
  box-shadow: 0 12px 40px rgba(255, 124, 6, 0.3);
}
.newsletter-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}
.newsletter-section h2 span {
  background: linear-gradient(135deg, var(--accent), #ffb347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.newsletter-section .newsletter-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.newsletter-form {
  max-width: 520px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.newsletter-form .form-control {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: #fff;
  padding: 0.85rem 1.25rem;
  font-size: 0.95rem;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}
.newsletter-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.newsletter-form .form-control:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 124, 6, 0.15);
  color: #fff;
}
.btn-newsletter {
  background: linear-gradient(135deg, var(--accent), #ffb347);
  color: var(--dark);
  font-weight: 700;
  border: none;
  border-radius: 12px;
  padding: 0.85rem 2rem;
  font-size: 1rem;
  width: 100%;
  box-shadow: 0 8px 30px rgba(255, 124, 6, 0.3);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.btn-newsletter:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255, 124, 6, 0.45);
  color: var(--dark);
}
.newsletter-privacy {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
  margin-top: 1rem;
}
.newsletter-privacy i {
  color: var(--accent);
  margin-right: 0.4rem;
}

/* Copyright Footer */
.copyright-footer {
  background: var(--dark);
  padding: 1.2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.copyright-footer p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.82rem;
  margin: 0;
}
.copyright-footer a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.copyright-footer a:hover {
  color: var(--accent);
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 50px;
  right: 28px;
  z-index: 9999;
}
.whatsapp-float .wa-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  cursor: pointer;
  text-decoration: none;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  position: relative;
  animation: waBounce 2s ease-in-out infinite;
}
.whatsapp-float .wa-btn i {
  animation: waWiggle 3s ease-in-out infinite;
}
.whatsapp-float .wa-btn:hover {
  transform: scale(1.15) rotate(-5deg);
  box-shadow: 0 8px 35px rgba(37, 211, 102, 0.65);
  color: #fff;
  animation: none;
}
.whatsapp-float .wa-btn:hover i {
  animation: waRing 0.6s ease-in-out;
}
.whatsapp-float .wa-btn::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.3);
  animation: waPulse 2s ease-in-out infinite;
}
.whatsapp-float .wa-btn::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.2);
  animation: waPulse 2s ease-in-out 0.6s infinite;
}
@keyframes waPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.6);
    opacity: 0;
  }
}
@keyframes waBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  15% {
    transform: translateY(-8px);
  }
  30% {
    transform: translateY(0);
  }
  45% {
    transform: translateY(-5px);
  }
  60% {
    transform: translateY(0);
  }
}
@keyframes waWiggle {
  0%,
  100% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(14deg);
  }
  20% {
    transform: rotate(-10deg);
  }
  30% {
    transform: rotate(8deg);
  }
  40% {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(0deg);
  }
}
@keyframes waRing {
  0% {
    transform: rotate(0deg) scale(1);
  }
  20% {
    transform: rotate(20deg) scale(1.2);
  }
  40% {
    transform: rotate(-15deg) scale(1.1);
  }
  60% {
    transform: rotate(10deg) scale(1.15);
  }
  80% {
    transform: rotate(-5deg) scale(1.05);
  }
  100% {
    transform: rotate(0deg) scale(1);
  }
}
.whatsapp-float .wa-tooltip {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background: #fff;
  color: #333;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.3s,
    transform 0.3s;
}
.whatsapp-float .wa-tooltip::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #fff;
}
.whatsapp-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* Navbar scrolled state */
.navbar.scrolled {
  padding: 0.3rem 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}
.navbar.scrolled .navbar-brand img {
  height: 50px;
}
.navbar.scrolled .nav-link {
  font-size: 0.88rem;
  padding: 0.3rem 0.8rem !important;
}

/* Scroll smooth */
html {
  scroll-behavior: smooth;
}

@media (max-width: 768px) {
  .hero-carousel .carousel-item {
    min-height: 520px;
  }
  .hero-slide-content {
    padding-top: 7rem;
    padding-bottom: 5rem;
  }
  .hero-carousel h1 {
    font-size: 2.2rem;
  }
  .hero-carousel .carousel-control-prev,
  .hero-carousel .carousel-control-next {
    width: 30px;
    height: 30px;
  }
  .hero-carousel .carousel-control-prev {
    left: 8px;
  }
  .hero-carousel .carousel-control-next {
    right: 8px;
  }
  .hero-icon-wrapper {
    width: 45px !important;
    height: 45px !important;
    font-size: 1.25rem !important;
    border-radius: 12px !important;
  }
  .btn-hero,
  .btn-hero-outline,
  .btn-disabled-slide {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
  }
}