@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@200..900&family=Source+Serif+4:ital,opsz,wght@0,8..60,200..900;1,8..60,200..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Outfit:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');


@import url('https://fonts.googleapis.com/css2?family=Tagesschrift&display=swap');





/* Preloader Styles */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

/* Spinner Circle */
#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #BA55D3; /* Purple */
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

/* Spinner Animation */
@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}



/* General Styles */
body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

.navbar {
  font-size: 18px;
  background-color: white;
  padding: 16px 2px;
}

.navbar-nav .nav-item .nav-link {
  margin-right: 16px;
  font-size: 15px;
  color: #3d4540;
  font-weight: 500;
}

.navbar-nav .nav-item .nav-link:hover {
  color: #8e2de2;
}


.navbar-nav .nav-item .nav-link.active {
  color: #8e2de2 !important;
}



.side-padding {
  padding-left: 30px;
  padding-right: 30px;
}








.rz {
  width: 114px;              /* logo size */
  height: auto;
  display: flex;            /* centers image nicely */
  align-items: center;
  justify-content: center;
}

.rz img {
  width: 100%;              /* ensures image fits container width */
  height: auto;             /* keeps aspect ratio */
  object-fit: contain;      /* prevents distortion */
  display: block;           /* removes extra space below image */
}


.logo h1 {
  font-family: 'Tagesschrift', sans-serif;
  font-weight: 600;
  font-size: 24px;
  cursor: pointer;
  letter-spacing: 2px;          /* spacing for logo-like appearance */
  color: #1a1a1a;               /* dark text on white background */
  text-transform: uppercase;    /* gives a strong brand identity */
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1); /* subtle shadow for depth */
  background: linear-gradient(90deg, #007bff, #00c6ff); /* gradient text */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;    /* makes gradient visible */
  
}





#searchContent {
  width: 100%;
  padding: 10px 0;
}


.mobile {
  font-size: 18px;
  color: #36454f;
}



.search-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.search-wrapper input {
    width: 100%;
    padding: 10px 40px 10px 12px; /* leave space for the icon */
    border: 1px solid #ccc;
    border-radius: 30px;
    font-size: 15px;
    outline: none;
    transition: all 0.3s ease;
}

.search-wrapper input:focus {
    border-color: #8e2de2;
    box-shadow: 0 0 5px rgba(142, 45, 226, 0.3);
}

.search-wrapper button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #555;
    cursor: pointer;
    font-size: 16px;
    transition: color 0.3s ease;
}

.search-wrapper button:hover {
    color: #8e2de2;
}













