body {
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

 /* Navbar */
.navbar {
  position: fixed;
  top: -80px; 
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  background: whitesmoke;
  backdrop-filter: blur(8px);
  border-radius: 15px;
  padding-top: 0.4rem;
  padding-bottom: 0.3rem;
  box-shadow: none;
  z-index: 2000;
  transition: all 0.5s ease;
}

/* Navbar scrolls down */
.navbar.show-navbar {
  top: 15px; 
  /* background: #ffffff6b; */
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border-radius: 15px;
}

/* Navbar Brand */
.navbar-brand img {
  height: 60px;
  width: auto;
}

/*  Links */
.nav-link {
  color: #1e1e1e;
  font-weight: 500;
  transition: 0.3s;
  padding: 6px 10px;
}

.nav-link:hover {
  color: #a47c3c;
}

/* layout nav */
.navbar .nav {
  gap: 1rem !important;
  text-align: right;
}

.navbar .d-flex.align-items-center.gap-3 {
  gap: 0.8rem !important;
}

.navbar .container {
  padding-right: 10px;
  padding-left: 10px;
}



/* Icons */
#searchIcon, #cartIcon, #openSidebar {
  cursor: pointer;
  color: #2b2b2b;
  transition: 0.3s;
}
#searchIcon:hover, #cartIcon:hover, #openSidebar:hover {
  color: #a47c3c;
}

/* Cart  */
.cart-icon {
  position: relative;
}
.cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: #ff5a3c;
  color: #fff;
  font-size: 12px;
  border-radius: 50%;
  padding: 2px 6px;
}

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  height: 100vh;
  background: #fff;
  box-shadow: 2px 0 8px rgba(0,0,0,0.1);
  padding: 20px;
  transition: left 0.4s ease;
  z-index: 2500;
}
.sidebar.active {
  left: 0;
}
.sidebar-logo {
  text-align: center;
  margin-bottom: 20px;
}
.sidebar-nav a {
  display: block;
  padding: 10px 0;
  color: #333;
  font-weight: 500;
  text-decoration: none;
}
.sidebar-nav a:hover {
  color: #a47c3c;
}
.sidebar-footer {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}
.sidebar-footer a {
  color: #333;
  font-size: 18px;
}
.sidebar-footer a:hover {
  color: #a47c3c;
}

/* Overlay */
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  z-index: 2400;
}
.overlay.active {
  display: block;
}

/* Search Popup */
.search-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background: rgba(255,255,255,0.98);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}
.search-popup.active {
  display: flex;
}
.search-container input {
  font-size: 60px;
  border: none;
  border-bottom: 2px solid #ccc;
  outline: none;
  width: 60%;
  text-align: center;
  color: #999;
}
.search-container input::placeholder {
  color: #b5b5b5;
}
.close-btn {
  position: absolute;
  top: 40px;
  right: 60px;
  font-size: 40px;
  color: #ff5a3c;
  cursor: pointer;
}



/* Cart Sidebar  */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  height: 90%;
  background: #fff;
  box-shadow: -4px 0 12px rgba(0,0,0,0.15);
  padding: 0;
  transition: 0.4s ease;
  border-radius: 20px 0 0 20px;
  overflow-y: auto;
  z-index: 5000;
}

.cart-sidebar.active {
  right: 0;
}

/* Header */
.cart-top {
  background: #d8e8ff;        
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 20px 0 0 0;
}

.cart-top h4 {
  font-size: 18px;
  font-weight: 600;
  color: #004aad;             
}

.close-btn {
  font-size: 28px;
  cursor: pointer;
  color: #004aad;
}

/* Cart Items List */
.cart-items {
  padding: 15px 20px;
}

.cart-item {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid #c9d9ff; 
}

.cart-item img {
  width: 75px;
  height: 75px;
  border-radius: 14px;
  object-fit: cover;
  flex-shrink: 0;
  background: #f2f6ff; 
}


.cart-info {
  margin-left: 12px;
  flex: 1;
}

.cart-info h5 {
  font-size: 15px;
  font-weight: 600;
  color: #003a8c;             
}

