@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400;500;600;700&display=swap');

:root {
  --primary-orange: #f26522;
  --primary-orange-light: #ff7a3d;
  --primary-blue: hsl(113, 64%, 45%);
  --primary-blue-dark: #000000;
  --bg-color: #f4f6f9;
  --text-dark: #2c3e50;
  --text-gray: #7f8c8d;
  --text-light: #ffffff;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
  --border-radius: 12px;
  --border-radius-lg: 20px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Hind Siliguri', sans-serif;
  background-color: #e5e9f0;
  /* Darker outside the app container for contrast */
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* App Container for Desktop to look like Premium Mobile */
.app-container {
  max-width: 480px;
  margin: 0 auto;
  background-color: var(--bg-color);
  min-height: 100vh;
  position: relative;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.15);
  padding-bottom: 80px;
  /* For bottom nav */
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

/* Top Bar */
.top-bar {
  background: linear-gradient(90deg, #d35400, #e67e22);
  color: white;
  padding: 8px 0;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  overflow: hidden;
  display: flex;
}



.top-bar-marquee {
  display: flex;
  white-space: nowrap;
  animation: marqueeTopBar 15s linear infinite;
}

@keyframes marqueeTopBar {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}




/* Header */
header {
  background: var(--primary-blue-dark);

  padding: 12px 15px;
  position: sticky;
  top: 0;
  z-index: 9998;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.menu-btn {
  color: white;
  font-size: 1.4rem;
  cursor: pointer;
  transition: transform 0.2s, opacity 0.2s;
}

.menu-btn:active {
  transform: scale(0.9);
  opacity: 0.8;
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
}

.logo span {
  color: var(--primary-orange);
}

.cart-icon {
  color: white;
  font-size: 1.3rem;
  position: relative;
  transition: transform 0.3s ease;
}

.cart-icon:active {
  transform: scale(0.9);
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -8px;
  background-color: var(--primary-orange);
  color: white;
  font-size: 0.65rem;
  padding: 1px 4px;
  border-radius: 20px;
  font-weight: 700;
  box-shadow: 0 2px 5px rgba(242, 101, 34, 0.4);
  border: 1.5px solid var(--primary-blue);
  min-width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Search Bar */
.search-bar {
  display: flex;
  height: 45px;
  background: white;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.search-bar input {
  flex: 1;
  padding: 0 20px;
  border: none;
  outline: none;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text-dark);
}

.search-bar button {
  background: var(--primary-orange);
  color: white;
  border: none;
  padding: 0 20px;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background 0.3s ease;
}

.search-bar button:active {
  background: var(--primary-orange-light);
}

/* Carousel */
.carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #fff;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-track img {
  width: 100%;
  height: 180px;
  flex: 0 0 100%;
  display: block;
  object-fit: cover;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  color: var(--primary-blue);
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(4px);
}

.carousel-nav.prev {
  left: 15px;
}

.carousel-nav.next {
  right: 15px;
}

.carousel-dots {
  position: absolute;
  bottom: 15px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--primary-orange);
  width: 20px;
  border-radius: 10px;
}

/* Categories */
.categories {
  padding: 25px 20px;
  background: white;
  margin-top: -10px;
  border-radius: 20px 20px 0 0;
  position: relative;
  z-index: 10;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.03);
}

.categories h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-dark);
  text-align: center;
}

.cat-scroll {
  display: flex;
  overflow-x: auto;
  gap: 15px;
  padding-bottom: 10px;
  scrollbar-width: none;
}

.cat-scroll::-webkit-scrollbar {
  display: none;
}

