body{
  background-color: #2c2c2c;
  color: white;
}
/* Navbar styling */
.navbar {
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);
}
.navbar .nav-link {
  color: white !important;
  transition: color 0.3s ease;
}
.navbar .nav-link:hover {
  color: red !important;
}

.form-control{
  width: 100%;
}

.cart-icon {
  color: white;
  cursor: pointer;
  transition: color 0.3s ease;
}
@media (min-width: 1000px) {
  .drop-hide {
    display: none !important;
  }
  .cart-out{
    display: none;
  }
}

@media (max-width: 1000px) {
  .menu-drop {
    display: none !important;
  }
  .cart-in{
    display: none;
  }
}

.navbar-toggler{
  padding: 0;
}
.navbar-toggler .cart-icon{
  margin-left: 10px;
}

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.cart-icon:hover {
  color: #BB2D3B;
}

/* menu drop */

.menu-drop {
  /* margin-top: 20px; */
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-around;
}

.dropbtn {
  background-color: transparent;
  color: white;
  padding: 16px;
  font-size: 20px;
  border: none;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .dropbtn {
  color:red ;
}

/* Hero section */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  transition: opacity 1s ease;
}

.hero-content {
  position: relative;
  text-align:center;
  top: 50%;
  transform: translateY(-50%);
  text-shadow: 2px 2px 13px rgb(0, 0, 0);
}
.display-4{
  color: rgba(224, 17, 17, 0.862);
  font-family: tektur;
}

/* 📱 Mobile view adjustments */
@media (max-width: 768px) {
  .hero {
    height: 60vh; /* reduce height for tablets & mobile */
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 45vh; /* even smaller for small phones */
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-content p {
    font-size: 0.9rem;
  }
}


/* Fade out video on scroll */
/* body.scrolled .hero video {
  opacity: 0;
} */

/* Content below hero */
.content {
  padding: 30px 15px;
  background: #fff;
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease;
}

body.scrolled .content {
  opacity: 1;
  transform: translateY(0);
}


/* featured products */
.product-slider-wrapper {
  position: relative;
}

.product-slider {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 1rem;
  scroll-snap-type: x mandatory;
  padding: 10px;
}

.product-slider::-webkit-scrollbar {
  display: none;
}

.product-card {
  flex: 0 0 calc(33.333% - 1rem);
  scroll-snap-align: start;
}
.card{
  border: none;
}

.product-card img {
  height: 200px;
  object-fit: contain;
}
.product-card p{
  font-weight: bold;
}
.product-card a{
  color: red;
}
.product-card a:hover{
  color: red;
  text-decoration: underline;
}
.product-card a:focus{
  border: none;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #dc3545;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 20%;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s;
}

.slider-btn:hover {
  background-color: red;
}

.prev-btn {
  left: -10px;
}
.next-btn {
  right: -10px;
}

/* Responsive breakpoints */
@media (max-width: 992px) {
  .product-card {
    flex: 0 0 calc(50% - 1rem);
  }
}

@media (max-width: 576px) {
  .product-card {
    flex: 0 0 100%;
  }
}

/* footer */
.flex-column .nav-link{
  color: white;
}
.flex-column .nav-link:hover{
  color: red;
}

.footer .row{
 padding: 0px;
}

.bi{
  margin-left: 10px;
}


hr{
  opacity: 1;
}