.cart-info p {
  color: #0074ff;            
  margin: 5px 0 0;
}

.remove-btn {
  font-size: 22px;
  cursor: pointer;
  color: #004aad;
}

/* Summary Section */
.cart-summary {
  padding: 20px;
  border-top: 2px solid #d0e2ff;
  background: #fff;
}

.cart-summary .row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.cart-summary h5 {
  color: #003a8c;
}




.view-card-btn {
  width: 100%;
  display: block;
  text-align: center;
  padding: 12px;
  background: #cfe0ff;     
  color: #003a8c;           
  border-radius: 12px;
  margin-bottom: 12px;
  font-size: 16px;
  text-decoration: none;
}

.checkout-btn {
  width: 100%;
  display: block;
  text-align: center;
  padding: 14px;
  background: #0066ff;    
  color: white;
  border-radius: 12px;
  font-size: 17px;
  text-decoration: none;
}





/* Hero banner */
.hero-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}

.hero-spacer {
  display: none;
}

/* About Us Section */
.about-section {
  background-color: #fff;
  padding: 80px 0;
}

/* Heading */
.about-title {
  font-weight: 800;
  font-size: 3rem;
  text-align: center;
  position: relative;
  margin-bottom: 60px;
  color: #222;
}
.about-title::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 4px;
  background-color: #ff5a3c;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

/* Text Content */
.about-content h3 {
  font-size: 1.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #2b2b2b;
}
.about-content p {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.7;
}
.about-content .btn-dark {
  background-color: #ff5a3c;
  border: none;
  padding: 12px 30px;
  font-weight: 500;
  font-size: 1rem;
  transition: 0.3s;
}
.about-content .btn-dark:hover {
  background-color: #e14d2a;
}

/* Image */
.about-image img {
  width: 80%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  transition: 0.3s;
}
.about-image img:hover {
  transform: scale(1.03);
}
.about-section .row {
  display: flex;
  align-items: center;
}
.about-content,
.about-image {
  display: flex;
  flex-direction: column;
  justify-content: center;
}


/* Responsive  */
/* Large screens (desktops) */
@media (max-width: 1200px) {
  .navbar {
    width: 95%;
  }

  .about-content h3 {
    font-size: 1.6rem;
  }

}

/* Tablets */
@media (max-width: 992px) {
  .navbar .nav {
    display: none !important;
  }

  #openSidebar {
    display: block !important;
    font-size: 2rem;
  }

  .navbar-brand img {
    height: 50px;
  }

  /* .hero-img {
    height: 70vh;
    object-position: center;
  } */

  .about-section {
    padding: 60px 0;
  }

  .about-title {
    font-size: 2.5rem;
  }

  .about-content h3 {
    font-size: 1.6rem;
  }

  .about-image img {
    width: 90%;
  }
}

/* Mobile (landscape & small tablets) */
@media (max-width: 768px) {
  .search-container input {
    font-size: 36px;
    width: 80%;
  }

  .close-btn {
    font-size: 30px;
    top: 20px;
    right: 30px;
  }

  .cart-sidebar {
    width: 300px;
    height: 70%;
  }

  .about-section .row {
    flex-direction: column;
    text-align: center;
  }

  .about-image {
    margin-top: 20px;
  }

  /* .hero-img {
    width: 100%;
    height: auto;
    object-position: top center;
  } */

  .sidebar-footer {
  gap: 10px;
}
}

/* Small phones */
@media (max-width: 480px) {
  .navbar {
    width: 100%;
    border-radius: 0;
    padding: 0.4rem 0.8rem;
  }

    .navbar.show-navbar {
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  }

  .navbar-brand img {
    height: 45px;
  }

  #openSidebar {
    font-size: 1.8rem;
  }

  /* .hero-img {
    height: 45vh;
    object-position: center;
  } */

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 25px;
    height: 25px;
  }

  .about-title {
    font-size: 2rem;
  }

  .about-content h3 {
    font-size: 1.4rem;
  }

  .about-content p {
    font-size: 0.95rem;
  }

  .about-content .btn-dark {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .about-image img {
    width: 100%;
  }
}



