@import url('path-to-your-bootstrap-icons.css');


/* Default font sizes */
h1{font-size: 30px;}
h2{font-size: 26px;}
h3{font-size: 22px;}
h4{font-size: 16px;}
p{font-size: 16px;}
h5{font-size: 14px;}
h6{font-size: 12px;}

/* Responsive Font Sizes */
@media (max-width: 1200px) {

  /* Large Screens */
  h1{font-size: 28px;}
  h2{font-size: 24px;}
  h3{font-size: 20px;}
  h4{font-size: 15px;}
  p{font-size: 15px;}
  h5{font-size: 13px;}
  h6{font-size: 11px;}
}

@media (max-width: 992px) {

  /* Tablets */
  h1{font-size: 26px;}
  h2{font-size: 22px;}
  h3{font-size: 18px;}
  h4{font-size: 14px;}
  p{font-size: 14px;}
  h5{font-size: 12px;}
  h6{font-size: 10px;}
}

@media (max-width: 768px) {

  /* Mobile */
  h1{font-size: 24px;}
  h2{font-size: 20px;}
  h3{font-size: 16px;}
  h4{font-size: 13px;}
  p{font-size: 13px;}
  h5{font-size: 11px;}
  h6{font-size: 9px;}
}

@media (max-width: 480px) {

  /* Small Mobile */
  h1{font-size: 22px;}
  h2{font-size: 18px;}
  h3{font-size: 14px;}
  h4{font-size: 12px;}
  p{font-size: 12px;}
  h5{font-size: 10px;}
  h6{font-size: 8px;}
}

nav{
  font-family: 'inter';
}

/* General Styling */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
}

/* Remove any horizontal scrolling */
html,
body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  width: 100%;
}



/* ----------------- Header Start ----------------------- */
header {
  background-color: white;
  border-bottom: 1px solid #fff !important;
  margin-bottom: 10px;
  margin-top: 10px;
}

.nav-link {
  color: black !important;
  font-weight: 300 !important;
  text-transform: uppercase;
}

.nav-link:hover {
  color: #FF7700 !important;
  font-weight: 500 !important;
}
.nav a:hover {
  color: #FF7700 !important;
  font-weight: 500 !important;
}

.nav a {
  text-decoration: none;
  padding: 0 50px;
  font-size: 20px;
  font-weight: 300!important;
}

/* Active Page Styling */
.nav-link.active {
  color: #FF7700 !important;
  /* Change text color */
  font-weight: bold !important;
  position: relative;
}

/* Underline Effect (Matching Word Size) */
.nav-link.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  /* Adjust the position of the underline */
  width: 60%;
  /* Adjust the width based on the text length */
  height: 2px;
  background-color: #FF7700;
  transform: translateX(-50%);
  /* Centers the underline */
}


header .bi-heart,
header .bi-search,
header .bi-person,
header .bi-cart3 {
  font-size: 20px;
  color: black;
}

header a:hover i {
  color: #FF7700 !important;
}


/* Search Popup */
.search-popup {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  background: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  padding: 10px;
  border-radius: 30px;
  display: none;
  z-index: 1000;

}

.mobile-search {
  width: 90%;
  top: 60px;
}

.search-box {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  background: white;
  position: relative;
}

.search-box {
  position: relative;
}

.search-box::before {
  content: "\f002"; /* Font Awesome search icon */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: gray;
  font-size: 16px;
  transition: opacity 0.2s ease-in-out;
}

.search-input:placeholder-shown+.search-box::before {
  opacity: 1;
}

.search-input:not(:placeholder-shown)+.search-box::before {
  opacity: 0;
}

.search-box::before {
  opacity: var(--search-icon-opacity, 1);
}



.search-input {
  font-family: "Poppins", sans-serif;
  padding: 10px 10px 10px 35px; /* Ensure space for the icon */
  width: 100%;
  border: none;
  outline: none;
  font-size: 16px;
  background: transparent;
}



.search-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 20px;
  color: #000;
  margin-left: 8px;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}

.search-close:hover {
  color: #FF7700;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .search-popup {
    width: 90%;
    top: 60px;
  }
}




/* Mobile and Tablet views */

/* Custom styles for responsive navigation */
@media (max-width: 1023px) {
  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .mobile-nav {
    display: none;
  }
}

.menu-toggle {
  font-size: 24px;
  cursor: pointer;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: -250px;
  width: 250px;
  height: 100vh;
  background: #333;
  color: white;
  padding: 20px;
  transition: left 0.3s ease;
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu a {
  color: white;
  display: block;
  padding: 10px 0;
  text-decoration: none;
}

.mobile-menu a:hover {
  background: #555;
}

/* Mobile Sidebar Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 280px;
  height: 100vh;
  background: #000000;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: left 0.3s ease-in-out;
  z-index: 1000;
  color: #fff;
}

/* When menu is active */
.mobile-menu.active {
  left: 0;
}

/* Menu Header (Search & Close Icons in One Row) */
.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
  color: #fff;

}

/* Menu Icons */
.menu-icon {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #fff;

}

.menu-icon:hover {
  color: #fff;
}

/* Sidebar Links */
.menu-links a {
  display: block;
  padding: 12px 0;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
}

.menu-links a:hover {
  color: #fff;
}

/* Sidebar Icons Section */
.menu-icons {
  margin-top: 15px;
}

.menu-icons a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
}

.menu-icons i {
  font-size: 18px;
}

/* Search Bar (Initially Hidden) */
.search-bar {
  width: 0;
  overflow: hidden;
  transition: width 0.3s ease-in-out;
  margin: 10px 0;
  display: flex;
  align-items: center;
  border: 1px solid #000000;
  border-radius: 5px;
  background: #ffffff;
}

.search-bar.active {
  width: 100%;
}

.search-input {
  width: 100%;
  padding: 8px;
  border: none;
  outline: none;
  font-size: 16px;
  background: transparent;
}

/* ----------------- Header End ----------------------- */


/* ----------------- About Start ----------------------- */
  
.hero-section-a {
  background: url('../images/hero.jpg') no-repeat center center/cover;
  height: 500px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Align content to the left */
  padding-left: 10%;
  margin-bottom: 100px;
}

.hero-content {
  text-align: left;  /* Align text left */
  max-width: 500px;  /* Set max-width same as the logo */
  font-weight: 300;
}

.hero-content img {
  display: block;
  max-width: 100%;
  height: auto;
}

.hero-content p {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.5;
  color: white;
}

.hero-content a {
  display: inline-block;
  margin-top: 10px;
  font-size: 16px;
  gap: 10px;
  border-radius: 20px;
}

#btn1{
  background-color: transparent;
  border-color: #fff;
}


#hero-home{
  background-color: transparent;
  border-color: #fff;
}




/* Wrapper for Vertical Line */
.ver-line {
  position: relative;
  padding-left: 20px; /* Space between text and the line */
  display: inline-block;
}

/* Vertical Line Styling */
.ver-line::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px; /* Thickness of the line */
  background-color: black; /* Line color */
}

.btn-outline-dark{
  border-radius: 20px;
}

  
/* Section Title */
.brands-title {
  font-size: 26px;
  margin-bottom: 20px;
  color: #FF4D00;
}

/* Slider Container */
.slider-container {
  overflow: hidden;
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
}

/* Brand Track */
.brand-track {
  display: flex;
  width: fit-content;
  animation: scrollLoop 30s linear infinite;
}

/* Brand Logos */
.brand-logos {
  display: flex;
  gap: 70px;
  padding: 10px;
}

#set1, #set2{
  margin-right: 50px;

}

/* Brand Logos Images */
.brand-logos img {
  width: auto;
  height: auto;
  transition: transform 0.5s;
  cursor: grab;
}

.brand-logos img:hover {
  transform: scale(1.1);
}

/* Smooth Infinite Scrolling */
@keyframes scrollLoop {
  from { transform: translateX(0); }
  to { transform: translateX(-20%); }
}
  
  
  #titlehour{
    color: white;
    font-size: 30px;

}

/* ----------------- About End ----------------------- */


/* ----------------- Checkout Start ----------------------- */

