/* .navbar_custom {
  font-size: 14px;
}
.navbar_custom .nav-link {
  color: black !important;
} */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: "Arial", sans-serif;
  background-color: white;
}

/* main header courosel style */
.carousel-container {
  padding: 20px;
  padding-top: 5%;
  padding-bottom: 0%;
  background-color: #ffffff;
}

.main-carousel-item {
  border-radius: 20px;
  overflow: hidden;
  height: 400px;
  position: relative;
}

.side-card {
  border-radius: 15px;
  overflow: hidden;
  height: 195px;
  position: relative;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .carousel-title {
    font-size: 2rem;
  }
  .carousel-subtitle {
    font-size: 1.8rem;
  }
  .carousel-description {
    font-size: 1.5rem;
  }
  .carousel-content {
    left: 20px;
  }
  .product-images {
    right: 20px;
  }
  .side-card {
    height: 150px;
  }
  .side-card-title {
    font-size: 1.2rem;
  }
}

/* fetures section */
.promo-banner {
  background-color: rgb(255, 255, 255);
  border-bottom: 1px solid #e9ecef;
  padding: 15px 0;
  font-size: 14px;
  font-weight: 500;
}

.promo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 15px;
  color: #333;
  text-align: center;
}

.promo-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  flex-shrink: 0;
}

.promo-icon.green {
  background-color: #28a745;
  color: white;
}

.promo-icon.red {
  background-color: #dc3545;
  color: white;
}

.promo-icon.yellow {
  background-color: #ffc107;
  color: #212529;
}

.promo-text {
  margin: 0;
  line-height: 1.4;
  font-size: 14px;
}

.highlight {
  font-weight: 600;
  color: #333;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .promo-banner {
    padding: 12px 0;
  }

  .promo-item {
    margin-bottom: 10px;
    padding: 8px 10px;
  }

  .promo-item:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  .promo-banner {
    font-size: 13px;
    padding: 10px 0;
  }

  .promo-item {
    gap: 6px;
    padding: 6px 8px;
  }

  .promo-icon {
    width: 18px;
    height: 18px;
    font-size: 11px;
  }
}

@media (max-width: 576px) {
  .promo-banner {
    font-size: 12px;
  }

  .promo-item {
    gap: 5px;
    padding: 5px;
  }

  .promo-icon {
    width: 16px;
    height: 16px;
    font-size: 10px;
  }
}

/* ........... */

/* category section */
.category-section {
  padding: 40px 0;
  background-color: #ffffff;
}

.section-title {
  /* font-size: 2.5rem; */
  font-weight: bold;
  text-align: left;
  margin-bottom: 30px;
  color: #333;
}

.scroll-container {
  position: relative;
  overflow: hidden;
}

.scroll-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.scroll-wrapper::-webkit-scrollbar {
  display: none;
}

.scroll-content {
  display: flex;
  gap: 20px;
  padding: 10px 0;
  min-width: max-content;
}

.scroll-item {
  flex: 0 0 auto;
  width: 200px;
}