/* Latest Products Section */
.latest-products {
  background-color: #fff;
  padding: 80px 0;
}

.latest-products h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  color: #351c75;
  margin-bottom: 50px;
}

/* Product Card */
.product-card {
  position: relative;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  text-align: center;
}


.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, #ff5a3c, #a046e4);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}


.product-card:hover::before {
  opacity: 1;
  box-shadow: 0 0 25px rgba(160, 70, 228, 0.3);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(160, 70, 228, 0.25);
}

/* Sale Badge */
.sale-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background-color: #ff5a3c;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 6px;
  z-index: 2;
}

/* Product Image */
.product-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover img {
  transform: scale(1.05);
}

/* Icons on Hover */
.product-icons {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  opacity: 0;
  transition: 0.4s ease;
  z-index: 3;
}

.product-card:hover .product-icons {
  opacity: 1;
}

.product-icons i {
  background: rgba(255, 255, 255, 0.95);
  color: #ff5a3c;
  padding: 10px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.product-icons i:hover {
  background: linear-gradient(135deg, #ff5a3c, #a046e4);
  color: #fff;
}

/* Product Info */
.product-info {
  padding: 18px 15px 25px;
}

.product-info h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 6px;
}

.product-info p {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 10px;
}

/* Price Style */
.product-price {
  font-size: 1rem;
  font-weight: 600;
  color: #351c75;
}

.product-price del {
  color: #aaa;
  font-weight: 400;
  margin-left: 6px;
}

/* Responsive */
@media (max-width: 768px) {
  .product-card img {
    height: 220px;
  }
  .product-info h5 {
    font-size: 1rem;
  }
  .product-info p {
    font-size: 0.85rem;
  }
  .latest-products h2 {
    font-size: 2rem;
  }
}


/* Quick View Modal */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 3000;
}

.modal-content {
  background: #fff;
  width: 80%;
  max-width: 900px;
  border-radius: 15px;
  padding: 25px;
  position: relative;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  animation: popupShow 0.4s ease;
}