.cat-item {
  min-width: 85px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.cat-icon {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.8), 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.cat-item:active .cat-icon {
  transform: scale(0.95);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.cat-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.cat-name {
  font-size: 0.85rem;
  color: var(--text-dark);
  font-weight: 600;
  white-space: nowrap;
}

/* Flash Sale */
.flash-sale {
  margin: 20px;
  background: linear-gradient(135deg, #f26522 0%, #e74c3c 100%);
  border-radius: var(--border-radius-lg);
  padding: 25px 20px;
  color: white;
  box-shadow: 0 10px 25px rgba(242, 101, 34, 0.3);
  position: relative;
  overflow: hidden;
}

/* Decorative lightning background effect */
.flash-sale::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
  border-radius: 50%;
}

.flash-header {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.flash-header i {
  color: #f1c40f;
  animation: pulse-flash 1.5s infinite;
}

@keyframes pulse-flash {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(241, 196, 15, 0));
  }

  50% {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(241, 196, 15, 0.8));
  }

  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(241, 196, 15, 0));
  }
}

.countdown {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
  font-weight: bold;
}

.time-box {
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary-orange);
  padding: 8px 15px;
  border-radius: 8px;
  font-size: 1.2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  min-width: 45px;
  text-align: center;
}

.product-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--border-radius);
  padding: 15px;
  display: flex;
  gap: 15px;
  align-items: center;
  box-shadow: var(--shadow-md);
  color: var(--text-dark);
  position: relative;
  z-index: 2;
}

.product-card img {
  width: 90px;
  height: 90px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid #eee;
}

.product-info {
  flex: 1;
}

.product-info h3 {
  font-size: 0.95rem;
  margin-bottom: 8px;
  line-height: 1.4;
  font-weight: 600;
}

.price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.current-price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary-orange);
}

.old-price {
  text-decoration: line-through;
  font-size: 0.85rem;
  color: #95a5a6;
}

.save-badge {
  background: #ffeaa7;
  color: #d35400;
  font-size: 0.75rem;
  padding: 3px 8px;
  border-radius: 12px;
  font-weight: 700;
}

.btn-add-cart {
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-light));
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(242, 101, 34, 0.3);
}

.btn-add-cart:active {
  transform: scale(0.98);
}

/* Bottom Nav */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-around;
  padding: 10px 10px 15px;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-item {
  color: var(--text-gray);
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  font-size: 0.62rem;
  gap: 3px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

.nav-item i {
  font-size: 1.3rem;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-item.active {
  color: var(--primary-blue);
}

.nav-item.active i {
  transform: translateY(-3px) scale(1.1);
  color: var(--primary-orange);
}

.nav-item.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  width: 20px;
  height: 3px;
  background: var(--primary-orange);
  border-radius: 3px;
}

/* Floating Action */
.floating-chat {
  position: fixed;
  bottom: 90px;
  right: 50%;
  transform: translateX(200px);
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(46, 204, 113, 0.4);
  z-index: 99;
  cursor: pointer;
  animation: float-pulse 2s infinite;
  text-decoration: none;
}

.floating-chat i {
  font-size: 2rem;
  color: white;
}

@keyframes float-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(46, 204, 113, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
  }
}

@media (max-width: 480px) {
  .floating-chat {
    right: 20px;
    transform: none;
  }

  .flash-sale {
    margin: 10px;
    padding: 15px 10px;
    border-radius: 12px;
  }

  .special-offers {
    padding: 15px 10px;
  }

  .so-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }

  .so-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    padding: 0;
  }

  .so-info {
    padding: 8px !important;
  }

  .so-card-title {
    font-size: 0.72rem !important;
    margin-bottom: 4px !important;
    line-height: 1.2 !important;
  }

  .so-current-price {
    font-size: 0.95rem !important;
  }

  .so-btn-outline,
  .so-btn-solid {
    padding: 6px !important;
    font-size: 0.72rem !important;
    height: 34px;
  }

  .so-urgency {
    font-size: 0.65rem !important;
    margin-bottom: 8px !important;
  }

  .top-bar-marquee {
    font-size: 0.75rem;
  }
}

/* Special Offers Section */
.special-offers {
  padding: 25px 15px;
  background: #fdfdfd;
}

.so-header {
  text-align: center;
  margin-bottom: 20px;
}

