/* ===================================
   Drinkable Coffee - Custom Styles
   =================================== */

/* ===================================
   CSS Variables & Color Scheme
   =================================== */
:root {
  /* Coffee Color Palette */
  --primary-brown: #6f4e37;
  --dark-brown: #3e2723;
  --light-brown: #a67c52;
  --cream: #f5e6d3;
  --off-white: #faf8f5;
  --gold: #d4af37;

  /* Neutral Colors */
  --dark: #1a1a1a;
  --gray: #6c757d;
  --light-gray: #f8f9fa;

  /* Typography */
  --font-heading: "Playfair Display", serif;
  --font-body: "Poppins", sans-serif;

  /* Spacing */
  --section-padding: 100px;
  --section-padding-mobile: 60px;

  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.3s ease;
}

/* ===================================
   Global Styles
   =================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  background-color: var(--off-white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
}

a {
  text-decoration: none;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
}

section {
  padding: var(--section-padding) 0;
}

/* ===================================
   Navigation Bar
   =================================== */
.navbar {
  padding: 20px 0;
  transition: var(--transition-smooth);
  background-color: transparent;
}
.btn-hero-primary {
  background-color: var(--primary-brown);
  border: 0.5px solid var(--primary-brown);
  color: white;
}

.btn-hero-primary:hover {
  color: black;
  border: 0.5px solid var(--primary-brown);
}
.navbar.scrolled {
  background-color: rgba(26, 26, 26, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  padding: 15px 0;
  backdrop-filter: blur(10px);
}

.navbar-brand {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: white !important;
  transition: var(--transition-fast);
}

.navbar-brand:hover {
  color: var(--gold) !important;
  transform: scale(1.02);
}

.brand-text {
  position: relative;
  display: inline-block;
}

.nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 400;
  font-size: 1rem;
  margin: 0 15px;
  padding: 8px 0 !important;
  position: relative;
  transition: var(--transition-fast);
  text-transform: capitalize;
}

.nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
  width: 100%;
}

.nav-link:hover {
  color: var(--gold) !important;
}

.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 8px;
}

.navbar-toggler:focus {
  box-shadow: none;
}
#cartCount {
  position: absolute;
  font-size: 10px;
  color: yellow;
}
/* ===================================
   Hero Section
   =================================== */
.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #1a110e;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 70% 50%,
    rgba(111, 78, 55, 0.15) 0%,
    rgba(26, 17, 14, 0.4) 100%
  );
  z-index: 1;
}

/* Animated Particles */
.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.particle {
  position: absolute;
  color: rgba(212, 175, 55, 0.2);
  font-size: 1.5rem;
  animation: floatParticle 15s infinite linear;
}

.item-1 {
  top: 15%;
  left: 10%;
  animation-duration: 18s;
}

.item-2 {
  top: 60%;
  left: 5%;
  animation-duration: 22s;
  animation-delay: -5s;
}

.item-3 {
  top: 20%;
  left: 85%;
  animation-duration: 20s;
  animation-delay: -2s;
}

.item-4 {
  top: 75%;
  left: 90%;
  animation-duration: 25s;
  animation-delay: -10s;
}

.item-5 {
  top: 40%;
  left: 45%;
  animation-duration: 30s;
  animation-delay: -15s;
}

@keyframes floatParticle {
  0% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    transform: translate(100px, -100px) rotate(360deg);
    opacity: 0;
  }
}

.hero-container {
  position: relative;
  z-index: 5;
}

/* Compatibility aliases for store.html hero markup */
.hero-content {
  position: relative;
  z-index: 5;
}

/* HTML in store.html uses `.hero-title` / `.hero-subtitle` — map them to existing hero styles */
.hero-title {
  font-family: "Playfair Display", serif;
  font-size: 4.5rem;
  font-weight: 800;
  color: white;
  line-height: 1.1;
  margin-bottom: 30px;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 550px;
  margin-bottom: 40px;
  line-height: 1.8;
}

/* Decor items in store.html use `decor-item` not `particle` */
.decor-item {
  position: absolute;
  color: rgba(212, 175, 55, 0.15);
  font-size: 1.5rem;
  animation: floatParticle 18s infinite linear;
  pointer-events: none;
}

/* The page uses `scroll-indicator` instead of `scroll-down` */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 5;
}

/* Small utility classes used in HTML */
.text-gold {
  color: var(--gold) !important;
}