@keyframes popupShow {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.close-modal {
  position: absolute;
  top: 1px;
  right: 3px;
  font-size: 30px;
  color: #ff5a3c;
  cursor: pointer;
}

.modal-body {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.modal-left {
  flex: 1 1 45%;
}

.modal-left img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.modal-right {
  flex: 1 1 50%;
}

.modal-right h3 {
  font-weight: 700;
  font-size: 1.6rem;
  color: #222;
}

.modal-right p {
  color: #555;
  margin-bottom: 10px;
}

.modal-price {
  font-weight: 600;
  color: #351c75;
  font-size: 1.1rem;
}

.modal-price del {
  color: #aaa;
  margin-right: 6px;
}

/* Quantity Box */
.quantity-box {
  margin: 15px 0;
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-start;
}

.qty-btn {
  background: linear-gradient(135deg, #ff5a3c, #a046e4);
  color: #fff;
  border: none;
  font-size: 1.2rem;
  font-weight: 600;
  width: 35px;
  height: 35px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
}

.qty-btn:hover {
  opacity: 0.9;
}

.qty-control input {
  width: 60px;
  text-align: center;
  padding: 8px;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.btn-buy-now {
  background: linear-gradient(135deg, #ff5a3c, #a046e4);
  border: none;
  color: #fff;
  padding: 10px 30px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-buy-now:hover {
  opacity: 0.9;
}

.meta {
  font-size: 0.85rem;
  color: #888;
  margin-top: 8px;
}

@media(max-width:768px){
  /* .modal-content{
    width:90%;
    padding:15px;
  }
  .modal-body{
    flex-direction:column;
  }
  .modal-left, .modal-right{
    flex:100%;
  } */

  

   .qty-control {
    justify-content: center;
  }
  .qty-btn {
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
  }
  .qty-control input {
    width: 55px;
    font-size: 0.95rem;
  }
}


/* Testimonials Section */
.testimonials {
  text-align: center;
  padding: 60px 20px;
  background: #fff;
  overflow: hidden;
}

.testimonial-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #1e1e1e;
}

/* Wrapper */
.testimonial-wrapper {
  position: relative;
  width: 90%;
  margin: auto;
  overflow: hidden;
}

/* Slider */
.testimonial-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

/* Cards */
.testimonial-card {
  min-width: 320px;
  max-width: 320px;
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  margin: 0 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

/* .client-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid #a47c3c;
} */

.verified {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 10px;
}

.message {
  font-style: italic;
  color: #333;
  line-height: 1.5;
}

/* Arrows */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #a47c3c;
  border: none;
  color: #fff;
  font-size: 26px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
  z-index: 10;
  opacity: 0.9;
}

.arrow:hover {
  background: #8a662f;
}

.left {
  left: 0;
}

.right {
  right: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-card {
    min-width: 90%;
  }
}


/* Banner-Section */
.banner-section {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  padding: 50px 5%;
  background: #fff;
  flex-wrap: wrap;
}

.banner {
  position: relative;
  flex: 1 1 45%;
  overflow: hidden;
  border-radius: 10px;
  min-height: 350px;
}

.banner-img {
  width: 100%;
  height: 80%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.banner:hover .banner-img {
  transform: scale(1.05);
}

.banner-content {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  color: rgb(209, 31, 31);
}

.banner-sub {
  font-size: 1rem;
  color: #0f40df;
  margin-bottom: 10px;
  font-weight: 500;
}

.banner-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.banner-title.highlight {
  font-size: 4rem;
  color: #ff5a3c;
}

.banner-desc {
  font-size: 1rem;
  color: #444;
}

.banner-btn {
  display: inline-block;
  margin-top: 10px;
  color: hsl(64, 91%, 50%);
  text-decoration: none;
  border-bottom: 2px solid #0d07b5;
  font-weight: 500;
  transition: 0.3s;
}

.banner-btn:hover {
  color: #12b2cf;
  border-color: #a47c3c;
}

/* Responsive */
@media (max-width: 900px) {
  .banner-section {
    flex-direction: column;
  }
  .banner {
    flex: 1 1 100%;
  }
  .banner-content {
    left: 8%;
  }
}


/* VIDEO WRAPPER */
.video-section {
  position: relative;
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  margin-bottom: 70px;
}

/* MAIN POSTER IMAGE */
.main-image {
  width: 100%;
  height: 590px;
  object-fit: cover;
  object-position: center;
}

/* PLAY BUTTON */
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.3s ease;
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

/* PLAY TRIANGLE */
.triangle {
  width: 0;
  height: 0;
  border-left: 20px solid red;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}

/* POPUP */
.popup-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* POPUP CONTENT */
.popup-content {
  width: 85%;
  max-width: 850px;
  position: relative;
}

/* VIDEO */
.popup-content video {
  width: 100%;
  border-radius: 10px;
}

/* CLOSE BUTTON */
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 40px;
  font-weight: bold;
  color: #ff3b3b;
  cursor: pointer;
  z-index: 10000;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .play-button {
    width: 60px;
    height: 60px;
  }
  .triangle {
    border-left-width: 15px;
    border-top-width: 9px;
    border-bottom-width: 9px;
  }
  .main-image {
    height: 300px;
  }
}





/* Footer */
.footer {
  background: linear-gradient(135deg, #001f3f, #003366); 
  color: #fff;
  padding: 40px 0 20px;
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
}

.footer h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  position: relative;
}

.footer h5::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background: #00bcd4;
  margin-top: 6px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
  font-size: 15px;
  opacity: 0.9;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #00bcd4;
  padding-left: 5px;
}

.footer-links i {
  color: #00bcd4;
  margin-right: 8px;
}

.social-icons a {
  display: inline-block;
  color: #fff;
  font-size: 20px;
  margin-right: 10px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #00bcd4;
  transform: translateY(-3px);
}

.footer-line {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 30px;
}

.footer p {
  font-size: 14px;
  opacity: 0.9;
  margin: 0;
}


.payment-img {
  max-width: 120%;
  height: auto;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.1));
  transition: transform 0.3s ease;
}

.payment-img:hover {
  transform: scale(1.08);
}