.so-title {
  font-size: 1.6rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.so-title i {
  color: var(--primary-orange);
  transform: rotate(-45deg);
}

.so-countdown {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: #555;
  font-weight: 600;
}

.so-time-box {
  background: #e74c3c;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.95rem;
}

.so-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 8px !important;
}

.so-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #f1f5f9;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: transform 0.2s;
}

.so-card:active {
  transform: scale(0.98);
}

.so-img-wrapper {
  position: relative;
  background: #f8fafc;
  overflow: hidden;
}

.so-img-wrapper img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.so-info {
  padding: 8px 10px;
  flex: 1;
}

.so-card-title {
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.3;
  height: 2.6em;
  overflow: hidden;
  color: #1e293b;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.so-price-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  padding: 0 10px;
}

.so-current-price {
  color: var(--primary-orange);
  font-weight: 800;
  font-size: 1rem;
}

.so-current-price::before {
  content: '৳';
  font-size: 0.8rem;
}

.so-old-price {
  color: #94a3b8;
  text-decoration: line-through;
  font-size: 0.75rem;
}

.so-btn-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 10px 12px;
}

.so-btn-outline {
  width: 100%;
  background: white;
  color: var(--primary-orange);
  border: 1.5px solid var(--primary-orange);
  padding: 6px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.so-btn-solid {
  width: 100%;
  background: var(--primary-orange);
  color: white;
  border: none;
  padding: 8px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 4px 8px rgba(242, 101, 34, 0.2);
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 35px 20px 40px;
  background-color: var(--bg-color);
  text-align: center;
}

.wcu-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-blue-dark);
  margin-bottom: 25px;
}

.wcu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.wcu-card {
  background: white;
  border-radius: 12px;
  padding: 25px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.wcu-icon-wrap {
  width: 65px;
  height: 65px;
  background: #fff5f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.wcu-icon-wrap i {
  font-size: 1.6rem;
  color: var(--primary-orange);
}

.wcu-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.wcu-card p {
  font-size: 0.8rem;
  color: var(--text-gray);
  line-height: 1.5;
}

/* Testimonials Section */
.customer-reviews {
  padding: 35px 15px;
  background-color: #eff1f5;
  text-align: center;
}

.reviews-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-blue-dark);
  margin-bottom: 25px;
}

.reviews-scroll {
  display: flex;
  overflow-x: auto;
  gap: 15px;
  padding-bottom: 15px;
  scrollbar-width: none;
}

.reviews-scroll::-webkit-scrollbar {
  display: none;
}

.review-card {
  min-width: 280px;
  background: white;
  border-radius: 12px;
  padding: 20px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
}

.review-stars {
  color: var(--primary-orange);
  font-size: 1rem;
  margin-bottom: 10px;
}

.review-text {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.review-profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 45px;
  height: 45px;
  background: var(--primary-blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold;
}

.review-author {
  display: flex;
  flex-direction: column;
}

.review-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
}

.review-date {
  font-size: 0.75rem;
  color: #999;
}

/* Home Blog Section */
.home-blog {
  padding: 30px 20px 40px;
  background-color: #f8f9fa;
}

.home-blog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.home-blog-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary-blue-dark);
}

.home-blog-link {
  font-size: 0.9rem;
  color: var(--primary-orange);
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

.home-blog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.02);
  display: block;
  text-decoration: none;
}

.home-blog-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.home-blog-content {
  padding: 20px;
}

.home-blog-date {
  font-size: 0.8rem;
  color: #7f8c8d;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.home-blog-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.4;
}

.home-blog-card p {
  font-size: 0.85rem;
  color: var(--text-gray);
  line-height: 1.6;
}

/* Video Gallery Section */
.video-gallery {
  padding: 30px 15px 40px;
  background-color: #fdfdfd;
  text-align: center;
}

.video-gallery-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-blue-dark);
  margin-bottom: 25px;
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.video-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  aspect-ratio: 1.4;
}