.btn-warning:hover {
  background-color: #FF7700 !important; /* Darker shade of orange */
  border-color: #FF7700 !important;
  color: white !important;
  transform: scale(1.05); /* Slightly enlarges the button */
  transition: all 0.3s ease-in-out; /* Smooth transition */
}

#fullName {
  padding-left: 40px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 1rem;
  color: #9E9E9E;
  height: 40px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-warning {
  color: white;  
  
}

#img-fluid {
  width: 100%;
  max-width: 300px;
  height: auto;
  padding: 15px;
  background-color: #FF7700;
  box-shadow: 10px 10px;
}
#detail-form {
  margin-top: 100px !important;
}
.float-end {
  float: right;
}
.text-end {
  text-align: right;
}
.checkout-title {
  text-align: center;
  margin: 20px 0;
}
.card-custom {
  border: none;
  background-color: #f8f9fa;
}
.order-summary {
  background-color: #000;
  color: #fff;
  border-radius: 10px;
  padding: 20px;
}
#firstdiv {
  background-color: #000;
  color: #fff;
  border-radius: 0px;
  padding: 20px;
}
.order-summary .total {
  font-size: 1.5rem;
  font-weight: bold;
}
.confirm-btn {
  background-color: #ff7f00;
  border: none;
  color: #fff;
  padding: 10px 20px;
  font-size: 1.2rem;
  border-radius: 0px;
  width: 100%;
}
 

@media (max-width: 768px){
  .form-control{
    width: 580px !important;
    display: flex;
    justify-content: center;
}

.text-end{
  display: flex;
  justify-content: flex-end;
}

.order-summary {
  width: 600px !important;
} 
.confirm-btn{
  width: 600px;
}
}

@media (max-width: 480px){
  
  .form-control{
    width: 100%;
    display: flex;
    justify-content: center;
} 
.order-summary {
  width: 100% !important;
} 
.confirm-btn{
  width: 100%
}

.total{
  font-size: 15px !important;
}
}

.custom-icon-space {
  margin-left: 5px;
}
#odersummary {
  width: 90%;
  max-width: 350px;
  height: auto;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin: 10px auto;
  font-size: 16px;
}
.box {
  width: 50px;
  height: 200px;
  background-color: rgb(4, 4, 4);
  margin-top: 100px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}
.circle {
  width: 10px;
  height: 10px;
  background-color: rgb(255, 255, 255);
  border-radius: 50%;
}
#checkout {
  background-color: #ff7f00;
}

@media (max-width: 768px) {
  #odersummary {
    width: 95%;
    font-size: 14px;
    padding: 10px;
  }
  .box {
    display: none;
  }
  .col-5, .col-2, .col-1 {
    width: 100%;
    padding: 0;
  }
  .row {
    flex-direction: column;
  }
  .order-summary {
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  #odersummary {
    font-size: 12px;
    padding: 8px;
  }
  .confirm-btn {
    font-size: 1rem;
    padding: 8px 16px;
  }
}

/* ----------------- Checkout End ----------------------- */



/* ----------------- Contact Start ----------------------- */

.info-boxcontact {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 0px !;
  margin: 10px 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
  width: 100%;
  height: 200px;
}
 .info-boxcontact:hover {
  transform: translateY(-5px);
} 
 .info-boxcontact i {
  font-size: 2rem;
} 

@media (max-width: 768px) {
  .row {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
  }
} 


.navbar-brand {
  font-weight: bold;
} 

 .form-container {
  background-color: #f8f9fa;
  padding: 20px;
  max-height: 900px !important;
  height: 100%;
  border: 2px rgb(33, 33, 33); 
  box-shadow: 5px 5px 25px rgba(0, 0, 0, 0.2); /* Adds shadow */

} 

.form-control {
  border: 2px solid rgb(100, 100, 100); 
} 

 .contact-form .form-control:focus {
  border-color:#FF7700; 
  box-shadow: none; 
} 


.btn-primary {
  background-color:#FF7700 !important; 
  color: white;
  border: 0px;
} 
 .info-boxcontact {
  height: 100%;
  width: 100%;
} 

 .social-icons img {
  transition: transform 0.3s ease;
  place-items: left !important;
  
} 

.social-icons img:hover {
  transform: scale(1.2);
}

#contact_image{
  max-height: 900px;
  width: 100%;
}

#contact{
  font-size: medium;
  font-weight: bolder;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

#carttitle-contact{
  font-size: medium;
  font-weight: bolder;
  margin-bottom: 50px;
}

#emailcontact {
  padding-left: 40px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 1rem;
  color: #9E9E9E;
  height: 40px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

#messagecontact {
  padding-left: 40px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 1rem;
  color: #9E9E9E;
  height: 150px !important;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  
}

 #contactForm {
      max-width: 600px;
      margin: auto;
      padding: 20px;
      border-radius: 10px;
    }

/* ----------------- Contact End ----------------------- */


/* ----------------- Detail Start ----------------------- */

/* Detail Page */

.tg-custom-product {
  background-color: black;
  padding: 40px 20px;
}

.tg-goal {
  background-color: black;
  padding: 100px 0;
}

.tg-custom-div {
  background-color: black;
  padding: 10px 20px;
  border: 2px solid white;
  display: inline-block;
}