.category-card {
  background: white;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border: none;
  height: 100%;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.category-image-container {
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  border-radius: 10px;
}

.category-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.category-title {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
  border: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.scroll-btn:hover {
  background: #f8f9fa;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.scroll-btn svg {
  width: 24px;
  height: 24px;
  fill: #333;
}

.scroll-btn-left {
  left: 10px;
}

.scroll-btn-right {
  right: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .scroll-item {
    width: 160px;
  }

  .category-image-container {
    height: 100px;
  }

  .section-title {
    font-size: 2rem;
  }

  .scroll-btn {
    width: 40px;
    height: 40px;
  }

  .scroll-btn svg {
    width: 20px;
    height: 20px;
  }
  .category-title {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .scroll-item {
    width: 140px;
    height: 230px !important;
  }

  .category-image-container {
    height: 80px;
  }

  .section-title {
    font-size: 1.5rem;
  }
}
/* end category section */

.divider {
  width: 1px;
  height: 20px;
  background-color: #ccc;
  margin: 0;
}

/* product detail cards */
.product-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.product-card .card-img-top {
  height: 200px;
  object-fit: cover;
  border-radius: 15px 15px 0 0;
}

.product-card .card-body {
  padding: 20px;
  text-align: center;
  background-color: rgb(255, 255, 255);
}

.product-card .card-text {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cards-container {
  padding: 40px 0;
  background-color: #ffffff;
}

.row {
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .product-card .card-img-top {
    height: 180px;
  }

  .product-card .card-body {
    padding: 15px;
  }

  .product-card .card-text {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .product-card .card-img-top {
    height: 160px;
  }

  .product-card .card-body {
    padding: 12px;
  }

  .product-card .card-text {
    font-size: 13px;
  }
}

/* top selling card style */
.top-selling-section {
  margin-bottom: 50px;
}

.section-title {
  /* font-size: 2rem; */
  font-weight: bold;
  color: #333;
  margin-bottom: 40px;
}

.scroll-container {
  position: relative;
  overflow: hidden;
}

.scroll-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 10px;
  scrollbar-width: thin;
  scrollbar-color: #ccc transparent;
}

.scroll-wrapper::-webkit-scrollbar {
  height: 8px;
}

.scroll-wrapper::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.scroll-wrapper::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}

.scroll-wrapper::-webkit-scrollbar-thumb:hover {
  background: #999;
}

.scroll-content {
  display: flex;
  gap: 20px;
  padding: 0 0px !important;
}

.scroll-item {
  flex: 0 0 auto;
  width: 250px;
  height: 338px;
}
.category-card-item {
  height: 200px !important;
}

.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: white;
  border: 2px solid #e0e0e0;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  z-index: 10;
}

.scroll-btn:hover {
  background-color: #f8f9fa;
  border-color: #007bff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.scroll-btn-left {
  left: 10px;
}

.scroll-btn-right {
  right: 10px;
}

.scroll-btn svg {
  width: 20px;
  height: 20px;
  fill: #333;
}

.scroll-btn:hover svg {
  fill: #007bff;
}

.product-card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  background-color: white;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.product-image-container {
  position: relative;
  padding: 10px;
  border-radius: 15px 15px 0 0;
}

.product-image {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin: 0 auto;
  display: block;
}

.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: bold;
  text-transform: uppercase;
  color: white;
}

.badge-sale {
  background-color: #6c757d;
}

.badge-bestseller {
  background-color: #dc3545;
}

.badge-popular {
  background-color: #20c997;
}

.card-body {
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 0 !important;
  padding-top: 0 !important;
}

.home-product-title {
  font-size: 0.9rem;
  color: #333;
  line-height: 1.3;
  text-align: left;
  width: 100%;
  display: block;
  clear: both;
  margin-right: 0;
}

.original-price {
  color: #999;
  text-decoration: line-through;
  font-size: 0.9rem;
  margin-right: 8px;
}

.current-price {
  color: black;
  font-size: 1rem;
  font-weight: bold;
  float: left;
  margin-right: 10px;
}

.view-details-btn {
  background-color: #28a745;
  color: white;
  border: none !important;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
  width: 100%;
  text-decoration: none;
}

.view-details-btn:hover {
  background-color: #333;
  color: white;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .scroll-item {
    width: 220px;
  }

  .product-image {
    width: 130px;
    height: 130px;
  }

  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .scroll-item {
    width: 200px;
  }

  .scroll-btn {
    width: 40px;
    height: 40px;
  }

  .scroll-btn svg {
    width: 16px;
    height: 16px;
  }

  .product-image {
    width: 120px;
    height: 120px;
  }

  .section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .product-title {
    font-size: 1rem;
    min-height: 40px;
  }

  .card-body {
    padding: 15px;
  }

  .view-details-btn {
    padding: 10px 20px;
    font-size: 0.8rem;
  }
}

@media (max-width: 576px) {
  .section_heading_title {
    font-size: 17px !important;
  }
  .brand_slider_title{
    font-size: 17px !important;
  }

  .scroll-item {
    width: 176px;
  }

  .scroll-content {
    gap: 4px;
    padding: 0 0px;
  }

  .scroll-btn {
    width: 35px;
    height: 35px;
  }

  .scroll-btn svg {
    width: 14px;
    height: 14px;
  }

  .top-selling-section {
    padding: 30px 0;
  }

  .product-image {
    width: 100px;
    height: 100px;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .product-title {
    font-size: 0.9rem;
  }

  .current-price {
    font-size: 1.1rem;
  }
}

/* category slider */
/* Carousel Container - Ensure no background showing */
.vape-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  margin: 2rem auto;
  max-width: 1200px;
  background: #000; /* Dark background instead of gradient */
}

/* Carousel Inner - Prevent background bleeding */
.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
  background: #000; /* Ensure no white flash */
}

/* Carousel Items - Fixed sliding transition */
.carousel-item {
  position: relative;
  display: none;
  width: 100%;
  transition: none; /* Remove default transition */
}