.opacity-10 {
  opacity: 0.1 !important;
}
.hero-tag {
  display: inline-block;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.hero-main-title {
  font-family: "Playfair Display", serif;
  font-size: 4.5rem;
  font-weight: 800;
  color: white;
  line-height: 1.1;
  margin-bottom: 30px;
}

.shine-text {
  background: linear-gradient(
    120deg,
    var(--gold) 0%,
    #fff 50%,
    var(--gold) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 4s linear infinite;
}

@keyframes shine {
  to {
    background-position: 200% center;
  }
}

.hero-lead {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 550px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-cta-group {
  display: flex;
  gap: 20px;
}

.btn-hero-gold {
  background: var(--gold);
  color: #1a110e;
  padding: 16px 35px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--gold);
}

.btn-hero-gold:hover {
  background: transparent;
  color: var(--gold);
  transform: translateY(-5px);
}

.btn-hero-outline {
  background: transparent;
  color: white;
  padding: 16px 35px;
  border-radius: 50px;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.btn-hero-outline:hover {
  border-color: white;
  transform: translateY(-5px);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 30px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  color: white;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-border {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
}

/* Visual Content Styles */
.hero-main-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.visual-circle {
  position: absolute;
  width: 110%;
  height: 110%;
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  z-index: -1;
}

.hero-leaf {
  position: absolute;
  width: 120px;
  z-index: 1;
  pointer-events: none;
  filter: blur(1px);
}

.leaf-1 {
  top: -20px;
  right: -20px;
  transform: rotate(45deg);
  animation: leafFloat1 8s infinite ease-in-out;
}

.leaf-2 {
  bottom: 0px;
  left: -40px;
  transform: rotate(-30deg);
  animation: leafFloat2 10s infinite ease-in-out;
}

@keyframes leafFloat1 {
  0%,
  100% {
    transform: rotate(45deg) translate(0, 0);
  }

  50% {
    transform: rotate(50deg) translate(15px, -15px);
  }
}

@keyframes leafFloat2 {
  0%,
  100% {
    transform: rotate(-30deg) translate(0, 0);
  }

  50% {
    transform: rotate(-35deg) translate(-20px, 10px);
  }
}

.hero-png-cup {
  width: 100%;
  height: auto;
  z-index: 2;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.8));
  animation: cupFloat 6s infinite ease-in-out;
}

@keyframes cupFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(2deg);
  }
}

.floating-info-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 15px 25px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
}

.card-1 {
  top: 20%;
  right: -30px;
}

.card-2 {
  bottom: 30%;
  left: -30px;
}

.floating-info-card span {
  color: white;
  font-weight: 500;
  font-size: 0.9rem;
}

.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 5;
}

.mouse {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
  0% {
    transform: translate(-50%, 0);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, 15px);
    opacity: 0;
  }
}

/* ===================================
   Section Styles
   =================================== */
.section-label {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary-brown);
  margin-bottom: 15px;
  position: relative;
  padding-left: 60px;
}

.section-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 2px;
  background: var(--gold);
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--dark-brown);
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

.section-text {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.8;
}

/* ===================================
   About Section
   =================================== */
.about-section {
  background-color: var(--off-white);
}

.about-image-wrapper {
  position: relative;
}

.about-image-wrapper img {
  border-radius: 20px;
  transition: var(--transition-smooth);
}

.about-image-wrapper:hover img {
  transform: scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.floating-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: white;
  padding: 20px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 15px;
  animation: float 3s ease-in-out infinite;
}

.floating-badge i {
  font-size: 2rem;
  color: var(--primary-brown);
}

.floating-badge span {
  font-weight: 600;
  color: var(--dark-brown);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.about-features {
  margin-top: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.feature-item i {
  color: var(--gold);
  font-size: 1.3rem;
}

.feature-item span {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--dark);
}

/* ===================================
   Products Section
   =================================== */
.products-section {
  background-color: white;
}

.product-card {
  background: white;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition-smooth);
  height: 100%;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(111, 78, 55, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-fast);
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-content {
  padding: 9px 25px;
  background-color: transparent;
}

.product-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark-brown);
  margin-bottom: 10px;
}

.product-description {
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 8px;
}

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

.product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-brown);
}

.product-rating {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold);
}

.product-category {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: white;
  background: var(--primary-brown);
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.btn-add-cart {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  background: var(--gold);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-add-cart:hover {
  background: var(--primary-brown);
  color: white;
  transform: rotate(360deg);
}

/* ===================================
   Story Section (Parallax)
   =================================== */
.story-section {
  background-image: url("https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?w=1920");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  padding: 120px 0;
}

.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(62, 39, 35, 0.85);
}

.story-section .container {
  position: relative;
  z-index: 2;
}

/* ===================================
   Features Section
   =================================== */
.features-section {
  background-color: var(--light-gray);
}

.feature-box {
  padding: 40px 30px;
  background: white;
  border-radius: 15px;
  transition: var(--transition-smooth);
  height: 100%;
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-brown), var(--light-brown));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: var(--transition-fast);
}

.feature-box:hover .feature-icon {
  transform: rotateY(360deg);
}