.tg-nav-underline {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tg-nav-underline .tg-nav-link {
  color: white;
  text-decoration: none;
  padding: 5px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 16px;
}

.tg-nav-underline .tg-nav-link.active {
  color: white;
  border-bottom: 3px solid #FC8C1C;
}

.tg-nav-divider {
  width: 1px;
  height: 30px;
  background-color: white;
  margin: 0 15px;
  
}

.tg-detail-title{
  font-size: 20px;
  letter-spacing: 3px;
}

.tg-caption-title {
  color: #FC8C1C;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  letter-spacing: 5px;
  margin: -20px 0;
}

.tg-mainbutton {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tg-btn-add-to-cart,
.tg-btn-buy {
  display: flex;
  justify-content: center; 
  align-items: center; 
  width: 100%;
  max-width: 280px;
  height: 55px;
  font-size: 16px;
  border: none;
  text-align: center;
}

.tg-btn-add-to-cart {
  background-color: white;
}

.tg-btn-buy {
  background-color: #FC8C1C;
  color: white;
}

.tg-online {
  text-align: center;
  padding: 100px 0;
}

.tg-onlinebutton {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}

.tg-onlinebutton button {
  background-color: white;
  font-family: 'Poppins', sans-serif;
  border: 1px solid #c5c5c5;
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 10px;
  width: 100%;
  max-width: 200px;
}

.tg-goal h1 {
  color: white;
  font-size: 2.5rem;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 1px;
  margin: 0;
}

.tg-goal h1 span {
  color: #FC8C1C;
}

.tg-goal .tg-line {
  width: 100%;
  max-width: 500px;
  height: 0.7px;
  background-color: white;
  margin: 20px auto;
}

.tg-goal h6 {
  color: white;
  font-size: 1rem;
  text-align: center;
  max-width: 600px;
  margin: 20px auto;
  line-height: 1.6;
}

.tg-detail-nav {
  display: flex;
  justify-content: center;
  margin: 40px 0;
  padding: 10px 0;
}

.tg-detail-nav .tg-nav-link {
  color: black;
  text-decoration: none;
  padding: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
}

.tg-detail-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.tg-detail {
  flex: 1 1 30%;
  min-width: 300px;
  text-align: center; 
}

.tg-detail h1 {
  color: black; 
  font-size: 20px;
}

.tg-detail-nav .tg-nav-link.active {
  color: black;
  border-bottom: 3px solid #FC8C1C;
}

.tg-btn-link {
  color: black;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tg-btn-link i {
  color: black;
}

.tg-card-body {
  color: black;
  font-size: 14px;
}

.tg-divider {
  width: 100%;
  height: 0.5px;
  background-color: #c5c5c5;
  margin: 20px 0;
}

.tg-specification-list {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

@media (max-width: 768px) {
  .tg-goal h1 {
    font-size: 2rem;
  }

  .tg-goal h6 {
    font-size: 0.9rem;
  }

  .tg-onlinebutton button {
    max-width: 150px;
  }
}

@media (max-width: 576px) {
  .tg-detail-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .tg-detail-nav .tg-nav-underline {
    flex-wrap: wrap;
    justify-content: center;
  }

  .tg-detail-nav .tg-nav-item {
    flex: 1;
    text-align: center;
  }

  .tg-detail-nav .tg-nav-link {
    padding: 10px;
    white-space: nowrap;
  }
}

/* Specifications Section */
.specifications-container {
  max-width: 600px !important;
  margin: 40px auto;
}

.accordion-title{
  margin-bottom: 80px !important;
}

.accordion-item {
  border: none;
  border-bottom: 1px solid #ddd;
}

.accordion-button {
  background-color: white;
  box-shadow: none;
  color: black;
  font-weight: 500;
  padding: 15px;
  font-size: 16px;
  margin: 20px 0 !important;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background-color: #ff800019;
  color: black;

}


.accordion-button::after {
  font-size: 14px;
  transition: transform 0.3s ease-in-out;
}

.accordion-button[aria-expanded="true"]::after {
  transform: rotate(180deg); /* Rotate arrow when expanded */
}

.accordion-body {
  font-size: 14px;
  color: #666;
  padding: 15px;
}

/* ----------------- Detail End ----------------------- */





/* ----------------- Faq Start ----------------------- */

.first{
  font-size: 40px;
  
  letter-spacing: 2px;
  margin-top: 90px;
}
.ff {
   text-align: justify;
   text-justify: inter-word;
   margin-top: 80px;
   font-size: 16px;
}

#breaklinefaq{
  height: 2px;
  border-width:0;
  color:#FC8C1C;
  background-color:#FC8C1C;
  margin-top: 80px;
}
.bi-arrow-down-circle{
  font-size: 30px; 
}
#breaklinefaq{
  height: 2px;
  border-width:0;
  color:#FC8C1C;
  background-color:#FC8C1C;
  margin-top: 40px;
}

/* Custom CSS */

.first {
  font-size: 40px;
  letter-spacing: 2px;
  margin-top: 90px;
}

.ff {
  text-align: justify;
  margin-top: 80px;
  font-size: 16px;
}

.breakline, .breakline2 {
  height: 2px;
  border-width: 0;
  background-color: #FC8C1C;
  margin-top: 80px;
}

.breakline2 {
  margin-top: 40px;
}

.faq-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 500px;
  padding: 15px 20px;
  border: 2px solid black;
  border-radius: 15px;
  font-weight: bold;
  font-size: 16px;
  background: white;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
}

.faq-box:hover {
  background: #f8f8f8;
  box-shadow: 6px 6px 15px rgba(0, 0, 0, 0.3);
}

.faq-icon {
  font-size: 24px;
}

.faq-answer {
  display: none;
  padding: 10px 20px;
  border-left: 3px solid #FC8C1C;
  font-size: 14px;
  color: #333;
  margin-top: 5px;
  background: #fcac5b;
  border: 2px solid #fcac5b;
  border-radius: 15px;
  width: 100%;
  max-width: 500px;
}

.faq-answer.active {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}
.right_side{
  margin-top: 90px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .first {
    font-size: 30px;
    margin-top: 50px;
  }

  .ff {
    margin-top: 40px;
    font-size: 14px;
  }

  .faq-box {
    max-width: 100%;
    font-size: 14px;
  }

  .faq-answer {
    font-size: 12px;
  }

  .right_side {
    margin-top: 50px;
  }

  .col-5, .col-2 {
    width: 100%;
    padding: 0;
  }

  .row {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .first {
    font-size: 24px;
  }

  .ff {
    font-size: 12px;
  }

  .faq-box {
    padding: 10px 15px;
  }

  .faq-answer {
    padding: 8px 15px;
  }
}

/* ----------------- Faq End ----------------------- */



/* ----------------- Home Start ----------------------- */


/* home */
.hero-section-h {
  background: url('../images/main1.gif') no-repeat center center/cover;
  padding: 100px 0;
  min-height: 70vh;
}

.hero-title-home{
  font-size: 50px;
  color: #fff;
  margin-bottom: 10px;
}

.btn-primary-hero {
  background-color: #fc8c1c;
  color: white;
  border-radius: 50px;
  font-size: 15px;
  margin-top: 30px !important;
}


.card-h {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border: none;
  border-radius: 0px;
}

.customization-section-h {
  background: #333;
  padding: 80px 0;
  background: url('../images/2nd hero.png') no-repeat center center/cover;
}
.category-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 16px;
  margin-bottom: 30px;
}

.tab {
  cursor: pointer;
  color: #666;
  font-weight: 500;
  position: relative;
}

.tab.active {
  color: #f58220;
  font-weight: 600;
}

.tab.active::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #f58220;
  position: absolute;
  bottom: -4px;
  left: 0;
}



@media (max-width: 992px) {
  .homepage .row {
    flex-direction: row;
}
}




.news-heading-h {
  letter-spacing: 2px;
  font-size: 30px;
  color: black;
  font-weight: 600;
  text-align: center;
  margin-top: 20px;
}

.news-divider-h{
  width: 200px;
  height: 2.5px;
  background-color: #FC8C1C;
  margin: 10px auto 50px;
}

.news-date-h{
  font-size: 13px;
  font-weight: 400;
  text-align: left;
}

.news-title-h{
  font-size: 13px;
  font-weight: 400;
  text-align: left;
}

.news-desc{
  font-size: 12px;
  font-weight: 300;
  text-align: left;
}

.news-link{
  color: #FC8C1C;
  font-size: 12px;
  text-align: left;
  display: block;
}

.news-card{
  width: 18rem;
  border: none;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.news-img-container{
  position: relative;
  overflow: hidden;
  height: 330px;
}

.news-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease-in-out, height 0.4s ease-in-out;
}

.news-card-body{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  background: rgba(255, 255, 255, 0.9);
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

.news-card:hover .news-img{
  height: 200px;
}

.news-card:hover .news-card-body{
  opacity: 1;
}

.carousel-indicators-h{
  position: absolute;
  bottom: -50px;
}

.carousel-indicators button{
  width: 9px !important;
  height: 9px !important;
  border-radius: 100% !important;
  background-color: #d9d9d9 !important;
  border: none !important;
  margin: 0 5px !important;
  opacity: 1 !important;
}

.carousel-indicators .active {
  background-color: #FC8C1C !important;
}


     /* Testimonials Section */
     .testimonials-section {
      background: white;
      padding: 60px 0;
    }
    
    .testimonial-carousel {
      max-width: 800px;
      margin: 0 auto;
      position: relative;
    }
    
    .carousel-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    
    .carousel-btn {
      background: transparent;
      border: none;
      font-size: 24px;
      cursor: pointer;
      color: #333;
    }
    
    .testimonial-card {
      background: white;
      border-radius: 12px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      padding: 20px;
      text-align: center;
      width: 100%;
      max-width: 600px;
    }
    
    .profile-images {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-bottom: 10px;
    }
    
    .profile-images img {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      object-fit: cover;
    }
    
    .stars {
      color: orange;
      margin: 10px 0;
    }
    
    .testimonial-text {
      font-style: italic;
      margin: 10px 0;
    }
    
    .testimonial-author {
      font-weight: bold;
      color: #333;
    }
    
    .testimonial-date-location {
      color: #777;
    }


/* newsletter subscription */


/* Wrapper with Background */
.wrapper-n {
  display: flex;
  justify-content: left;
  align-items: center;
  height: 400px;
  background: url('../images/2nd\ hero.png') no-repeat center center/cover;
}

/* Subscription Box */
.subscribe-container-n {
  display: flex;
  align-items: center;
  justify-content: start;
  background: rgba(4, 4, 4, 0.5);
  padding: 50px;
  color: white;
  width: 45%;
  max-width: 500px;
  margin: 60px;
  border-radius: 10px;
  backdrop-filter: blur(5px);

}


/* Text Content */
.subscribe-content-n {
  max-width: 400px;
}

.subscribe-title-n {
  font-size: 22px;
  margin-bottom: 10px;
}

.subscribe-text-n {
  font-size: 14px;
  margin-bottom: 20px;
  color: #ddd;
}

/* Input Field & Button */
.input-container-n {
  display: flex;
  align-items: center;
  border: 1px solid #fff;
  border-radius: 50px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}

.subscribe-input-n {
  flex: 1;
  padding: 10px;
  border: none;
  outline: none;
  background: transparent;
  color: white;
  font-size: 14px;
}

.subscribe-input-n::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.subscribe-button-n {
  background: transparent;
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 16px;
  border-radius: 50%;
  transition: background 0.3s;
  transform: rotate(45deg); /* Rotate arrow when expanded */

}

.subscribe-button-n:hover {
  background: #ff9f3c;
}

/* Responsive */
@media (max-width: 768px) {
  .subscribe-container-n {
      width: 80%;
      padding: 20px;
  }

  .subscribe-title-n {
      font-size: 18px;
  }

  .subscribe-text-n {
      font-size: 12px;
  }

  .subscribe-input-n {
      font-size: 12px;
  }
}


.custom-hr-n {
  border: none;
  height: 1px;
  background-color: #000;
  width: 80%; /* Adjust width to add margin on both sides */
  margin: 30px auto; /* Centers the line with space on left and right */
}




/* Watch Selection Section Styling */
.watch-selector-section-s {
  text-align: center;
  margin-top: 40px;
  padding: 0 15px;
}

.watch-title-s {
  font-weight: 600;
  font-size: 24px;
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.watch-title-s::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background-color: orange !important;
  margin: 8px auto 0;
  color: #000;
}

/* Filter controls container */
.filter-controls-s {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin: 20px auto 0;
  max-width: 1000px;
}

/* Form controls */
#filterForm .form-control {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 8px 12px;
  font-size: 14px;
  color: #333;
  background-color: #fff;
  transition: all 0.3s;
  width: 100%;
}