.carousel-item.active {
  display: block;
}

/* Custom slide transitions */
.carousel-item-next,
.carousel-item-prev {
  position: absolute;
  top: 0;
  width: 100%;
  display: block;
}

.carousel-item-next {
  transform: translateX(100%);
}

.carousel-item-prev {
  transform: translateX(-100%);
}

.carousel-item-next.carousel-item-start,
.carousel-item-prev.carousel-item-end {
  transform: translateX(0);
}

.carousel-item-next:not(.carousel-item-start),
.carousel-item-prev:not(.carousel-item-end) {
  transition: transform 0.6s ease-in-out;
}

/* Ensure images are always visible during transition */
.carousel-item img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 20px;
  filter: brightness(1.1) contrast(1.1) saturate(1.2);
  background: linear-gradient(
    45deg,
    #667eea,
    #764ba2
  ); /* Fallback while loading */
}

/* Gradient Overlay */
.carousel-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(255, 154, 158, 0.1) 0%,
    rgba(254, 207, 239, 0.1) 50%,
    rgba(102, 126, 234, 0.1) 100%
  );
  z-index: 1;
  border-radius: 20px;
  pointer-events: none;
}

/* Product Info Overlay */
.product-info {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 20px;
  z-index: 10;
  transform: translateY(100%);
  transition: transform 0.5s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.carousel-item:hover .product-info {
  transform: translateY(0);
}

.product-info h3 {
  color: #333;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(45deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.product-info p {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 0;
  line-height: 1.4;
}

/* Carousel Indicators */
.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  z-index: 15;
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
  gap: 12px;
}

.carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 14px;
  height: 14px;
  padding: 0;
  margin: 0;
  text-indent: -999px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.4);
  background-clip: padding-box;
  border: 3px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  opacity: 0.6;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(5px);
}