.cart-counter {
  position: absolute;
  top: -2px;
  right: -10px;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  background: linear-gradient(90deg, #8e2de2, #4a00e0);
  font-size: 10px;
  font-weight: 500;
  border-radius: 50%;
  width: 15px;
  height: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.cart-icon {
  position: relative;
  display: inline-block;
  font-size: 22px;
}

/* Custom style for toggle button */
.navbar-toggler {
  position: relative;
  transition: .5s ease-in-out;
}

.navbar-toggler,
.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
  outline: none;
  box-shadow: none;
  border: 0;
}

.navbar-toggler span {
  margin: 0;
  padding: 0;
}

.toggler-icon {
  display: block;
  position: absolute;
  height: 2px;
  width: 22px;
  background-color: #36454f;
  border-radius: 2px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

.middle-bar {
  margin-top: 0px;
}

/*when navigation is clicked*/
.navbar-toggler .top-bar {
  margin-top: 0px;
  transform: rotate(135deg);
}

.navbar-toggler .middle-bar {
  opacity: 0;
  filter: alpha(opacity=0);
}

.navbar-toggler .bottom-bar {
  margin-top: 0px;
  transform: rotate(-135deg);
}

/*when navigation is not clicked*/
.navbar-toggler.collapsed .top-bar {
  margin-top: -14px;
  transform: rotate(0deg);
}

.navbar-toggler.collapsed .middle-bar {
  opacity: 1;
  filter: alpha(opacity=100);
}

.navbar-toggler.collapsed .bottom-bar {
  margin-top: 14px;
  transform: rotate(0deg);
}
/*toggle button*/

/* adds line below menu links */
@media (max-width: 768px) {
    .side-padding{
        padding-left: 15px;
        padding-right: 15px;
        
    }
    
    .rz {
      width: 116px;              /* logo size */
      height: auto;
      display: flex;            /* centers image nicely */
      align-items: center;
      justify-content: center;
    }
    
   .navbar{
       padding: 15px 3px;
   }

  /* For mobile & tablets (Bootstrap lg and below) */
  .navbar-nav .nav-item {
    border-bottom: 0.5px solid grey;
    /* or your preferred color */
    padding: 10px 1px;
    
  }
  
  .navbar-nav .nav-item .nav-link {
  font-size: 14px;
  }

  .navbar-nav .nav-item:last-child {
    border-bottom: none;
    /* Remove line after last item */
  }
  
  
  
 
  
  
  .logo h1{
      font-size: 20px;
      letter-spacing: 1px;
  }
}

/* Banner*/
    .banner {
      margin-bottom: 2px;
      background: linear-gradient(90deg, #8e2de2, #4a00e0);
      color: #fff;
      text-align: center;
      padding: 16px 16px;
      position: relative;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .banner-content {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .banner-content img {
      max-width: 150px;
      height: auto;
      margin-right: 20px;
    }

    .banner-text {
      text-align: left;

    }

    .banner-text h3 {
      font-size: 14px;
      font-weight: 600;
    }

    .banner-text h1 {
      font-size: 20px;
      font-weight: 900;
      margin: 10px 0;
      /* Standard property */
      background-clip: text;
      background: -webkit-linear-gradient(#ffd700, #ffae00);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    
     .banner-text h3,
      .banner-text h1 {
        margin: 0;
        /* remove Bootstrap default margin */
        padding: 0;
        /* extra safety */
        line-height: 1.5;
        /* now it will actually reduce spacing */
      }





    /* Shop Now Button */
    .shop-btn {
      display: inline-block;
      margin-top: 10px;
      padding: 8px 16px;
      font-size: 14px;
      font-weight: 800;
      color: #333;
      background: linear-gradient(90deg, #ffdd00, #ffae00);
      border: none;
      border-radius: 30px;
      text-transform: uppercase;
      transition: 0.3s;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .shop-btn:hover {
      background: linear-gradient(90deg, #ffae00, #ffd700);
      color: #000;
      transform: scale(1.05);
    }


    /* Adjust text size for very small screens */
    @media (max-width: 768px) {
     
      .banner-content img {
        max-width: 130px;
        margin-right: 8px;
      }

      .banner-text h1 {
        font-size: 14px;
      }

      .banner-text h3 {
        font-size: 10px;
      }

      .banner-text h3,
      .banner-text h1 {
        margin: 0;
        /* remove Bootstrap default margin */
        padding: 0;
        /* extra safety */
        line-height: 1.5;
        /* now it will actually reduce spacing */
      }


      .shop-btn {
        font-size: 10px;
        padding: 5px 10px;
        margin-top: 8px;
        font-weight: 700;
      }
    }



    /*categories */
    .options-slider {
      background: linear-gradient(to bottom, #cce9ff, #f5d8ff);
      border-radius: 12px;
      margin-top: 10px;
      margin-bottom: 2px;
      padding: 12px;
      display: flex;
      overflow-x: auto;
      scroll-behavior: smooth;
      gap: 36px;
    }

    .options-slider::-webkit-scrollbar {
      display: none;
      /* Hide scrollbar for a cleaner look */
    }

    .options-card {
      flex: 0 0 auto;
      /* Prevent shrinking */
      width: 135px;
      /* Adjust width as needed */
      text-align: center;
      transition: transform 0.3s;
      border-radius: 10px;
      overflow: hidden;
      background-color: white;

    }

    .options-card:hover {
      transform: scale(1.05);
    }

    .options-card img {
      width: 135px;
      height: 140px;
      object-fit: cover;
      background-color: rgb(245, 241, 241);
    }

    .options-name {
      font-size: 10px;
      text-transform: capitalize;
      font-weight: 400;
      margin-top: 2px;
    }



    /* Ensure responsiveness */
    @media (max-width: 768px) {


      .options-slider {
        gap: 10px;
      }

      .options-card {
        width: 86px;
      }

      .options-slider .options-card img {
        max-width: 86px;
        height: 90px;

      }

      .options-name {
        font-size: 8px;
      }

    }













/* CSS for the 2nd section */
section {
  padding: 7vh 0px 1vh 0px;
  z-index: 2;
  position: relative;
}

#cat {
  padding-top: 10px;
}





.section-title {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.section-title h3 {
  font-weight: 600;
  font-size: 20px;
  text-transform: capitalize;
}

.section-title h3::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 32px;
  background: linear-gradient(180deg, #8e2de2, #4a00e0);
  vertical-align: middle;
  margin-right: 10px;
}





/*Trending slider section */
.trend-slider {
  background: linear-gradient(to bottom, #cce9ff, #f5d8ff);
  padding: 12px;
  border-radius: 12px;
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 16px;
}

.trend-slider::-webkit-scrollbar {
  display: none;
  /* Hide scrollbar for a cleaner look */
}

.trend-card {
  flex: 0 0 auto;
  /* Prevent shrinking */
  width: 190px;
  /* Adjust width as needed */
  transition: transform 0.3s;
  
  border-radius: 8px;
  overflow: hidden;
  background-color: white;
}

.trend-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.trend-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  font-weight: 400;
  padding: 10px;
}




/*sections Abaya, shoes.. */
.property-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  line-height: 15px;
  
}

.property-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.property-item .property-info {
  padding: 18px;
  
}

.property-item .property-info h4 {
  margin-top: 0;
}

.dish {
  font-size: 14px;
  
}

.info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.rs{
    font-family: 'Roboto', sans-serif;
    
}

.sp {
  font-weight: 400;
}

.star {
  font-size: 12px;
}

.discount {
  background-color: #EFFD07;
  font-size: 12px;
  font-weight: 600;
  padding: 3px;
  border-radius: 2px;
}



/* Ensure responsiveness */
@media (max-width: 768px) {

  .property-item {
    line-height: 8px;
  }
  
  .property-item img {
    width: 100%;
    height: 150px;
  }

  .dish {
    font-size: 11px;
  }
  

  .info {
    font-size: 11px;
  }
  
  .star {
      font-size: 11px;
  }

  .trend-info {
    padding: 6px;
    font-size: 8px;
  }

  .trend-card {
    width: 88px;
  }

  .trend-card img {
    height: 88px;
  }

  .trend-slider {
    gap: 10px;
  }

  .discount {
    font-size: 8px;
  }

  .property-item .property-info {
    padding: 10px;
  }

  section {
    padding: 3vh 2px 2vh 2px;
  }
  
  .section-title h3{
      font-size: 18px;
  }

}

/*features */
.feature-card h6{
    font-weight: 600;
    font-size: 15px;
}

.feature-card {
  background: linear-gradient(to bottom, #cce9ff, #f5d8ff);
  padding: 60px;
  font-family: "Inter", sans-serif;
  border-radius: 10px;
}


.feature-card i {
  background: linear-gradient(90deg, #8e2de2, #4a00e0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 40px;
  margin-bottom: 25px;
}

.feature-card p {
  /* Yellow paragraph text */
  font-size: 12px;
  margin-bottom: 0px;
}

.features{
    margin-bottom: 18px;
}

@media screen and (max-width: 768px) {
    
    .feature-card{
        padding: 56px;
    }
  
  .feature-card h6{
      font-size: 14px;
      font-weight: 600;
  }
  
  .feature-card i{
      margin-bottom: 20px;
  }

}
/*features */



/* Height adjustment for screens from 485px and above large screen*/
@media screen and (min-width: 575px) {
  .img-slider {
    height: 380px;
    width: 100%;
    object-fit: contain;
  }
  
  .features-card h6{
      font-size: 12px;
      font-weight: 500;
  }

}


/* Add custom styles for the footer */
.footer-section{
    padding: 34px 0;
    color: #bbb;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 500;
}

.footer-link {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #1877F2;
}

.footer-section h5, 
.footer-section h6 {
  color: #fff;
}

.footer-section h5,
.footer-section h6 {
  position: relative;
  display: inline-block;
  padding-bottom: 14px;
  margin-bottom: 12px;
  
}

.footer-section h5::after,
.footer-section h6::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 50px; /* length of underline */
  background: linear-gradient(90deg, #0dcaf0, #1877F2); /* gradient underline */
  border-radius: 2px;
}


.footer-section p, 
.footer-section li {
  color: #bbb;
}

.footer-section .social-media i {
  color: #fff;
  border-radius: 50%;
  font-size: 1.5rem; /* Adjust icon size */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.footer-section i {
  font-size: 0.8rem; /* Adjust icon size */
  align-items: center;
  justify-content: center;
  color: #1877F2;
}



.footer-section i:hover {
   
  color: #fff;
}


.instagram-bg{
    background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
}

.whatsapp-bg{
    background-color: #25D366;
}

.facebook-bg{
    background-color: #1877F2;
}

@media (min-width:150px)and (max-width:575px) {
  .footer-section {
   font-size: 15px;
  }

}


@media (min-width:150px)and (max-width:575px) {
  .image-wrapper {
    height: 90px;
  }

  .text {
    font-size: 12px;
  }
}


.text {
  color: white;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.7);
  /* Adding 3D effect */
  margin: 0;
  text-align: center;
}

.prod-border {
  box-shadow: 0px 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/*product-detail.php*/
.col_box {
  font-family: "Poppins", sans-serif;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 10px auto;
  border-radius: 10px;
  overflow: hidden;
  line-height: 22px;
  font-size: 15px;
}

.pad-s{
  padding: 16px;
}

.img-slide {
  height: auto;
  width: 100%;
  object-fit: cover;
}

.prod-nm {
  font-size: 15px;
}

.prod-sp {
  font-size: 15px;
}

.price {
  font-size: 15px;
  
}

.off {
  color: black;
  background-color: #EFFD07;
  padding: 3px;
  font-weight: 500;
  font-size: 12px;
  border-radius: 3px;
}

.buy-proceed {
  background-color: #EFFD07;
  cursor: pointer;
}

.buy-proceed:hover {
  background-color: #F9FF80;
}





/*Product-detail Size css */
/* Make carousel indicators round */
.carousel-indicators [data-bs-target] {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: #bbb;
    border: 0.3px solid black;
    opacity: 0.7;
    margin: 0 4px;
    
}

.carousel-indicators .active {
    background-color: #0d6efd; /* blue for active */
    opacity: 1;
}


.size-slider{
  display: flex;
  gap: 10px; 
  overflow-x: auto;
  scroll-behavior: smooth;
  
}

.size-slider::-webkit-scrollbar {
      display: none;
      /* Hide scrollbar for a cleaner look */
    }


.size-card {
  width: 40px;
  height: 40px;
  border-radius: 18%;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  display: flex;
  flex: 0 0 auto; 
  justify-content: center;
  align-items: center;
}

.circle.selected {
  border: 1px solid #000;           /* thicker border */
  border-radius: 18%;
  box-shadow: inset 0 0 0 4px #fff;
  background-color: #212122;
  color: white;
  font-weight: 500;
}

.color-box {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  font-size: 15px;
  display: flex;
  flex: 0 0 auto; 
  justify-content: center;
  align-items: center;
}

.color-box.selected {
  border: 1px solid #000;           /* thicker border */
  box-shadow: inset 0 0 0 4px #fff; /* creates inner padding effect */
}





.description-box {
    margin-top:12px;
    text-transform: capitalize;
    margin-bottom: 12px;
}

.list-details{
  margin: 0;          /* remove default top/bottom margin */
  padding-left: 0;    /* remove default left padding */
  list-style-position: inside; 
  line-height: 24px;
}

@media (max-width: 768px) {
  .col_box {
    font-size: 14px;
    
  }
  
  .pad-s{
      padding: 14px;
  }

  .img-slide {
    height: auto;
  }
  
  .prod-nm{
      font-size: 15px;
  }

  .price {
    font-size: 15px;
  }

  .prod-sp {
    font-size: 16px;
  }

  .off {
    font-size: 11px;
    padding: 3px;
  }

  .size-card {
    font-size: 14px;
  }
  
  .color-box{
      width: 38px;
      height: 38px;
  }

  
}

/*checkout form*/
.checkout {
  font-family: "Inter", sans-serif;
  margin: 10px auto;
  border-radius: 10px;
  overflow: hidden;
  line-height: 22px;
  font-size: 15px;
  padding: 20px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

label {
  
  color: #555;
  margin-left: 10px;
  margin-bottom: 4px;
}

input,
select {
  padding: 12px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
}

input:focus,
select:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.flex-row {
  display: flex;
  gap: 15px;
}

.flex-row>div {
  flex: 1;
}

/* Adds spacing between the squares */
.cart-items {
  padding: 20px;
  border: 1px solid #dad7d7;
  border-radius: 10px;
  overflow: hidden;
  color: #171717;
  font-size: 15px;
}

.cart-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 400;
  margin-bottom: 20px;
}

.cart-item {
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
}

.cart-item img {
  width: 80px;
  height: auto;
  border-radius: 8px;
}

.cart-item .item-details {
  flex-grow: 1;
  margin-left: 15px;
}

.cart-item .item-price {
  font-weight: 400;
  color: #343333;
}

.cart-item .remove-btn {
  color: red;
  cursor: pointer;
  font-size: 22px;
}

.qty {
  font-size: 10px;
  width: 70px;
  
}

.disc {
  background-color: #EFFD07;
  color: #000;
  font-size: 10px;
  padding: 2px;
  border-radius: 4px;
  font-weight: 500;
}

.summary{
    line-height: 22px;
    font-family: 'Roboto', sans-serif;
}

.o-sum{
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
}



/* General styles for payment section */
.pay-bg {
  border: 1px solid #dad7d7;
  background-color: #EFFD07;
  padding: 10px;
  border-radius: 5px;
}

.radio-button {
  display: flex;
  align-items: center;
}

.radio-button input[type="radio"] {
  display: none;
}

.radio-button .custom-radio {
  width: 15px;
  height: 15px;
  border: 1.8px solid grey;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.radio-button input[type="radio"]:checked+.custom-radio {
  background-color: #007bff;
  border-color: #007bff;
}

.radio-button input[type="radio"]:checked+.custom-radio::after {
  content: "";
  width: 7px;
  height: 7px;
  background-color: #fff;
  border-radius: 50%;
}



.payment-box {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 12px 15px;
  cursor: pointer;
  transition: 0.3s ease;
  background: #fff;
}

.payment-box:hover {
  border-color: #007bff;
}

.payment-box.active {
  border-color: #007bff;
  background: #f3f9ff;
}

.benefits {
  margin: 8px 0 0 30px;
  padding: 0;
  list-style: none;
  font-size: 14px;
  color: #555;
}

.benefits li {
  font-size: 12px;
  margin-bottom: 4px;
}

.radio-button {
  display: flex;
  align-items: center;
}

.radio-button input[type="radio"] {
  display: none;
}

.custom-radio {
  width: 16px;
  height: 16px;
  border: 2px solid grey;
  border-radius: 50%;
  margin-right: 10px;
  transition: 0.3s ease;
}

.radio-button input[type="radio"]:checked + .custom-radio {
  background-color: #007bff;
  border-color: #007bff;
}

.radio-button input[type="radio"]:checked + .custom-radio::after {
  content: "";
  width: 7px;
  height: 7px;
  background: white;
  border-radius: 50%;
  display: block;
  margin: auto;
}










.buy-proceed {
  border: 1px solid #767474;
  background-color: #EFFD07;
  cursor: pointer;
}

.buy-proceed:hover {
  border: 1px solid #2c2b2b;
  background-color: #F9FF80;
}

.error-message {
  color: red;
  font-size: 12px;
  margin-left: 2px;
}

@media (max-width: 768px) {
    .checkout{
        font-size: 14px;
        padding: 22px 16px;
    }
    
    input,
    select {
      padding: 8px;
      font-size: 14px;
      border: 1px solid #ccc;
      border-radius: 5px;
      width: 100%;
    }
    
    .cart-items{
        font-size: 12px;
    }

  .radio-button {
    font-size: 13px;
  }

}


/*order tracker*/
 


/*order placed popup box*/
.order_d {
  font-size: 14px;
}

.whatsapp-icon {
  color: #25D366;
  /* WhatsApp green color */
  margin-right: 1px;
  font-size: 26px;
}

.highlight {
  cursor: pointer;
  background-color: Black;
  /* Bright yellow background */
  color: #fff;
  /* Black text color for contrast */
  padding: 6px 15px;
  /* Add some space around the text */
  border-radius: 5px;
  /* Rounded corners for a softer look */
  border: 1px solid Black;
  /* Darker yellow border */
  font-weight: 500;
  /* Bold text for emphasis */
  font-size: 16px;
  /* Slightly larger text */
  text-align: center;
  /* Center-align text */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  /* Subtle shadow for depth */
}




/* contact page / Hero Section */
.con-font{
    font-family: "Inter", sans-serif;
}


/* Contact Card Container */
.contact-section {
  
  padding: 20px;
}

.contact-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border: none;
}

.info-box {
  background: linear-gradient(to bottom, #cce9ff, #f5d8ff);
  font-size: 12px;
  border-radius: 15px;
  padding: 22px;
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 18px;
}

.info-box i {
  font-size: 32px;
  color: #6a4bff;
}

.info-box h6 {
  font-size: 14px;
  margin-bottom: 3px;
}





/* Mobile App Look */
@media (max-width: 768px) {
  .contact-card {
    border-radius: 25px;
  }

  

}




.form-title {
    font-size: 1rem;
    font-weight: 600;
    color: #6a4bff;
}

.form-intro {
    font-size: 0.8rem;
    color: #6c757d;
}




/* Input Field Icons */
.input-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: #6a4bff;
}

.custom-input {
  font-size: 14px;
  color: #6c757d;
  padding-left: 40px !important;
  border-radius: 12px;
  height: 45px;
  border: 1px solid #d6d6d6;
  background: #f9f7ff;
  transition: 0.3s;
}

.custom-input:focus {
  border-color: #6a4bff;
  box-shadow: 0 0 0 0.15rem rgba(106, 75, 255, 0.25);
}

/* Textarea styling */
textarea.custom-input {
  height: auto;
  padding-top: 12px !important;
}

/* Submit Button */
.contact-btn {
  background: linear-gradient(90deg, #8e2de2, #4a00e0);
  border-radius: 12px;
  height: 45px;
  border: none;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(78, 0, 224, 0.3);
}

.contact-btn:hover {
  opacity: 0.9;
}

/* Validation Styling */
input.error, textarea.error {
  border-color: #dc3545 !important;
}

label.error {
  color: #dc3545;
  font-size: 0.75rem;
  margin-top: -8px;
  display: block;
}

.back-b {
    margin-left: auto;
    font-size: 20px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
     border: none !important;
    outline: none !important;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
    color: #36454f;
    transition: all 0.25s ease-in-out;
}

.back-b i {
    transition: transform 0.25s ease-in-out;
    color: #393a3f;
}

/* Hover effect */
.back-b:hover {
    background: #f0f0f0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.25);
}

/* Slight arrow slide on hover */
.back-b:hover i {
    transform: translateX(-3px);
}