#filterForm .form-control:focus {
  border-color: orange;
  box-shadow: 0 0 0 0.2rem rgba(255, 165, 0, 0.25);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .filter-controls-s {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 0 15px;
  }
  
  #watchselection {
    width: 100% !important;
    max-width: 100% !important;
  }
  
  .watch-selector-section-s {
    margin-top: 20px;
  }
}

/* For very small screens */
@media (max-width: 576px) {
  .watch-title-s {
    font-size: 20px;
  }
  
  #filterForm .form-control {
    padding: 6px 10px;
    font-size: 13px;
  }
}


/* Carousel Container */
.carousel-container-s {
  position: relative;
  width: 80%;
  margin: auto;
  overflow: hidden;
  padding: 80px 0;
}

.carousel-track-s {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.6s ease-in-out;
}

.carousel-item-s {
  position: relative;
  width: 150px;
  height: auto;
  text-align: center;
  transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
  opacity: 0.5;
  transform: scale(0.8);
  flex-shrink: 0; 
}

.carousel-item-s img {
  width: 100%;
  max-width: 150px;
  transition: transform 0.3s ease-in-out;
}

.carousel-item-s.active-s {
  width: 250px;
  opacity: 1;
  transform: scale(1.2);
}

.carousel-item-s.active-s img {
  max-width: 240px;
}

/* Navigation Buttons */
.nav-button-s {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 18px;
  z-index: 10;
}

.prev-button-s {
  left: 10px;
}

.next-button-s {
  right: 10px;
}

.nav-button-s:hover {
  background: #fc8c1c;
}