.feature-icon i {
  font-size: 2rem;
  color: white;
}

.feature-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark-brown);
  margin-bottom: 15px;
}

.feature-text {
  font-size: 0.95rem;
  color: var(--gray);
  margin: 0;
}

/* ===================================
   Contact Section
   =================================== */
.contact-section {
  background-color: var(--off-white);
}

.contact-info {
  margin-top: 30px;
}

.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-item i {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-brown);
  margin-bottom: 5px;
}

.contact-item p {
  font-size: 0.95rem;
  color: var(--gray);
  margin: 0;
}

.contact-form {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-form .form-control {
  padding: 15px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 1rem;
  transition: var(--transition-fast);
}

.contact-form .form-control:focus {
  border-color: var(--primary-brown);
  box-shadow: 0 0 0 0.2rem rgba(111, 78, 55, 0.15);
}

/* ===================================
   Footer
   =================================== */
.footer-section {
  background: var(--dark-brown);
  color: white;
  padding: 60px 0 30px;
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.footer-text {
  font-size: 0.95rem;
  opacity: 0.8;
  line-height: 1.7;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition-fast);
}

.social-links a:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-3px);
}

.footer-heading {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 5px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form .form-control {
  flex: 1;
  padding: 12px 20px;
  border: none;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.newsletter-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-form .form-control:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.15);
}

.newsletter-form .btn {
  padding: 12px 30px;
  border-radius: 50px;
  white-space: nowrap;
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 40px 0 20px;
}

.copyright {
  font-size: 0.9rem;
  opacity: 0.7;
  margin: 0;
}

.copyright i {
  color: #e74c3c;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 991px) {
  section {
    padding: var(--section-padding-mobile) 0;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .about-content {
    padding-left: 0 !important;
  }

  .story-section,
  .hero-section {
    background-attachment: scroll;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-buttons .btn {
    padding: 12px 30px;
    font-size: 0.95rem;
    display: block;
    margin-bottom: 15px;
  }

  .hero-buttons .btn:last-child {
    margin-bottom: 0;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-label {
    padding-left: 40px;
  }

  .section-label::before {
    width: 30px;
  }

  .product-image {
    height: 220px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form .btn {
    width: 100%;
  }
}

/* ===================================
   Search & Filter Styles
   =================================== */
.search-wrapper {
  position: relative;
  max-width: 500px;
  margin: 0 auto 30px;
  z-index: 1001;
  /* Ensure suggestions are above other elements */
}

.search-input {
  height: 55px;
  padding: 0 50px;
  border-radius: 50px !important;
  border: 2px solid rgba(111, 78, 55, 0.1) !important;
  background: white !important;
  font-size: 1.1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.search-input:focus {
  border-color: var(--primary-brown) !important;
  box-shadow: 0 15px 40px rgba(111, 78, 55, 0.1);
  transform: translateY(-2px);
}

.search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-brown);
  font-size: 1.2rem;
  z-index: 10;
}

.search-suggestions {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 100%;
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  display: none;
  z-index: 9999;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.suggestion-item {
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  transition: all 0.2s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.suggestion-item:last-child {
  border-bottom: none;
}

.suggestion-item:hover {
  background: rgba(111, 78, 55, 0.05);
  padding-left: 25px;
}

.suggestion-img {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  object-fit: cover;
  background: #f8f9fa;
}

.suggestion-info {
  display: flex;
  flex-direction: column;
}

.suggestion-name {
  font-weight: 600;
  color: var(--dark-brown);
  font-size: 0.95rem;
}

.suggestion-category {
  font-size: 0.75rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Category Pills Enhancement */
#pills-tab {
  justify-content: center;
  margin-bottom: 40px;
}

#pills-tab .nav-link {
  padding: 8px 20px !important;
  border-radius: 50px;
  color: var(--primary-brown) !important;
  background: white;
  /* color: black !important; */
  border: 1px solid rgba(111, 78, 55, 0.1);
  font-size: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
}

#pills-tab .nav-link.active {
  background: var(--primary-brown) !important;
  color: white !important;
  border-color: var(--primary-brown);
  box-shadow: 0 10px 20px rgba(111, 78, 55, 0.2);
}

#pills-tab .nav-link:hover:not(.active) {
  background: rgba(111, 78, 55, 0.05);
  transform: translateY(-2px);
}

@media (max-width: 767px) {
  #pills-tab {
    gap: 10px !important;
  }

  #pills-tab .nav-link {
    padding: 8px 20px;
    font-size: 0.9rem;
  }
}

/* ===================================
   Custom Animations
   =================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Smooth transitions for all interactive elements */
button,
.btn,
a,
input,
textarea {
  transition: var(--transition-fast);
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-brown);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--dark-brown);
}

#cartSidebar {
  background-color: var(--primary-brown);
}