.carousel-indicators [data-bs-target].active {
  opacity: 1;
  background: linear-gradient(45deg, #667eea, #764ba2);
  transform: scale(1.3);
  box-shadow: 0 0 20px rgba(102, 126, 234, 0.6);
  border-color: #ffffff;
}

.carousel-indicators [data-bs-target]:hover {
  opacity: 0.9;
  transform: scale(1.15);
  background: rgba(255, 255, 255, 0.7);
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 12;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12%;
  padding: 0;
  color: #fff;
  text-align: center;
  background: none;
  border: 0;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.vape-carousel:hover .carousel-control-prev,
.vape-carousel:hover .carousel-control-next {
  opacity: 1;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

/* Carousel Control Icons */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 3rem;
  height: 3rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50% 50%;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3e%3cpath d='m3.86 8.753 5.482 4.796c.646.566 1.658.106 1.658-.753V3.204a1 1 0 0 0-1.659-.753l-5.48 4.796a1 1 0 0 0 0 1.506z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3e%3cpath d='m12.14 8.753-5.482 4.796c-.646.566-1.658.106-1.658-.753V3.204a1 1 0 0 1 1.659-.753l5.48 4.796a1 1 0 0 1 0 1.506z'/%3e%3c/svg%3e");
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
  background-color: #ffffff;
  transform: scale(1.15);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
  border-color: rgba(102, 126, 234, 0.5);
}

/* Responsive Design */
@media (max-width: 992px) {
  .carousel-item img {
    height: 400px;
  }

  .product-info {
    bottom: 20px;
    left: 20px;
    right: 20px;
    padding: 15px;
  }

  .product-info h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .carousel-item img {
    height: 320px;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 15%;
    opacity: 1;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 2.5rem;
    height: 2.5rem;
  }

  .carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
  }

  .product-info {
    bottom: 15px;
    left: 15px;
    right: 15px;
    padding: 12px;
    transform: translateY(0);
  }

  .product-info h3 {
    font-size: 1.2rem;
  }

  .product-info p {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .carousel-item img {
    height: 280px;
    border-radius: 15px;
  }

  .vape-carousel {
    border-radius: 15px;
    margin: 1rem;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 2rem;
    height: 2rem;
  }

  .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-width: 2px;
  }

  .product-info {
    bottom: 10px;
    left: 10px;
    right: 10px;
    padding: 10px;
    border-radius: 10px;
  }

  .product-info h3 {
    font-size: 1.1rem;
  }

  .product-info p {
    font-size: 0.85rem;
  }
}

/* Loading Animation */
.loading-shimmer {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Auto-play progress indicator */
.carousel-indicators::before {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  border-radius: 2px;
  animation: progress 3s infinite linear;
}

@keyframes progress {
  0% {
    width: 0;
  }
  100% {
    width: 40px;
  }
}

/* Enhanced Auto-play Features */
.vape-carousel {
  /* Pause auto-play on hover */
}

/* Auto-play status indicator */
.auto-play-indicator {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 0.8rem;
  z-index: 20;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.auto-play-indicator.paused {
  background: rgba(255, 193, 7, 0.9);
  color: #000;
}

/* Brand Slider Container */
.brand-slider-section {
  background: #ffffff;
  padding: 3rem 0;
  overflow: hidden;
  position: relative;
}

.brand-slider-container {
  position: relative;
  overflow: hidden;
}

/* Sliding Animation Track */
.brand-track {
  display: flex;
  align-items: center;
  width: fit-content;
  animation: slide 20s linear infinite;
  gap: 3rem;
}

.brand-track:hover {
  animation-play-state: paused;
}

/* Brand Item Styling */
.brand-slider-section {
  padding: 0;
  background: white;
}

.top-selling-section {
  margin-top: 2rem;
}

h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  padding-bottom: 1rem;
  margin-bottom: 0;
}

.scroll-container {
  position: relative;
  overflow: hidden;
}

.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.scroll-btn:hover {
  background: #f8f9fa;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.scroll-btn svg {
  width: 20px;
  height: 20px;
  fill: #333;
}

.scroll-btn-left {
  left: 10px;
}

.scroll-btn-right {
  right: 10px;
}

.scroll-wrapper {
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}

.scroll-wrapper::-webkit-scrollbar {
  display: none;
}

.scroll-content {
  padding: 0 50px;
}

.brand-slider-container {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  min-width: max-content;
}

.brand-item {
  flex: 0 0 auto;
  width: 150px;
  height: 160px;
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 120px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.brand-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: #007bff;
}

.brand-logo {
  width: 80px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 10px;
}
/* .brand-logo-container{
  width: 80px;
  height: 60px;
} */

.brand-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.loading-placeholder {
  display: flex;
  gap: 20px;
  padding: 20px 0;
}

.loading-item {
  width: 120px;
  height: 100px;
  background: #f8f9fa;
  border-radius: 8px;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

.error-message {
  text-align: center;
  color: #dc3545;
  padding: 20px;
  font-style: italic;
}

@media (max-width: 768px) {
  .scroll-btn {
    display: none;
  }

  .scroll-content {
    padding: 0 15px;
  }

  .brand-item {
    min-width: 100px;
    padding: 15px;
  }

  .brand-logo {
    width: 60px;
    height: 45px;
  }
  .brand-track {
    gap: 0.5rem;
  }
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Enhanced Effects */
.brand-slider-container::before,
.brand-slider-container::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

/* .brand-slider-container::before {
  left: 0;
  background: linear-gradient(to right, #ffffff, transparent);
}

.brand-slider-container::after {
  right: 0;
  background: linear-gradient(to left, #ffffff, transparent);
} */

/* Pause indicator */
.pause-indicator {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 10;
}

.brand-track:hover + .pause-indicator {
  opacity: 1;
}

/* footer area */
/* Footer Styling */
.footer-section {
  background-color: #ffffff;
  border-top: 1px solid #e9ecef;
  padding: 4rem 0 2rem 0;
  margin-top: auto;
}

/* Logo Section */
.footer-logo {
  text-align: center;
  margin-bottom: 3rem;
}

.footer-logo img {
  max-width: 150px;
  height: auto;
  margin-bottom: 1rem;
}

/* Footer Navigation */
.footer-nav {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.footer-nav .row {
  justify-content: center;
}

.footer-column h5 {
  color: #333;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 0.75rem;
}

.footer-column ul li a {
  color: #6c757d;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  display: block;
  padding: 0.25rem 0;
}

.footer-column ul li a:hover {
  color: #28a745;
  text-decoration: none;
}

/* Social Media Section */
.social-media {
  text-align: center;
  margin-bottom: 3rem;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #f8f9fa;
  color: #6c757d;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}

.social-icons a:hover {
  background-color: #28a745;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.social-icons a i {
  font-size: 1.1rem;
}

/* Company Description */
.company-description {
  margin-bottom: 2rem;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

.company-description .row {
  margin-bottom: 1rem;
}

.company-description .row:last-child {
  margin-bottom: 0;
}

.company-description p {
  color: #6c757d;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0;
  text-align: justify;
}

/* Copyright Section */
.copyright-section {
  border-top: 1px solid #e9ecef;
  padding: 1.5rem 0;
  text-align: center;
}

.copyright-text {
  color: #6c757d;
  font-size: 0.85rem;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .footer-section {
    padding: 3rem 0 2rem 0 !important;
  }

  .footer-nav {
    margin-bottom: 2.5rem !important;
    padding-left: 150px !important;
  }

  .company-description {
    margin-bottom: 2.5rem !important;
  }

  .social-media {
    margin-bottom: 2.5rem !important;
  }
}

@media (max-width: 768px) {
  .footer-section {
    padding: 2.5rem 0 1.5rem 0;
  }

  .footer-logo {
    margin-bottom: 2rem;
  }

  .footer-logo img {
    max-width: 120px;
  }

  .footer-nav {
    margin-bottom: 2rem;
    padding-left: 0 !important;
  }

  .footer-column {
    text-align: center;
    /* margin-bottom: 2rem; */
  }

  .company-description {
    margin-bottom: 2rem;
  }

  .company-description .row {
    margin-bottom: 1.5rem;
  }

  .company-description p {
    text-align: center;
    font-size: 0.85rem;
  }

  .social-media {
    margin-bottom: 2rem;
  }

  .social-icons {
    gap: 1rem;
  }

  .social-icons a {
    width: 35px;
    height: 35px;
  }

  .social-icons a i {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .footer-section {
    padding: 2rem 0 1rem 0;
  }
  .footer-column ul li {
    margin-bottom: 0 !important;
  }

  .footer-logo {
    margin-bottom: 0 !important;
  }

  .footer-logo img {
    max-width: 100px;
  }

  .footer-column h5 {
    font-size: 1rem;
    margin: 1rem !important;
  }

  .footer-column ul li a {
    font-size: 0.9rem;
  }

  .company-description p {
    font-size: 0.85rem;
  }

  .social-icons a {
    width: 32px;
    height: 32px;
  }

  .social-icons a i {
    font-size: 0.9rem;
  }

  .copyright-text {
    font-size: 0.8rem;
  }
}

/* Hover Effects */
.footer-column h5::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #28a745;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.footer-column:hover h5::after {
  opacity: 1;
}

/* Animation for footer sections */
.footer-section {
  animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Custom scrollbar for potential overflow */
::-webkit-scrollbar {
  width: 15px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #28a745;
  border-radius: 3px;
}

/* Promotional Banner */
.promotional-banner {
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease;
  cursor: pointer;
  height: 300px;
  position: relative;
}

.promotional-banner:hover {
  transform: scale(1.02);
}

.promotional-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  transition: background 0.3s ease;
}

.promotional-banner:hover .banner-overlay {
  background: rgba(0, 0, 0, 0.05);
}

.promotional-section {
  /* padding: 40px 0; */
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .promotional-banner {
    height: 200px !important;
    margin-bottom: 20px;
  }
}
/* Responsive adjustments */
@media (max-width: 900px) {
  .promotional-banner {
    height: 160px !important;
    margin-bottom: 20px;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .promotional-banner {
    height: 150px;
    margin-bottom: 20px;
  }

  .promotional-section {
    padding: 20px 0;
  }
}

@media (max-width: 576px) {
  .promotional-banner {
    height: 120px;
  }
}
/*end Promotional Banner  */

/* Featured Products */
.featured-products-section {
  padding: 40px 0;
  background-color: #f8f9fa;
}

/* .section-title {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: left;
  margin-bottom: 30px;
  color: #333;
} */

.filter-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  background-color: #e9ecef;
  color: #666;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 14px;
}

.filter-tab-view {
  padding: 10px 20px;
  border: 1px solid rgb(111, 233, 111);
  border-radius: 25px;
  background-color: #e9ecef;
  color: #666;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 14px;
}

.filter-tab.active {
  background-color: #0a6629ff;
  color: white;
}

.filter-tab:hover {
  background-color: #0a6629ff;
  color: white;
}
/* End of Featured Section */
/* Mobile Media Queries for Product Cards */

/* Tablet - Small Desktop */
@media (max-width: 991px) {
  .scroll-item {
    min-width: 200px !important;
  }

  .product-card {
    margin: 0 8px !important;
  }

  .product-image-container {
    height: 150px !important;
  }

  .product-image {
    max-height: 120px !important;
  }

  .product-title {
    font-size: 14px !important;
    line-height: 1.3 !important;
  }

  .view-details-btn {
    font-size: 12px !important;
    padding: 6px 12px !important;
  }
}

/* Tablet */
@media (max-width: 768px) {
  .scroll-item {
    min-width: 180px !important;
  }

  #bannerContainermain {
    margin-top: 100px !important;
  }
  .product-card {
    margin: 0 6px !important;
  }

  .product-image-container {
    height: 140px !important;
  }

  .product-image {
    max-height: 110px !important;
  }

  .card-body {
    padding: 12px !important;
  }

  .product-title {
    font-size: 13px !important;
    margin-bottom: 8px !important;
  }

  .original-price {
    font-size: 11px !important;
  }

  .current-price {
    font-size: 14px !important;
  }

  .view-details-btn {
    font-size: 11px !important;
    padding: 5px 10px !important;
  }
}

/* Mobile Large */
@media (max-width: 576px) {
  .promotional-section {
    padding: 0 !important;
    padding-top: 5px !important;
  }
  .category-section {
    padding: 20px 0 !important;
  }
  .top-selling-section {
    margin: 0 !important;
    padding: 0 !important;
  }
  .scroll-item {
    min-width: 150px !important;
  }

  .product-card {
    margin: 0 4px !important;
  }

  .product-image-container {
    height: 120px !important;
  }

  .product-image {
    max-height: 90px !important;
  }

  .card-body {
    padding: 10px !important;
  }

  .product-title {
    font-size: 12px !important;
    margin-bottom: 6px !important;
    line-height: 1.2 !important;
  }

  .original-price {
    font-size: 10px !important;
  }

  .current-price {
    font-size: 13px !important;
  }

  .view-details-btn {
    font-size: 10px !important;
    padding: 4px 8px !important;
    width: 100% !important;
  }

  .bestseller-badge {
    font-size: 8px !important;
    padding: 2px 6px !important;
  }
}

/* Mobile Small */
@media (max-width: 480px) {
  .promotional-section {
    padding: 0 !important;
    padding-top: 5px !important;
  }
  .category-section {
    padding: 20px 0 !important;
  }
  .top-selling-section {
    margin: 0 !important;
    padding: 0 !important;
  }
  .scroll-item {
    min-width: 130px !important;
  }

  .product-card {
    margin: 0 3px !important;
  }

  .product-image-container {
    height: 122px !important;
  }
  .price-container {
    margin-top: 0px !important;
    height: 40px !important;
  }

  .product-image {
    max-height: 95px !important;
  }

  .card-body {
    padding: 8px !important;
  }

  .product-title {
    font-size: 11px !important;
    margin-bottom: 5px !important;
  }

  .original-price {
    font-size: 9px !important;
  }

  .current-price {
    font-size: 12px !important;
  }

  .view-details-btn {
    font-size: 9px !important;
    padding: 3px 6px !important;
    width: 100% !important;
  }

  .bestseller-badge {
    font-size: 7px !important;
    padding: 1px 4px !important;
  }
}

/* Mobile Extra Small */
@media (max-width: 375px) {
  .promotional-section {
    padding: 0 !important;
    padding-top: 2px !important;
  }
  .category-section {
    padding: 20px 0 !important;
  }
  .top-selling-section {
    margin: 0 !important;
    padding: 0 !important;
  }
  .scroll-item {
    min-width: 110px !important;
  }

  .product-card {
    margin: 0 2px !important;
  }

  .product-image-container {
    height: 90px !important;
    padding: 0px !important;
  }

  .product-image {
    max-height: 95px !important;
  }

  .card-body {
    padding: 6px !important;
  }

  .product-title {
    font-size: 10px !important;
    margin-bottom: 4px !important;
  }

  .original-price {
    font-size: 8px !important;
  }

  .current-price {
    font-size: 11px !important;
  }

  .view-details-btn {
    font-size: 8px !important;
    padding: 2px 4px !important;
    width: 100% !important;
  }

  .bestseller-badge {
    font-size: 6px !important;
    padding: 1px 3px !important;
  }
}

/* Mobile Media Queries for Filter Tabs */

/* Tablet - Small Desktop */
@media (max-width: 991px) {
  .filter-tabs {
    gap: 8px !important;
    margin-bottom: 20px !important;
  }

  .filter-tab {
    font-size: 13px !important;
    padding: 8px 16px !important;
    min-width: auto !important;
    white-space: nowrap !important;
  }
}

/* Tablet */
@media (max-width: 768px) {
  .filter-tabs {
    overflow-x: auto !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
    padding-bottom: 5px !important;
    gap: 6px !important;
  }

  .filter-tabs::-webkit-scrollbar {
    display: none !important;
  }

  .filter-tab {
    font-size: 12px !important;
    padding: 6px 12px !important;
    min-width: 80px !important;
    flex-shrink: 0 !important;
  }
}

/* Mobile Large */
@media (max-width: 576px) {
  .filter-tabs {
    overflow-x: auto !important;
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 4px !important;
    padding: 0 5px 5px 0 !important;
    margin-bottom: 15px !important;
    height: 35px !important;
  }

  .filter-tab {
    font-size: 11px !important;
    padding: 6px 10px !important;
    min-width: 70px !important;
    flex-shrink: 0 !important;
    border-radius: 15px !important;
    white-space: nowrap !important;
  }
}

/* Mobile Small */
@media (max-width: 480px) {
  .filter-tabs {
    gap: 3px !important;
    padding: 0 3px 3px 0 !important;
  }

  .filter-tab {
    font-size: 10px !important;
    padding: 5px 8px !important;
    min-width: 60px !important;
    border-radius: 12px !important;
  }
}

/* Mobile Extra Small */
@media (max-width: 375px) {
  .filter-tabs {
    gap: 2px !important;
    padding: 0 2px 2px 0 !important;
  }

  .filter-tab {
    font-size: 9px !important;
    padding: 4px 6px !important;
    min-width: 50px !important;
    border-radius: 10px !important;
  }
}

/* Mobile Media Queries for Home Slider */

/* Tablet - Small Desktop */
@media (max-width: 1025px) {
  .home-slider {
    padding: 0 16px !important;
  }

  .main-carousel-item {
    height: 270px !important;
  }

  .side-card {
    height: 130px !important;
    margin-bottom: 9px !important;
  }

  .side-card:last-child {
    margin-bottom: 0 !important;
  }
}

@media (max-width: 991px) {
  .home-slider {
    padding: 0 15px !important;
  }

  .main-carousel-item {
    height: 250px !important;
  }

  .side-card {
    height: 120px !important;
    margin-bottom: 8px !important;
  }

  .side-card:last-child {
    margin-bottom: 0 !important;
  }
}

/* Tablet */
@media (max-width: 768px) {
  .home-slider {
    padding: 0 10px !important;
  }

  .carousel-container {
    padding: 0 !important;
  }

  .main-carousel-item {
    height: 200px !important;
  }

  .side-card {
    height: 95px !important;
    margin-bottom: 6px !important;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 35px !important;
    height: 35px !important;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 15px !important;
    height: 15px !important;
  }
}

/* Mobile Large */
@media (max-width: 576px) {
  .main-content {
    padding-top: 100px !important;
  }
  .home-slider {
    padding: 0 8px !important;
  }

  .home-slider .row {
    margin: 0 !important;
  }

  .home-slider .col-lg-8,
  .home-slider .col-md-7 {
    padding: 0 4px !important;
    margin-bottom: 10px !important;
  }

  .home-slider .col-lg-4,
  .home-slider .col-md-5 {
    padding: 0 4px !important;
  }

  .main-carousel-item {
    height: 160px !important;
  }

  .side-card {
    height: 90px !important;
    margin-bottom: 5px !important;
    border-radius: 8px !important;
    overflow: hidden !important;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 30px !important;
    height: 30px !important;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 12px !important;
    height: 12px !important;
  }
}

/* Mobile Small */
@media (max-width: 480px) {
  .px-3 {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .home-slider {
    padding: 0 0px !important;
  }

  .home-slider .col-lg-8,
  .home-slider .col-md-7 {
    padding: 0 2px !important;
    margin-bottom: 8px !important;
  }

  .home-slider .col-lg-4,
  .home-slider .col-md-5 {
    padding: 0 2px !important;
  }

  .main-carousel-item {
    height: 140px !important;
    border-radius: 6px !important;
    overflow: hidden !important;
  }

  .side-card {
    height: 105px !important;
    margin-bottom: 4px !important;
    border-radius: 6px !important;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 25px !important;
    height: 25px !important;
    border-radius: 13px !important;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 10px !important;
    height: 10px !important;
  }
}

/* Mobile view media query for promo banner - Exact match to image */

/* Extra small devices adjustments */
@media (max-width: 480px) {
  .promo-banner .container-fluid {
    padding: 8px 12px !important;
  }

  .promo-icon {
    width: 18px !important;
    height: 18px !important;
    font-size: 11px !important;
    margin-right: 6px !important;
  }

  .promo-text {
    font-size: 13px !important;
  }

  .promo-banner .col-lg-3:first-child .promo-text {
    font-size: 15px !important;
  }
}

/* password modal css */
.modal-content {
  border: none;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.modal-header {
  border-bottom: 1px solid #e9ecef;
  padding: 1.5rem;
}

.modal-title {
  font-weight: 600;
  color: #333;
  font-size: 1.25rem;
}

.modal-body {
  padding: 1.5rem;
}

.form-label {
  font-weight: 500;
  color: #495057;
  margin-bottom: 0.5rem;
}

.form-control {
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 0.75rem;
  font-size: 0.95rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
  border-color: #80bdff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-control::placeholder {
  color: #6c757d;
  opacity: 0.8;
}

.modal-footer {
  border-top: 1px solid #e9ecef;
  padding: 1.5rem;
  gap: 0.5rem;
}

.btn-cancel {
  background-color: transparent;
  border: 1px solid #dee2e6;
  color: #6c757d;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  transition: all 0.15s ease-in-out;
}

.btn-cancel:hover {
  background-color: #f8f9fa;
  border-color: #adb5bd;
  color: #495057;
}

.btn-update {
  background-color: #28a745;
  border: 1px solid #28a745;
  color: white;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  transition: all 0.15s ease-in-out;
}

.btn-update:hover {
  background-color: #218838;
  border-color: #1e7e34;
  transform: translateY(-1px);
}

.mb-3:last-of-type {
  margin-bottom: 1px !important;
}

@media (max-width: 576px) {
  .modal-dialog {
    margin: 1rem 0.5rem;
  }
  .form-label {
    font-size: 12px;
  }

  .modal-footer {
    flex-direction: column;
  }

  .modal-footer .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .modal-footer .btn:last-child {
    margin-bottom: 0;
  }
}
.product_ttle_prce_div {
  height: 35px;
}
.price-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
  margin-top: 20px;
}
.price-containers {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 55px;
  margin-top: 20px;
}

.login-text {
  color: #0a6629ff;
  font-weight: bold;
  text-decoration: underline;
  font-size: 16px;
}

.add-btn {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 1px solid #ccc;
  background: transparent;
  font-size: 20px;
  line-height: 21px;
  text-align: center;
  cursor: pointer;
  color: #666;
  text-decoration: none;
}

@media (min-width: 1700px) {
.add-btn{
  line-height: 18px;
}
}

@media (max-width: 768px) {
  .login-text {
    margin-top: 10px;
    font-size: 12px;
  }
  .add-btn {
    margin-top: 5px;
    width: 21px;
    height: 21px;
    border-radius: 50%;
    border: 1px solid #ccc;
    background: transparent;
    font-size: 16px;
    line-height: 17px;
    text-align: center;
    cursor: pointer;
    color: #666;
    text-decoration: none;
  }
}
.notify-btn {
  color: black;
  border: none;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.notify-btn:hover {
  background-color: black;
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .notify-btn {
    padding: 2px 4px;
    font-size: 9px;
    width: 150px;
  }
  .price-containers{
    margin-top: 0px;
  }
}

/* Overlay background */
#ageVerificationoverlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 9999999;
  display: none;
  align-items: center;
  justify-content: center;
}

/* Popup box */
#popup {
  background: #fff;
  border-radius: 12px;
  text-align: center;
  padding: 40px 30px;
  width: 420px;
  max-width: 90%;
  font-family: "Inter", "Segoe UI", sans-serif;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Headings */
#popup h2 {
  font-size: 22px;
  font-weight: 600;
  color: #0a2740;
  margin-bottom: 12px;
}

#popup p {
  font-size: 16px;
  color: #4b5563;
  margin-bottom: 25px;
}

/* Button group */
.btn-group {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 20px;
}

/* Buttons */
.btn {
  flex: 1;
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

/* Dark button (filled) */
.btn-dark {
  background: #000;
  color: #fff;
  border: 2px solid #000;
}

.btn-dark:hover {
  background: #333;
}

/* Outline button */
.btn-outline {
  background: #fff;
  color: #000;
  border: 2px solid #000;
}

.btn-outline:hover {
  background: #000;
  color: #fff;
}

/* Small disclaimer */
#popup small {
  display: block;
  font-size: 13px;
  color: #6b7280;
  margin-top: 10px;
}

#popup small a {
  color: #1d4ed8;
  text-decoration: none;
}

#popup small a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
  #popup {
    padding: 25px 20px;
  }

  #popup h2 {
    font-size: 18px;
  }

  .btn {
    font-size: 14px;
    padding: 12px;
  }
}