/* Mobile view with exactly 3 items */
@media (max-width: 768px) {
  .carousel-container-s {
      width: 320px; 
      padding: 40px 0;
      overflow: hidden;
  }
  
  .carousel-track-s {
      width: 320px; 
  }
  
  .carousel-item-s {
      width: 90px; 
      opacity: 0.5;
      transform: scale(0.8);
  }
  
  .carousel-item-s.active-s {
      width: 140px;
      opacity: 1;
      transform: scale(1.2);
  }
  
  .carousel-item-s img {
      max-width: 90px;
  }
  
  .carousel-item-s.active-s img {
      max-width: 120px;
  }
}

      .action-icons {
        position: absolute;
        top: 10px;
        right: 10px;
        display: flex;
        flex-direction: column;
        align-items: center; /* Ensures perfect vertical alignment */
        gap: 8px; /* Adjust spacing between icons */
    }
    
    .action-icon {
        background: #fff;
        border: 1px solid #ddd;
        width: 25px; /* Ensures uniform size */
        height: 25px; /* Ensures uniform size */
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 12px; /* Keeps all icons the same size */
        line-height: 1; /* Prevents extra spacing issues */
    }

    @media(max-width:768px){
      .action-icon {
        background: #fff;
        border: 1px solid #ddd;
        width: 15px; /* Ensures uniform size */
        height: 15px; /* Ensures uniform size */
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 12px; /* Keeps all icons the same size */
        line-height: 1; /* Prevents extra spacing issues */
    }
    }
    
    .action-icon i {
        font-size: 12px; /* Ensures all icons are the same size */
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .action-icon[data-action="favorite"] i {
        font-size: 13px; /* Adjust specifically for heart icon if needed */
        vertical-align: middle; /* Ensures perfect vertical alignment */
        margin-left: -1px;
    }

    @media(max-width:768px){
       .action-icon[data-action="favorite"] i {
        font-size: 8px; 
        vertical-align: middle; 
        margin-left: -1px;
    }
    }

    @media(max-width:768px){
      .action-icon i {
        font-size: 8px; /* Ensures all icons are the same size */
        display: flex;
        align-items: center;
        justify-content: center;
    }
   }
    
    .action-icon.active {
        background: #FC8C1C;
        border-color: #FC8C1C;
        color: white;
    }
    
    .action-icon:hover {
        transform: scale(1.1);
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }
    

    
    /* Promo Section */
    .promo-section {
      background: url('../images/p2.jpg') no-repeat center center/cover;
      height: 400px;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      padding-right: 80px;
    }
     .promo-section2 {
      background: url('../images/p6.jpg') no-repeat center center/cover;
      height: 400px;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      padding-left: 80px;
    }
    
    .promo-content {
      background: rgba(0, 0, 0, 0.4);
      color: white;
      padding: 30px;
      border-radius: 10px;
      max-width: 400px;
      text-align: left;
      backdrop-filter: blur(5px);
    }
    
    .promo-text h2 {
      font-size: 22px;
      margin-bottom: 20px;
    }
    
    .promo-text p {
      font-size: 14px;
      margin-bottom: 20px;
      color: #ddd;
    }
    
    .promo-btn {
      background-color: transparent;
      color: white;
      padding: 10px 20px;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      margin-top: 15px;
      transition: background 0.3s;
      border: 1px solid #fff;
      border-radius: 50px;
      
    }
    
    .promo-btn:hover {
      background-color: darkorange;
    }
    .card-N{
      border-radius: 0px;
    }
    .brands {
      text-align: center;
      margin-top: 50px;
    }
    
    .brands h2 {
      margin-bottom: 20px;
    }
    
    .brand-logos img {
      width: 100px;
      margin: 10px;
    }
    
    /* Responsive Adjustments for devices */
    @media (max-width: 768px) {
      .hero-section {
        padding: 60px 0;
      }
    
      .hero-section h1 {
        font-size: 2rem;
      }
    
      .btn-primary-hero {
        font-size: 0.9rem;
      }
    
      .card {
        margin-bottom: 20px;
      }
    
      .customization-section {
        padding: 40px 0;
      }
    
      .watch-carousel {
        max-width: 100%;
      }
    
      .watch-card {
        min-width: 120px;
      }
    
      .watch-card img {
        max-width: 100px;
      }
    
      .featured-image {
        max-width: 120px;
      }
    
      .promo-section {
        padding-right: 20px;
        justify-content: center;
      }
    
      .promo-content {
        max-width: 80%;
        padding: 15px;
      }
    
      .promo-text h2 {
        font-size: 20px;
      }
    
      .promo-text p {
        font-size: 14px;
      }
    
      .testimonial-card {
        padding: 15px;
      }
    
      .profile-images img {
        width: 40px;
        height: 40px;
      }
    
      .testimonial-text {
        font-size: 0.9rem;
      }
    }
    
    @media (max-width: 576px) {
      .hero-section {
        padding: 40px 0;
      }
    
      .hero-section h1 {
        font-size: 1.5rem;
      }
    
      .btn-primary-hero {
        font-size: 0.8rem;
      }
    
      .filter-controls {
        flex-wrap: wrap;
      }
    
      .filter-btn {
        margin: 5px;
        font-size: 0.8rem;
        border-color: black !important;
        color:black !important;
      }
    
      .watch-card {
        min-width: 100px;
      }
    
      .watch-card img {
        max-width: 80px;
      }
    
      .featured-image {
        max-width: 100px;
      }
    
      .promo-section {
        height: 200px;
      }
    
      .promo-content {
        max-width: 90%;
        padding: 10px;
      }
    
      .promo-text h2 {
        font-size: 18px;
      }
    
      .promo-text p {
        font-size: 12px;
      }
    
      .testimonial-card {
        padding: 10px;
      }
    
      .profile-images img {
        width: 30px;
        height: 30px;
      }
    
      .testimonial-text {
        font-size: 0.8rem;
      }
    }

    a:link,a:active,a:visited,a:hover{
      color:#ffffff;
  }
  
  .outerdiv
  {
      width: 100%;
      min-height: 100vh;
      background: #EDF2F8;
      display: flex;
      align-items: center;
      justify-content: center;
  }
  .innerdiv
  {
      transform: scale(0.9);
      margin: 1rem;
      display: grid;
      grid-gap: 1.5rem;
      grid-template-rows: repeat(2,22rem);
      grid-template-columns: repeat(4,17rem);
  }
  .eachdiv
  {
      padding: 1rem 2rem;
      border-radius: 0.8rem;
      box-shadow: 5px 5px 20px #6d6b6b6b;
      color: white;
  }
  .div1
  {
      background: #000000ee;
      grid-column: 1/3;
      grid-row: 1/2;
      background-image: url(https://raw.githubusercontent.com/RahulSahOfficial/testimonials_grid_section/5532c958b7d3c9b910a216b198fdd21c73112d84/images/bg-pattern-quotation.svg);
      background-repeat: no-repeat;
      background-position-x: 25rem;
  }
  .div2
  {
      background:#49556B;
      grid-column: 3/4;
      grid-row: 1/2;
  }
  .div3
  {
      background: white;
      grid-column: 4/5;
      grid-row: 1/3;
      color: black;
  }
  .div4
  {
      background: white;
      grid-column: 1/2;
      grid-row: 2/3;
      color: black;
  }
  .div5
  {
      background: #18202D;
      grid-column: 2/4;
      grid-row: 2/3;
  }
  .userdetails
  {
      display: flex;
  }
  .imgbox
  {
      margin-right: 1rem;
  }
  .imgbox img
  {
      border-radius: 50%;
      width: 2rem;
      border: 2px solid #cec5c5;
  }
  .detbox
  {
      display: flex;
      flex-direction: column;
      justify-content: center;
  }
  .detbox p
  {
      margin: 0;
  }
  .detbox .name
  {
      color: hsl(0, 0%, 100%);
      font-size: 0.9rem;
      margin-bottom: 0.1rem;
      font-weight: 600;
  }
  .detbox .name.dark
  {
      color: #49505A;
  }
  .detbox .designation
  {
      color: hsl(0, 0%, 81%);
      opacity: 50%;
      font-size: 0.8rem;
  }
  .detbox .designation.dark
  {
      color: #49505A;
  }
  .review h4
  {
      font-size: 1.4rem;
      color: #ffffff;
      font-weight: 600;
      line-height: 1.5;
      margin-bottom: 0.8rem;
  }
  .review.dark h4{
      color:#4B5258;
  }
  .review p
  {
      font-size: 0.95rem;
      color: #ffffff;
      font-weight: 500;
      opacity: 50%;
      line-height: 1.5;
  }
  .review.dark p{
      color: #0e0e0e;
  }
  .attribution
  {
      font-size: 1rem;
      line-height: 1.5;
      position: fixed;
      bottom: 1rem;
      right: 1rem;
      text-align: right;
  }
  .attribution a
  {
      text-decoration: none;
  }
  
  @media only screen and (max-width: 1000px)
  {
      .innerdiv
      {
          transform: scale(0.7);
      }
  }
  @media only screen and (max-width: 800px)
  {
      .innerdiv
      {
          transform: scale(0.6);
      }
  }
  @media only screen and (max-width: 600px)
  {
      .div1 {
          background-position-x: 10rem;
      }
      .innerdiv
      {
          display: flex; 
          flex-direction: column;
          transform: scale(1);
          margin: 2rem;
          margin-bottom: 5rem;
      }
      .attribution
      {
          position: relative;
      }
  }

/* ----------------- Home End ----------------------- */



/* ----------------- Login Start ----------------------- */

/* Modified input group to create proper spacing */
.input-group {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  padding-left: 10px;
}

/* Adjusted circular icon positioning */
.input-group-text {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50% !important;
  background-color: orange;
  color: white;
  flex-shrink: 0;
  border: none;
  position: relative;
  z-index: 2;
  margin-right: 0;
}

.input-group .btn {
  background: none;
  border: none;
  color: #666;
  padding: 0 10px;
}

.input-group .btn:hover {
  color: rgb(0, 0, 0);
}

.input-group .btn:focus {
  box-shadow: none;
}

@media (max-width: 768px) {
  .form-control {
      width: 50% !important;
  }
}


/* Adjust password input padding to prevent overlap with eye icon */
input[type="password"] {
  padding-right: 40px !important;
}

.bg-orange {
  background-color: orange;
}

.btn-dark {
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 10px;
}

.btn-dark:hover {
  background-color: #333;
}

hr {
  margin-top: 0;
}

/* Adjusted input field styles */
.form-control {
  flex-grow: 1;
  height: 50px;
  border-radius: 10px !important;
  border: 1px solid #ddd;
  padding: 0 20px;
  /* Adjusted padding */
  width: 150px;
}

/* Remove Bootstrap's default border radius overrides */
.input-group .form-control {
  border-radius: 10px !important;
}

.input-group .input-group-text {
  border-radius: 50% !important;
}

/* Adjusted input field styles */
.watchselection {
  flex-grow: 1;
  height: 50px;
  border-radius: 10px !important;
  border: 1px solid #ddd;
  padding: 0 20px;
  width:100%;
}

@media (max-width:900px){
  .watchselection {
  
    width:500px !important;
    max-width: 500px !important;
  }
}
/* Remove Bootstrap's default border radius overrides */
.input-group .form-control {
  border-radius: 10px !important;
}

.input-group .input-group-text {
  border-radius: 50% !important;
}

.form-control:focus {
  border-color: rgb(255, 162, 0);
  box-shadow: none;
}

p a {
  font-weight: bold;
  color: orange;
}

p a:hover {
  text-decoration: underline;
}

.text-decoration-none {
  color: #000 !important;
  text-decoration: solid;
}

main {
  padding: 20px;
}

main h2 {
  font-weight: bold;
  font-size: 2rem;
}

input::placeholder {
  color: #aaa;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  main h2 {
    font-size: 1.8rem;
  }

  .input-group-text {
    font-size: 1rem;
  }

  .form-control {
    font-size: 0.9rem;
    
  }

  .btn-dark {
    font-size: 0.9rem;
  }

  p a {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  main h2 {
    font-size: 1.5rem;
  }

  .input-group-text {
    font-size: 0.9rem;
  }

  .form-control {
    font-size: 0.8rem;
  }

  .btn-dark {
    font-size: 0.8rem;
  }

  p a {
    font-size: 0.8rem;
  }

  .d-flex {
    flex-direction: column;
    align-items: center;
  }

  .d-flex div {
    margin-bottom: 10px;
  }
}

/* ----------------- Login End ----------------------- */


/* ----------------- Mycart Start ----------------------- */



/* Title */
.cart-title {
  text-align: center;
  margin-top: 20px;
}

.cart-divider {
  width: 200px;
  height: 2px;
  background-color: #FC8C1C;
  border: none;
  margin: 10px auto;
}

/* Cart Layout */
.cart-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  padding: 20px;
}

/* Left Side: Cart Items */
.cart-items {
  margin-left: 100px;
}

.cart-card {
  display: flex;
  align-items: center;
  background-color: rgba(252, 140, 28, 0.12);
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 15px;
  height: 150px;
}

.cart-item-image {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
}

.cart-item-details {
  flex-grow: 1;
  margin-left: 20px;
}

.cart-item-name {
  font-weight: 600;
}

.cart-item-price {
  color: #FC8C1C;
}

.cart-item-discount {
  color: #C5C5C5;
}

/* Quantity Selector */
.cart-quantity-container {
  display: flex;
  align-items: center;
  border: 2px solid #FC8C1C;
  border-radius: 5px;
  overflow: hidden;
  width: 100px;
  justify-content: space-between;
  background-color: #FC8C1C;
  padding: 2px 5px;
}

.cart-quantity {
  width: 60px;
  text-align: center;
  border: none;
  font-size: 16px;
  font-weight: bold;
  background: none;
}

.cart-quantity-buttons {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.qty-btn {
  background-color: #FC8C1C;
  color: black;
  border: none;
  width: 20px;
  height: 15px;
  cursor: pointer;
  font-size: 12px;
  text-align: center;
  line-height: 15px;
  padding: 0;
  font-weight: bold;
}

/* Price & Delete Icon */
.cart-total-price {
  margin-left: 40px;
  display: flex;
  flex-direction: column;
  font-weight: bold;
}

.cart-delete {
  cursor: pointer;
  font-size: 18px;
  margin-left: 40px;
}

/* Price Section */
.price-container {
  background-color: black;
  color: white;
  padding: 50px;
  width: 90%;
  margin-left: 50px;
  position: relative;
}


.price-title {
  font-size: 16px;
  margin-bottom: 20px;
}

.price-box {
  background: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 10px;
  border: 1px solid white;
}

.price-row {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  margin-bottom: 8px;
  font-weight: bold;
}

.price-ruler{
  width: 100%;
  background-color: #fff !important;
  color: #ffffff !important;
  height: 1px;
}

.total p {
  font-weight: bold;
  font-size: 18px;
}

/* Small Vertical Bar with Dots */
.price-bar {
  position: absolute;
  left: -30px;
  top: 40%;
  transform: translateY(-50%);
  width: 50px;
  height: 200px;
  background-color: black;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4px 0;
  justify-content: space-evenly;
}

/* Default Dot Style */
.dot-link {
  width: 10px;
  height: 10px;
  margin-right: 15px;
  background-color: white;
  border-radius: 50%;
  display: block;
  transition: background-color 0.3s ease-in-out;
}

/* Active Dot */
.dot-link.active {
  background-color: #ff7f00;
}


/* Checkout Button */
.checkout-btn {
  background-color: #FC8C1C;
  color: white;
  width: 90%;
  padding: 15px;
  border: none;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  text-align: center;
  margin-left: 50px;
}

.checkout-arrow {
  margin-left: 10px;
  font-size: 20px;
}



@media (max-width: 1200px) { /* Large Screens */
  .cart-items {
      margin-left: 50px;
  }
  
  .price-container {
      width: 85%;
      margin-left: 30px;
      padding: 40px;
  }
  
  .price-bar {
      left: -25px;
      height: 180px;
  }
  
  .cart-item-name {
      font-size: 15px;
  }

  .checkout-btn {
      margin-left: 30px;
      width: 85%;
  }
}

@media (max-width: 992px) { /* Tablets */
  .row {
      flex-direction: column;
  }
  
  .col-lg-7, .col-lg-5 {
      width: 100%;
      max-width: 100%;
  }
  
  .price-container {
      width: 90%;
      margin: 30px auto;
      padding: 30px;
      margin-bottom: 20px;
  }
  
  
  .checkout-btn {
      margin-top: -35px;
      margin-left: 35px;
      width: 90%;
  }
  
  .cart-items {
      margin-left: 30px;
      margin-right: 30px;
  }
}

@media (max-width: 768px) { /* Mobile */
  .cart-card {
      height: auto;
      padding: 10px;
      flex-wrap: wrap;
      position: relative;
  }
  
  .cart-item-image {
      width: 80px;
      height: 80px;
  }
  
  .cart-item-details {
      margin-left: 15px;
      width: 50%;
  }
  
  .cart-quantity-container {
      width: 60px;
      margin-top: 30px;
  }
  
  .cart-total-price {
      margin-left: 20px;
      font-size: 14px;
      margin-left: 95px;
      flex-direction: row;

  }
  
  .cart-delete {
      position: absolute;
      top: 15px;
      right: 15px;
  }
  
  .price-container {
      padding: 20px;
      margin: 20px auto;
      margin-bottom: 10px;
      width: 80%;

  }
  .price-box {
      width: 80%;
      margin-left: 35px;        

  }
  
  .checkout-btn {
      padding: 12px;
      font-size: 16px;
      margin-left: 51px;
      width: 80%;
  }
  .product-card + div {
    display: block !important;
    text-align: left !important;
    padding-left: 15px;
}

.productname, .price {
    text-align: left !important;
    width: 100% !important;
    display: block !important;
    margin-left: 0 !important;
}

.price {
    margin-top: 5px !important;
}

.description {
    text-align: left !important;
    padding-left: 15px;
}

.rating {
    justify-content: flex-start !important;
    padding-left: 15px;
}

.add-to-cart {
    margin-left: 15px !important;
}
}


@media (max-width: 480px) {
  /* Center title and divider */
  .cart-title {
      font-size: 22px;
  }
  .cart-divider {
      width: 140px;
      height: 2px;
  }

  /* Adjust container for better spacing */
  .container {
      padding: 0 5px;
  }

  /* Cart Items */
  .cart-items {
      margin-left: 0;
      width: 100%;
  }

  .cart-card {
      flex-direction: row;
      flex-wrap: wrap;
      height: auto;
      padding: 10px;
      justify-content: space-between;
  }

  .cart-item-image {
      width: 75px;
      height: 75px;
  }

  .cart-item-details {
      flex-grow: 1;
      margin-left: 8px;
      min-width: 50%;
  }

  .cart-item-name {
      font-size: 14px;
  }

  .cart-item-price {
      font-size: 13px;
  }

  .cart-item-discount {
      font-size: 12px;
  }

  .cart-quantity-container {
      width: 50px;
      padding: 2px;
      margin-top: 30px;
  }

  .cart-quantity {
      font-size: 14px;
  }

  .qty-btn {
      width: 16px;
      height: 14px;
      font-size: 12px;
  }

  .cart-total-price {
      font-size: 14px;
      text-align: left;
      margin-left: 85px;
  }

  .cart-total-price{
  flex-direction: row;
      
  }

  
  .cart-delete {
      font-size: 16px;
      text-align: center;
      margin-left: 10px;
  }

  /* Price Details */
  .price-container {
      padding: 15px;
      width: 90%;
      margin: 20px 0;
      text-align: center;
      margin-left: 20px;
      margin-bottom: 10px;
  }

  .price-title {
      font-size: 16px;
  }

  .price-box {
      padding: 10px;
  }

  .price-row {
      font-size: 14px;
  }

  .total p {
      font-size: 16px;
  }

  /* Checkout Button */
  .checkout-btn {
      width: 90%;
      margin: 10px 0;
      padding: 12px;
      font-size: 16px;
      margin-left: 20px;
      margin-top: -25px;
  }

  /* Hide the vertical price bar */
  .price-bar {
      position: absolute;
  left: -20px;
  top: 40%;
  transform: translateY(-50%);
  width: 30px;
  height: 150px;
  background-color: black;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4px 0;
  justify-content: space-evenly;
  }

  .dot-link {
      width: 10px;
      height: 10px;
      margin-right: 0px;
      background-color: white;
      border-radius: 50%;
      display: block;
      transition: background-color 0.3s ease-in-out;
  }
}

.wishlist-icon-m {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 1.25rem;
  cursor: pointer;
  background-color: #FFFFFF;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wishlist-btn-m {
  font-size: 15px;
  cursor: pointer;
  /* color: gray !important; */
  transition: color 0.3s ease-in-out;
}

.wishlist-btn-m.active {
  color: #F09342 !important; /* Filled color */
}




/* ----------------- Mycart End ----------------------- */


/* ----------------- News Start ----------------------- */


.news-title {
  padding-top: 30px !important;
}

h1 {
  font-size: 30px;
  color: #000000;
}

.card {
  border: none;
  border-radius: 0px;
}

.card-title {
  font-size: 18px;
  font-weight: 600;
}

.card img {
  border-radius: 0px;
}

.card-body .date {
  font-size: 14px;
  color: #000000;
}

.read-more-btn {
  font-size: 14px;
  border-radius: 20px;
  padding: 5px 30px;
  color: #000 !important;
}



/* Button Hover */
.read-more-btn:hover {
  background: #000;
  color: #fff !important;
}

/* Scrollable Image Section */
.space {
  margin-bottom: 50px !important;
}

.scroll-container {
  width: 100%;
  overflow-x: auto;
  padding-bottom: 20px;
}

/* Custom Scrollbar */
.scroll-container::-webkit-scrollbar {
  width: 200px;
  height: 8px;
}

/* Scrollbar Track */
.scroll-container::-webkit-scrollbar-track {
  background: grey !important;
  border-radius: 0px;

}

/* Scrollbar Thumb */
.scroll-container::-webkit-scrollbar-thumb {
  background: #FF7700 !important;
  border-radius: 0px;
}




/* Hide scrollbar arrows */
.scroll-container::-webkit-scrollbar-button {
  display: none;
}

/* Flex container */
.scroll-content {
  display: flex;
  gap: 20px;
  padding-bottom: 100px;
}

/* Image Card */
.image-card {
  position: relative;
  width: 300px;
  height: 400px;
  overflow: hidden;
  border-radius:  0px;
  flex-shrink: 0;
}

/* Image */
.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay */
.overlay {
  position: absolute;
  left: 10px;
  bottom: 10px;
  color: white;
  padding: 10px;
  border-radius: 5px;
}

/* Read More Button */
.btn-read {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}



/* Newsletter Container */
.newsletter-container {
  width: 100%;
  max-width: 500px;
  text-align: center;
  padding: 100px 20px;
  margin: 0 auto; /* Ensures center alignment horizontally */
}

/* Title */
.newsletter-title {
  font-size: 30px;
  font-weight: bold;
}

/* Description */
.newsletter-description {
  font-size: 16px;
  max-width: 400px;
  margin: 10px auto 20px;
}

/* Form Styling */
.newsletter-form {
  width: 100%;
  max-width: 400px;
  border-bottom: 2px solid black; /* Bottom border only */
}

/* Input Field */
.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: black;
  padding: 10px;
  font-size: 16px;
}

/* Placeholder Color */
.newsletter-form input::placeholder {
  color: rgba(0, 0, 0, 0.6);
}

/* Subscribe Button */
.btn-subscribe {
  background: black;
  color: white;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 0;
}

/* Button Hover */
.btn-subscribe:hover {
  background: #fff;
  color: black;
}

/* Mobile Responsive Styles for News Articles */
@media (max-width: 768px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
 
  .news-title {
    font-size: 24px !important;
    padding-top: 20px !important;
  }
 
  .col-lg-6 .news-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 30px;
  }
  
  .col-lg-6 .news-item img {
    width: 100% !important;
    height: auto !important;
    max-height: 300px;
    margin-bottom: 15px;
  }
  
  .col-lg-6 .news-item .card-body {
    width: 100%;
    padding: 0 15px;
  }
 
  .col-lg-6 .d-flex {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .col-lg-6 .d-flex img {
    width: 100% !important;
    height: auto !important;
    max-height: 200px;
    margin-right: 0 !important;
    margin-bottom: 15px;
  }
  
  .secondtitle {
    font-size: 18px !important;
  }
  
  .date {
    font-size: 14px !important;
  }
  
  .card-text {
    font-size: 14px;
    margin-bottom: 15px;
  }
  
  .read-more-btn {
    margin: 0 auto;
    display: block;
    width: fit-content;
  }
  
  .row.g-4 {
    margin-left: 0;
    margin-right: 0;
  }
  
  .col-12 {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 30px;
  }
}

/* For very small devices */
@media (max-width: 480px) {
  .news-title {
    font-size: 22px !important;
  }
  
  .col-lg-6 .news-item img {
    max-height: 250px;
  }
  
  .secondtitle {
    font-size: 16px !important;
  }
  
  .card-text {
    font-size: 13px;
  }
}

/* ----------------- News End ----------------------- */


/* ----------------- Profile Start ----------------------- */

.profile {
  margin-top: 90px;
  width: 100%;
  height: 730px;
  flex-direction: column;
  max-width: 270px;
  background-color: #d271711f;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.seconddiv {
  margin-top: 30px;
  width: 100%;
  height: 400px;
  background-color: #FC8C1C;
  border-radius: 10px;
}
.odersummarydiv {
  margin-top: 30px;
  width: 100%;
  border-radius: 10px;
  padding: 25px;
  background-color: #f4f4f4;
  box-shadow: 2px 2px #b0aead;
  margin-top: 90px;
}

#introductionSection {
  
}
#odersummary_table {
  margin-top: 50px;
  background-color: #FC8C1C !important;
}
table {
  border: none;
  border-color: #D9D9D9;
}
td {
  font-size: smaller;
}
.btn-warning {
  font-size: xx-small;
}
#pag_nav {
  margin-top: 15px;
}
.btn-warning:hover {
  background-color: #FF7700 !important;
  border-color: #FF7700 !important;
  transform: scale(1.05);
  transition: all 0.3s ease-in-out;
}
#watchimage:hover {
  transform: scale(1.1);
  transition: transform 0.3s ease-in-out;
  cursor: pointer;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
}
/* Review Section Styling */
.review-container {
  max-width: 250px;
  font-size: 14px;
}