.video-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: rgba(228, 106, 56, 0.9);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 10px rgba(228, 106, 56, 0.4);
  transition: transform 0.2s;
  padding-left: 3px;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.video-card:active .video-play-btn {
  transform: translate(-50%, -50%) scale(0.9);
}

.video-title-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 15px 5px 8px;
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
}

/* Trust CTA Section */
.trust-cta {
  background: var(--primary-orange);
  color: white;
  padding: 40px 20px;
  text-align: center;
}

.trust-cta h2 {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 15px;
}

.trust-cta p {
  font-size: 0.95rem;
  opacity: 0.95;
  margin-bottom: 30px;
  line-height: 1.5;
}

.trust-features {
  display: flex;
  justify-content: space-between;
  margin-bottom: 35px;
  padding: 0 10px;
}

.tf-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.tf-item i {
  font-size: 1.6rem;
}

.tf-item span {
  font-size: 0.75rem;
  font-weight: 600;
}

.trust-cta-btns {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 300px;
  margin: 0 auto;
}

.btn-shop-now {
  background: var(--primary-blue);
  color: white;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(27, 54, 121, 0.3);
  text-decoration: none;
  display: block;
  transition: transform 0.2s;
}

.btn-shop-now:active {
  transform: scale(0.98);
}

.btn-contact-us {
  background: rgba(255, 255, 255, 0.25);
  color: white;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.2s;
}

.btn-contact-us:active {
  background: rgba(255, 255, 255, 0.35);
}

/* Main Site Footer */
.main-footer {
  background: var(--primary-blue);
  color: white;
  padding: 40px 20px 100px;
  /* 100px bottom padding to clear the sticky bottom nav */
}

.main-footer-brand {
  margin-bottom: 35px;
}

.main-footer-logo {
  font-size: 2.2rem;
  font-weight: 900;
  color: white;
  margin-bottom: 20px;
}

.main-footer-logo span {
  color: var(--primary-orange);
}

.main-footer-desc {
  font-size: 0.9rem;
  color: #c5d0e6;
  line-height: 1.7;
  margin-bottom: 20px;
}

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

.main-footer-social a {
  color: white;
  font-size: 1.2rem;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-footer-social a:active {
  color: var(--primary-orange);
}

.footer-section {
  margin-bottom: 30px;
}

.footer-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: white;
  margin-bottom: 18px;
}

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

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

.footer-links a {
  color: #c5d0e6;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.footer-links a:active {
  color: var(--primary-orange);
}

.footer-contact {
  list-style: none;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #c5d0e6;
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.footer-contact i {
  color: white;
  font-size: 1.1rem;
}

/* Sidebar Menu */
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: max(0px, calc(50% - 240px));
  width: 100%;
  max-width: 480px;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
}

.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

.sidebar-menu {
  position: fixed;
  top: 0;
  left: max(0px, calc(50% - 240px));
  width: 320px;
  max-width: 85%;
  height: 100%;
  background: white;
  z-index: 9999;
  box-shadow: 2px 0 15px rgba(0, 0, 0, 0.2);
  transform: translateX(-105%);
  transition: transform 0.3s ease, opacity 0.3s, visibility 0.3s;
  opacity: 0;
  visibility: hidden;
  display: flex;
  flex-direction: column;
}

.sidebar-menu.active {
  transform: translateX(0);
}

.sidebar-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: white;
}

.sb-close {
  background: var(--primary-orange);
  color: white;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 1.2rem;
  cursor: pointer;
}

.sb-logo {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary-blue-dark);
}

.sb-logo span {
  color: var(--primary-orange);
}

.sb-actions {
  display: flex;
  gap: 15px;
}

.sb-actions a {
  color: #555;
  font-size: 1.3rem;
  text-decoration: none;
}

.sb-search {
  padding: 5px 15px 15px 15px;
  border-bottom: 1px solid #eee;
}

.sb-search form {
  display: flex;
  border: 1px solid rgb(255, 255, 255);
  border-radius: 30px;
  overflow: hidden;
}

