* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}
html::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

body {
  background: #fff;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
body::-webkit-scrollbar {
  display: none;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 8%;
  background: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.logo {
  font-size: 28px;
  font-weight: 700;
  color: #ff4938;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 12px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: inline-block;
}

.nav-links a:hover {
  color: #ff4938;
  background: rgba(255, 87, 34, 0.05);
}

.nav-links a.active-btn {
  background: #ff4938;
  color: #ffffff !important;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(255, 87, 34, 0.25);
}

.logo a {
  text-decoration: none;
  color: inherit;
}

.nav-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.btn {
  padding: 10px 20px;
  border: none;
  border-radius: 50px;
  background: #ff4938;
  color: white;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.btn-outline {
  background: white;
  color: #ff4938;
  border: 2px solid #ff4938;
}

.cart-btn {
  padding: 10px 14px;
}

.page-section {
  padding: 60px 8%;
  min-height: 50vh;
}

.page-section h1 {
  margin-bottom: 24px;
}

.empty-message {
  color: #666;
  margin-bottom: 20px;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 24px;
}

.data-table th,
.data-table td {
  padding: 14px;
  border-bottom: 1px solid #eee;
  text-align: left;
}

.data-table th {
  background: #ff4938;
  color: white;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.product-detail-grid img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.checkout-form {
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.checkout-form button,
.product-detail button {
  padding: 12px 25px;
  border: none;
  background: #ff4938;
  color: white;
  border-radius: 50px;
  cursor: pointer;
  width: fit-content;
}

.profile-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.success-section .primary-btn,
.success-section .secondary-btn {
  margin-right: 10px;
}

@media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    gap: 12px;
  }

  .logo {
    order: 1;
  }

  .nav-buttons {
    order: 2;
  }

  .nav-links {
    order: 3;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 5px 0;
    gap: 8px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    white-space: nowrap;
    padding: 6px 12px;
    font-size: 0.9rem;
  }

  .product-detail-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2.5rem;
  }
}

.hero {
  position: relative;
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-content {
  color: #d20a2e;
  position: relative;
  z-index: 3;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 20px;
}

.hero-fade-element {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
  pointer-events: none;
}

.hero-fade-element.fade-in {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hero-fade-element.fade-out {
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
}

.primary-btn,
.secondary-btn,
.whatsapp-btn {
  padding: 15px 28px;
  border-radius: 50px;
  text-decoration: none;
  margin: 10px;
  font-weight: 600;
  display: inline-block;
}

.primary-btn {
  background: #ff4938;
  color: white;
}

.secondary-btn {
  background: white;
  color: black;
}

.whatsapp-btn {
  background: #25d366;
  color: white;
}

.features {
  padding: 80px 8%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card {
  padding: 40px;
  text-align: center;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.products {
  padding: 80px 8%;
  text-align: center;
}

.products h2 {
  margin-bottom: 40px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

.product-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.product-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.combos-section .product-card img {
  object-position: top center;
}

.product-card h3 {
  margin-top: 15px;
}

.product-card p {
  padding: 15px;
}

.addon-text {
  font-size: 0.88rem;
  padding: 0 20px 15px 20px !important;
  margin-top: -5px;
  line-height: 1.4;
  color: #345766;
  font-weight: 600;
  animation: blinkit-blink 1.2s infinite ease-in-out;
}

.modal-addon-text {
  color: #345766;
  font-weight: 600;
  animation: blinkit-blink 1.2s infinite ease-in-out;
}

@keyframes blinkit-blink {
  0%,
  100% {
    opacity: 1;
    text-shadow: 0 0 2px rgba(52, 87, 102, 0.1);
  }
  50% {
    opacity: 0.45;
    text-shadow: 0 0 8px rgba(52, 87, 102, 0.4);
  }
}

.price {
  font-size: 24px;
  font-weight: bold;
  color: #ff4938;
}

.product-card button {
  margin: 20px;
  padding: 12px 25px;
  border: none;
  background: #ff4938;
  color: white;
  border-radius: 50px;
  cursor: pointer;
}

.instagram {
  padding: 80px 8%;
  text-align: center;
  background: #fff4f4;
}

.insta-btn {
  padding: 15px 30px;
  background: #e1306c;
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  margin-top: 20px;
}

footer {
  background: #111;
  color: white;
  padding: 50px 8%;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.footer-box a {
  display: block;
  margin-top: 10px;
  color: white;
  text-decoration: none;
}

.copyright {
  margin-top: 30px;
  text-align: center;
}

/* User Dropdown Styling */
.user-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: #ff4938;
  border: 2px solid #ff4938;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.3s ease;
}

.dropdown-toggle:hover {
  background: #ff4938;
  color: white;
}

.dropdown-toggle i {
  font-size: 1.2rem;
}

.dropdown-menu {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  margin-top: 10px;
  background: white;
  min-width: 180px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  overflow: hidden;
  z-index: 1000;
  border: 1px solid #f0f0f0;
  animation: slideDown 0.3s ease;
}

.dropdown-menu a {
  color: #333;
  padding: 12px 20px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.dropdown-menu a:hover {
  background: #fff4f4;
  color: #ff4938;
}

.dropdown-menu a i {
  color: #888;
  transition: color 0.2s ease;
}

.dropdown-menu a:hover i {
  color: #ff4938;
}

.user-dropdown:hover .dropdown-menu {
  display: block;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Offers & Promo Styling */
.offers-hero {
  padding: 80px 8%;
  background: linear-gradient(135deg, #ff4938 0%, #ff7846 100%);
  color: white;
  text-align: center;
}

.offers-hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.offers-hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

.offers-promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.promo-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #f7f7f7;
  transition: transform 0.3s ease;
}

.promo-card:hover {
  transform: translateY(-5px);
}

.promo-icon {
  width: 60px;
  height: 60px;
  background: #fff4f4;
  color: #ff4938;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 20px auto;
}

.promo-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #333;
}

.promo-card p {
  color: #666;
  font-size: 0.95rem;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
  color: #333;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 50px;
  height: 4px;
  background: #ff4938;
  margin: 10px auto 0 auto;
  border-radius: 2px;
}

.offer-card {
  position: relative;
}

.offer-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #25d366;
  color: white;
  padding: 6px 12px;
  font-weight: 700;
  border-radius: 50px;
  font-size: 0.85rem;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
  z-index: 10;
}

.price-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.price-original {
  font-size: 1.1rem;
  text-decoration: line-through;
  color: #888;
  font-weight: 500;
}

.btn-outline-filled {
  background: #fff4f4 !important;
  color: #ff4938 !important;
  border: 2px solid #ff4938 !important;
}

.btn-outline-filled:hover {
  background: #ff4938 !important;
  color: white !important;
}

.btn-outline-filled:hover i {
  color: white !important;
}

.wishlist-remove-btn {
  transition:
    transform 0.2s ease,
    color 0.2s ease;
}

.wishlist-remove-btn:hover {
  transform: scale(1.1) !important;
  color: #ff2222 !important;
}

/* One-page section styles */
#home,
#about,
#menu,
#offers,
#why-choose-us,
#contact {
  scroll-margin-top: 90px;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.section-header h2 {
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 15px;
}

.section-header p {
  color: #666;
  font-size: 1.05rem;
  line-height: 1.7;
}

.about-section {
  background: #fafafa;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

/* About Cards with premium popup hover effects */
.about-card {
  background: white;
  border: 1px solid #eee;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.about-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 73, 56, 0.15);
  box-shadow: 0 15px 30px rgba(255, 73, 56, 0.06);
}

.about-card:hover .about-icon {
  animation: bounceIcon 0.6s ease infinite alternate;
}

@keyframes bounceIcon {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-5px);
  }
}

.about-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.about-card h3 {
  margin-bottom: 10px;
  color: #333;
}

.about-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

.about-mission {
  text-align: center;
  font-size: 1.1rem;
  color: #555;
  font-style: italic;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.why-choose-us-section {
  background: radial-gradient(
    circle at top right,
    rgba(255, 87, 34, 0.03),
    #ffffff 70%
  );
}

.why-choose-grid {
  display: grid;
  grid-template-columns: 1fr 420px 1fr;
  gap: 30px;
  align-items: center;
  margin-top: 40px;
}

.why-choose-col {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.why-choose-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  cursor: pointer;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid transparent;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  background: transparent;
}

.why-choose-item:hover {
  background: #ffffff;
  border-color: rgba(255, 73, 56, 0.18);
  box-shadow: 0 20px 40px rgba(255, 73, 56, 0.08);
  transform: translateY(-5px);
}

.left-col .why-choose-item {
  text-align: left;
}

.right-col .why-choose-item {
  text-align: right;
}

.why-choose-item .item-icon {
  background: #ffffff;
  width: 55px;
  height: 55px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.3rem;
  color: #ff4938;
  border: 1.5px solid rgba(255, 73, 56, 0.12);
  box-shadow: 0 4px 12px rgba(255, 73, 56, 0.04);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.why-choose-item .item-content h3 {
  font-size: 1.2rem;
  color: #111;
  margin-bottom: 8px;
  font-weight: 600;
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
}

.left-col .why-choose-item .item-content h3::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #ff4938;
  margin-top: 6px;
  transition: all 0.3s ease;
}

.right-col .why-choose-item .item-content h3::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #ff4938;
  margin-top: 6px;
  margin-left: auto;
  transition: all 0.3s ease;
}

.why-choose-item .item-content p {
  color: #666;
  font-size: 0.92rem;
  line-height: 1.6;
  transition: all 0.3s ease;
}

/* Hover effects */
.left-col .why-choose-item:hover .item-icon {
  background: #ffffff;
  border-color: rgba(255, 73, 56, 0.3);
  transform: translateX(-28px) scale(1.08) rotate(-6deg);
  box-shadow: 0 8px 20px rgba(255, 73, 56, 0.2);
}

.right-col .why-choose-item:hover .item-icon {
  background: #ffffff;
  border-color: rgba(255, 73, 56, 0.3);
  transform: translateX(28px) scale(1.08) rotate(6deg);
  box-shadow: 0 8px 20px rgba(255, 73, 56, 0.2);
}

.why-choose-item:hover .item-content h3 {
  color: #ff4938;
}

.why-choose-item:hover .item-content h3::after {
  width: 50px;
}

.why-choose-center {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  padding: 10px;
}

.why-choose-slider {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border: 6px solid #ffffff;
}

.slider-track {
  display: flex;
  width: 300%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.slider-track img {
  width: 33.333%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.slider-track img:hover {
  transform: scale(1.05);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.slider-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e0e0e0;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.slider-dots .dot.active {
  background: #ff4938;
  width: 24px;
  border-radius: 4px;
}

/* Responsive design */
@media (max-width: 991px) {
  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .why-choose-center {
    order: -1;
    max-width: 360px;
  }

  .why-choose-item {
    text-align: left !important;
    flex-direction: row !important;
    padding: 15px;
  }

  .right-col .why-choose-item {
    text-align: left !important;
    flex-direction: row !important;
  }

  .right-col .why-choose-item .item-content h3::after {
    margin-left: 0;
  }

  .why-choose-col {
    gap: 15px;
  }

  .left-col .why-choose-item:hover .item-icon,
  .right-col .why-choose-item:hover .item-icon {
    transform: scale(1.08) rotate(4deg) !important;
    box-shadow: 0 5px 15px rgba(255, 73, 56, 0.25) !important;
  }
}

.contact-section {
  max-width: 1100px;
  margin: 0 auto;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.contact-info-card {
  background: #fbfbfb;
  border: 1px solid #eee;
  padding: 25px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.contact-info-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 73, 56, 0.15);
  box-shadow: 0 15px 30px rgba(255, 73, 56, 0.06);
  background: white;
}

.contact-info-card:hover .contact-icon {
  animation: bounceIcon 0.6s ease infinite alternate;
}

.contact-info-card a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
  display: block;
}

.contact-info-card a:hover {
  opacity: 0.8;
}

.contact-icon {
  font-size: 2rem;
  color: #ff4938;
  margin-bottom: 15px;
}

.contact-info-card h3 {
  margin-bottom: 8px;
  color: #333;
}

.contact-info-card p {
  color: #666;
  font-size: 0.95rem;
}

.contact-info-card span {
  color: #999;
  font-size: 0.85rem;
}

.alert {
  padding: 15px 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.alert-success {
  background: #e8f5e9;
  border: 1px solid #c8e6c9;
  color: #2e7d32;
}

.alert-error {
  background: #ffebee;
  border: 1px solid #ffcdd2;
  color: #c62828;
}

.alert i {
  font-size: 1.5rem;
}

/* Offers extras */
.offers-badge-top {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.countdown-wrapper {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.countdown-label {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  opacity: 0.9;
}

#countdown-timer {
  display: flex;
  align-items: center;
  gap: 10px;
}

.timer-box {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 10px 15px;
  border-radius: 12px;
  min-width: 65px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timer-box span {
  font-size: 1.6rem;
  font-weight: 700;
}

.timer-box label {
  font-size: 0.75rem;
  opacity: 0.8;
  text-transform: uppercase;
  margin-top: 2px;
}

.timer-divider {
  font-size: 1.5rem;
  font-weight: 700;
}

.coupon-box {
  margin-top: 15px;
  border: 2px dashed #ff4938;
  background: #fff8f6;
  border-radius: 8px;
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
}

.coupon-box:hover {
  background: #ff4938;
  color: white;
  border-style: solid;
}

.coupon-txt {
  font-family: monospace;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.coupon-copy {
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0.8;
}

.filter-tabs-container {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 10px 24px;
  border: 2px solid #eee;
  background: white;
  border-radius: 50px;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
  color: #666;
  transition: all 0.3s ease;
}

.filter-tab:hover,
.filter-tab.active {
  border-color: #ff4938;
  color: #ff4938;
  background: #fff4f4;
}

#toast-notification {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #333;
  color: white;
  padding: 15px 25px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10000;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: translateY(100px);
  opacity: 0;
}

#toast-notification.toast-show {
  transform: translateY(0);
  opacity: 1;
}

#toast-notification i {
  color: #25d366;
  font-size: 1.2rem;
}

/* Premium Fruit Tags & Design Updates */
.fruit-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 73, 56, 0.04);
  color: #333;
  padding: 10px 18px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.95rem;
  border: 1px solid rgba(255, 73, 56, 0.12);
  box-shadow: 0 4px 10px rgba(255, 73, 56, 0.02);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
}

.fruit-tag:hover {
  transform: translateY(-3px);
  background: rgba(255, 73, 56, 0.08);
  border-color: rgba(255, 73, 56, 0.25);
  box-shadow: 0 6px 15px rgba(255, 73, 56, 0.08);
}

.fruit-emoji {
  font-size: 1.25rem;
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fruit-tag:hover .fruit-emoji {
  transform: scale(1.25) rotate(12deg);
}

.fruit-check {
  color: #ff4938;
  font-size: 0.85rem;
  margin-left: 4px;
}

/* --- Product Details Modal Popup Styles --- */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.modal-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.modal-container {
  position: relative;
  background: #fff;
  border-radius: 24px;
  width: 90%;
  max-width: 850px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  padding: 40px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.modal-container::-webkit-scrollbar {
  display: none;
}

.modal-hidden .modal-container {
  transform: scale(0.92) translateY(20px);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  border: none;
  background: #ffffff;
  color: #333333;
  font-size: 1.8rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease;
  z-index: 100;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.modal-close-btn:hover {
  background: #f0f0f0;
  color: #ff4938;
  transform: scale(1.08) rotate(90deg);
}

.modal-body-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 35px;
  align-items: start;
}

.modal-body-content.subscription-layout {
  grid-template-areas:
    "image info"
    "metadata info";
}

.modal-body-content.subscription-layout .modal-image-container {
  grid-area: image;
}

.modal-body-content.subscription-layout .modal-info-col {
  grid-area: info;
}

.modal-body-content.subscription-layout .modal-metadata {
  grid-area: metadata;
  margin-top: 20px;
  margin-bottom: 0;
}

.modal-image-container {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.modal-image-container img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.modal-image-container:hover img {
  transform: scale(1.03);
}

.modal-offer-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #25d366;
  color: white;
  padding: 8px 16px;
  font-weight: 700;
  border-radius: 50px;
  font-size: 0.85rem;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
  z-index: 2;
}

.modal-info-col h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111;
  letter-spacing: -0.5px;
}

.modal-section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  margin-bottom: 12px;
  font-weight: 700;
  color: #222;
  font-size: 1.1rem;
}

.modal-fruits-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.modal-fruit-tag {
  background: rgba(255, 73, 56, 0.04);
  color: #333;
  padding: 8px 14px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 73, 56, 0.12);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.modal-fruit-tag:hover {
  transform: translateY(-2px);
  background: rgba(255, 73, 56, 0.08);
  border-color: rgba(255, 73, 56, 0.2);
}

.modal-disclaimer {
  background: #fdf8e4;
  border-left: 4px solid #ffc107;
  padding: 12px 16px;
  border-radius: 4px 8px 8px 4px;
  margin-bottom: 20px;
  color: #665c3b;
  font-size: 0.9rem;
  line-height: 1.5;
}

.modal-price-container {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
}

.modal-price-original {
  font-size: 1.4rem;
  text-decoration: line-through;
  color: #999;
  font-weight: 500;
}

.modal-price-current {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ff4938;
}

.modal-metadata {
  background: #fbfbfb;
  border-radius: 12px;
  padding: 16px 20px;
  border: 1px solid #f0f0f0;
  margin-bottom: 24px;
}

.modal-metadata-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.modal-metadata-item:last-child {
  margin-bottom: 15px;
}

.modal-meta-label {
  font-weight: 600;
  color: #333;
}

.modal-meta-val-calories {
  background: rgba(255, 73, 56, 0.08);
  color: #ff4938;
  padding: 3px 10px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
}

.modal-meta-val-size {
  background: #e1f5fe;
  color: #0288d1;
  padding: 3px 10px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
}

.modal-nutrition-text {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
  padding-left: 28px;
  margin-top: 4px;
}

.modal-order-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: #25d366;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
  transition: all 0.3s ease;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
}

.modal-order-btn:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

@media (max-width: 768px) {
  .modal-body-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .modal-body-content.subscription-layout {
    grid-template-areas:
      "image"
      "info"
      "metadata";
  }
  .modal-container {
    padding: 30px 20px;
    max-height: 85vh;
  }
  .modal-info-col h1 {
    font-size: 1.8rem;
  }
  .modal-close-btn {
    top: 15px;
    right: 15px;
    width: 34px;
    height: 34px;
    font-size: 1.4rem;
  }
}