.review-text {
  max-height: 50px; /* Initial height for collapsed state */
  overflow: hidden;
  white-space: normal;
  word-break: break-word;
  display: block;
  cursor: pointer;
  transition: max-height 0.3s ease-in-out;
  font-size: 13px;
}

/* Hide scrollbar on mobile for better UX */
.review-text::-webkit-scrollbar {
  width: 4px;
}

.review-text::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 4px;
}

/* Star Ratings */
.star {
  font-size: 14px; /* Default size */
  color: #FFCD3C;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .review-container {
      max-width: 100%;
      font-size: 12px;
  }

  .review-text {
      font-size: 12px;
  }

  .star {
      font-size: 12px;
  }
}

@media (max-width: 480px) {
  .review-text {
      max-height: 40px; /* Smaller max height on mobile */
      font-size: 11px;
  }

  .star {
      font-size: 10px;
  }
}

.bi-star-fill {
  size: 10px;
  color: #FFCD3C;
}
@media (max-width: 768px) {
  .profile, .seconddiv {
      width: 100%;
      margin-top: 20px;
  }
  .odersummarydiv {
      margin-top: 20px;
      padding: 15px;
  }
  table {
      width: 100%;
  }
  td {
      display: block;
      text-align: center;
  }
  .btn-warning {
      width: 100%;
      margin-top: 10px;
  }
  #pag_nav {
      flex-direction: column;
      align-items: center;
  }
}