.sb-search input {
  flex: 1;
  border: none;
  padding: 12px 15px;
  outline: none;
  font-size: 0.95rem;
  font-family: 'Hind Siliguri', sans-serif;
}

.sb-search button {
  background: var(--primary-orange);
  color: white;
  border: none;
  padding: 0 20px;
  cursor: pointer;
  font-size: 1.1rem;
}

.sidebar-content {
  padding: 10px 0;
  flex: 1;
  overflow-y: auto;
  background: white;
}

.sb-link {
  display: block;
  padding: 12px 20px;
  color: #333;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 500;
  transition: background 0.2s;
}

.sb-link:active {
  background: #f8f9fa;
}

.sb-link-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 20px;
}

.sb-link-group .sb-link {
  flex: 1;
  padding-right: 0;
}

.sb-link-group i {
  color: #777;
  font-size: 0.9rem;
  cursor: pointer;
  padding: 10px;
}

/* Auth Styles */
.auth-container {
  padding: 30px 20px;
  min-height: calc(100vh - 150px);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-color);
}

.auth-box {
  background: white;
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  padding: 30px 20px;
}

.auth-header {
  text-align: center;
  margin-bottom: 25px;
}

.auth-header h2 {
  color: var(--primary-blue-dark);
  font-size: 1.8rem;
  margin-bottom: 5px;
}

.auth-header p {
  color: var(--text-gray);
  font-size: 0.9rem;
}

.auth-tabs {
  display: flex;
  border-bottom: 2px solid #eee;
  margin-bottom: 25px;
}

.auth-tab {
  flex: 1;
  text-align: center;
  padding: 10px 0;
  font-weight: 600;
  color: var(--text-gray);
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
}

.auth-tab.active {
  color: var(--primary-orange);
}

.auth-tab.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-orange);
}

.auth-form {
  display: none;
}

.auth-form.active {
  display: block;
  animation: fadeIn 0.4s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

.input-group {
  position: relative;
  margin-bottom: 15px;
}

.input-group i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
}

.input-group input {
  width: 100%;
  padding: 12px 15px 12px 40px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Hind Siliguri', sans-serif;
  outline: none;
  transition: border-color 0.3s;
}

.input-group input:focus {
  border-color: var(--primary-orange);
}

.auth-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  margin-bottom: 20px;
  color: var(--text-gray);
}

.auth-options a {
  color: var(--primary-orange);
  text-decoration: none;
}

.auth-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-light));
  color: white;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(242, 101, 34, 0.3);
  transition: transform 0.2s;
}

.auth-btn:active {
  transform: scale(0.98);
}

/* Sidebar Menu Styles */
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

.sidebar-menu {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  height: 100%;
  background: white;
  z-index: 10001;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
}

.sidebar-menu.active {
  left: 0;
}

.sidebar-top {
  padding: 20px;
  background: var(--primary-blue);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sb-close {
  font-size: 1.2rem;
  cursor: pointer;
}

.sb-logo {
  font-size: 1.6rem;
  font-weight: 800;
}

.sb-logo span {
  color: var(--primary-orange);
}

.sb-search {
  padding: 15px;
  background: #f8fafc;
}

.sb-search form {
  display: flex;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
}

.sb-search input {
  flex: 1;
  padding: 10px 15px;
  border: none;
  outline: none;
  font-size: 0.9rem;
}

.sb-search button {
  padding: 0 15px;
  background: none;
  border: none;
  color: var(--primary-blue);
  cursor: pointer;
}

.sidebar-content {
  flex: 1;
  overflow-y: auto;
  padding: 20px 0;
}

.sb-link {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  color: #1e293b;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid #f1f5f9;
  transition: all 0.2s;
}

.sb-link:active {
  background: #f8fafc;
  color: var(--primary-orange);
}

.sb-link i {
  margin-right: 12px;
  color: var(--primary-orange);
}

body.no-scroll,
html.no-scroll {
  overflow: hidden !important;
  height: 100% !important;
}

/* Responsive Checkout Grid */
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .checkout-grid>div {
    padding: 15px !important;
  }
}