body {
  font-family: 'Poppins', sans-serif;
}
.review-text {
  display: inline; /* Ensure the text and icon are inline */
}
.bi-three-dots {
  cursor: pointer; 
  color: #FC8C1C; 
}

.pagination .page-item .page-link {
  border: none;
  color: #666;
}

.pagination .page-item.active .page-link {
  color: #f89c35;
  font-weight: bold;
  border-bottom: 2px solid #f89c35;
  background-color: transparent;
}

.pagination .page-item .page-link:focus,
.pagination .page-item .page-link:hover {
  box-shadow: none;
}

/* ----------------- Profile End ----------------------- */


/* ----------------- Review Start ----------------------- */


  /* review page css */
  .review-section {
    color: white;
    background-color: #000000;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
  }

  .stars-custom {
    font-size: 15px;
  }

  .stars-right-custom {
    text-align: right;
  }

  .stars-left-custom {
    text-align: left;
  }

  .divider-custom {
    width: 60%;
    height: 0.5px;
    background-color: #c5c5c5;
    margin: 20px auto;
    margin-bottom: 100px;
  }

  .reviews-title-custom {
    text-align: center;
    color: black;
    font-size: 20px;
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif; 
    font-weight: 500;
  }

  .review-box-custom {
    color: white;
    background-color: #000000; 
    padding: 20px; 
    border-radius: 10px; 
    margin-bottom: 20px; 
    text-align: center;
  }

  .review-box-custom:nth-child(even) {
    background-color: #000000dc;
  }

  .review-box-custom h3 {
    font-size: 18px;
    font-weight: bold;
    font-family: "Poppins";
    margin-bottom: 10px;
  }

  .review-box-custom p {
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.5;
  }

  .review-box-custom .stars-custom {
    font-size: 16px;
    margin-bottom: 10px;
  }

  @media (max-width: 576px) {
    .detail-nav-custom {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 10px;
    }

    .detail-nav-custom .nav-underline-custom {
      flex-wrap: wrap;
      justify-content: center;
    }

    .detail-nav-custom .nav-item-custom {
      flex: 1;
      text-align: center;
    }

    .detail-nav-custom .nav-link-custom {
      padding: 10px;
      white-space: nowrap;
    }
  }

/* ----------------- Review End ----------------------- */


/* ----------------- T & C Start ----------------------- */


  /* terms and conditions */
  .title-h2 {
    font-family: 'Poppins', sans-serif;
    padding-bottom: 5px;
    font-weight: 500;
    font-size: 20px;
    margin-top: 40px;
    margin-left: 8%;
}

.content{
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    margin-left: 8%;
}

.divider {
    height: 3px;
    background-color: orange; 
    margin: 10px auto;
    width: 40%; 
    border: none; 
    margin-bottom: 60px;
}

.divider-2{
    height: 3px;
    background-color: orange; 
    margin: 10px auto;
    width: 18%; 
    border: none; 
    margin-bottom: 60px;
}

.email-link {
    color: #000000;
    text-decoration: none;
}



/* ----------------- T & C End ----------------------- */



/* ----------------- Wishlist Start ----------------------- */



/* Wishlist */
.container-w {
  max-width: 800px;
  margin: auto;
  padding: 20px;
}

.wishlist-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.w-icon {
  color: orange;
  font-size: 24px;
  margin-left: 10px;
}

.wishlist-items {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.wishlist-item {
  background-color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: relative;
}

.wishlist-item img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 5px;
}

.item-details {
  flex: 1;
  text-align: left;
  margin-left: 10px;
}

.item-details h4 {
  font-size: 16px;
  margin: 0;
}

.item-details p {
  font-size: 12px;
  color: gray;
}

.price {
  font-size: 18px;
  font-weight: bold;
  margin-right: 15px;
}

.fa-heart {
  color: black;
  font-size: 20px;
  cursor: pointer;
  margin-left: 15px;
}

.remove-item {
  position: absolute;
  top: 10px;
  right: 10px;
  border: none;
  background: none;
  font-size: 18px;
  cursor: pointer;
  margin-top: -5px;
}

.remove-item:hover {
  color: rgb(253, 176, 83) !important;
}

.sale-tag {
  position: absolute;
  top: -15px;
  left: -30px;
  background-color: #FC8C1C;
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 8px;
  font-weight: bold;
  z-index: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .wishlist-item {
      flex-direction: column;
      align-items: center;
  }
  .item-details {
      text-align: center;
      margin: 10px 0;
  }
  .price {
      margin: 10px 0;
  }
  .fa-heart {
      margin: 10px 0;
  }
}


/* ----------------- Wishlist End ----------------------- */


/* --------news pop up ------- */
.news-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.news-popup.show {
  opacity: 1;
  visibility: visible;
}

/* Popup content */
.news-popup-content {
  background-color: #fff;
  border-radius: 8px;
  width: 90%;
  max-width: 1000px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: row;
}

.news-popup.show .news-popup-content {
  transform: scale(1);
}

/* Close button */
.news-popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #000;
  color: #fff;
  border: none;
  font-size: 24px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  line-height: 1;
  padding: 0;
}

.news-popup-close:hover {
  background-color: #333;
}

/* Image container */
.news-popup-image {
  width: 45%; 
  position: relative;
  overflow: hidden;
  max-height: none; 
  height: auto; 
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  border-top-right-radius: 0;
}

.news-popup-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Info section */
.news-popup-info {
  padding: 30px;
  width: 55%; 
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  
}

.news-popup-date {
  color: #777;
  font-size: 16px;
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
}

.news-popup-title {
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}

.news-popup-description {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  font-family: 'Poppins', sans-serif;
}

/* Background blur effect when popup is active */
.body-blur > *:not(.news-popup) {
  filter: blur(5px);
  transition: filter 0.3s ease;
}

.d-flex .small, .news-item .card-text {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 3em; /* Approximately 2 lines of text */
  margin-bottom: 10px;
}

/* Media queries for responsive design */
@media (max-width: 768px) {
  .news-popup-content {
    flex-direction: column;
    width: 95%;
    max-height: 90vh;
  }
  
  .news-popup-image {
    width: 100%;
    height: 250px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    border-bottom-left-radius: 0;
  }
  
  .news-popup-info {
    width: 100%;
    padding: 20px;
    overflow-y: auto;
  }
  
  .news-popup-title {
    font-size: 22px;
    margin-bottom: 15px;
  }
  
  .news-popup-description {
    font-size: 14px;
    line-height: 1.6;
  }
  
  /* Adjust the close button position */
  .news-popup-close {
    background: rgba(0, 0, 0, 0.7);
    top: 5px;
    right: 5px;
  }
}

/* For very small devices */
@media (max-width: 480px) {
  .news-popup-image {
    height: 200px;
  }
  
  .news-popup-info {
    padding: 15px;
  }
  
  .news-popup-title {
    font-size: 20px;
  }
  
  .news-popup-date {
    font-size: 14px;
  }
}









/* ----------------- Footer Start ----------------------- */


.footer {
  background-color: #1F1F1F;
  color: white;
  padding: 40px 20px;
  width: 100%;
}

.footer-logo {
  height: 50px;
  margin-bottom: 10px;
  max-width: 100%;
}

.column-gap {
  margin-right: 100px;
}

.footer hr {
  width: 100%;
  margin: 10px 0;
  color: #fff;
  background-color: #fff;
  border-color: #fff;
}

.footer-text {
  font-size: 16px;
  color: #ccc;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  font-size: 24px;
  color: white;
  transition: color 0.3s ease-in-out;
}

.social-icons a:hover {
  color: #FF7700;
}

.footer-menu {
  list-style: none;
  padding: 0;
}

.menu-title {
  font-size: 18px;
  font-weight: bold;
  color: #ccc;
}

.footer-menu li {
  margin-bottom: 13px;
  font-size: 16px;
  font-weight: 100;
}

.footer-menu a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

.footer-menu a:hover {
  color: #FF7700;
}

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.payment-icons img {
  height: 30px;
  border-radius: 5px;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  text-align: center;
  flex-wrap: wrap;
}

.footer-contact-us {
  color: #ccc;
}

.footer-bottom a {
  color: #ccc;
  text-decoration: underline;
  padding: 0 10px;
}

.footer-bottom a:hover {
  color: #FF7700;
}

/* -------- Responsive Styles -------- */

/* Below 991px - Footer Stacks Vertically */
@media (max-width: 991px) {
  .footer .row {
    flex-direction: column;
    text-align: center;
  }

  .column-gap {
    margin-right: 0;
  }

  .footer-menu {
    padding-left: 0;
  }

  .payment-icons {
    justify-content: center;
  }

  .social-icons  {
    flex-direction: row;
    text-align: center;
    justify-content: center;
    margin-bottom: 20px;

  }
 
}


@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column; /* Stack items vertically */
    text-align: center;
  }

  .footer-bottom p {
    padding-right: 0 !important; /* Remove right padding */
    margin-bottom: 10px; /* Add spacing between elements */
  }
}

/* Above 991px - Force Desktop Layout */
@media (min-width: 992px) {
  .footer .row {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .column-gap {
    margin-right: 100px;
  }

  .footer-bottom {
    flex-wrap: nowrap;
  }
}
  






/* ----------------- Footer End ----------------------- */



