/* ------------------ RESET & BASE ------------------ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Spartan', sans-serif;
}

body {
  width: 100%;
}

h1 {
  font-size: 50px;
  line-height: 64px;
  color: #222;
}
h2 {
  font-size: 45px;
  line-height: 54px;
  color: #222;
}
h4 {
  font-size: 20px;
  color: #222;
}
h6 {
  font-weight: 700;
  font-size: 12px;
}
p {
  font-size: 16px;
  color: #012213;
  margin: 15px 0 20px 0;
}

.section-m1 {
  padding: 40px 80px;
}

body{
    width: 100%;
}

/* ------------------ HEADER ------------------ */
#header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 30px;
  background: #e3f3f0;
  box-shadow: 0 5px 15px rgb(0 0 0 / 6%);
  z-index: 1099;
  position: sticky;
  top: 0;
  left: 0;
}

/* Bigger logo for large screens */
.logo {
  width: 190px; /* increased from 150px */
}

#navbar {
  display: flex;
  align-items: center;
  justify-content: center;
}

#navbar li {
  list-style: none;
  padding: 0 20px;
  position: relative;
}

#navbar li a {
  text-decoration: none;
  font-size: 20px;
  font-weight: 550;
  color: #1a1a1a;
  transition: 0.3s ease;
}

#navbar li a:hover,
#navbar li a.active {
  color: #0bcc3b;
}

#navbar li a.active::after,
#navbar li a:hover::after {
  content: "";
  width: 30%;
  height: 2px;
  background: #0bcc3b;
  position: absolute;
  bottom: -4px;
  left: 20px;
}

/* ------------------ MOBILE ------------------ */
#mobile {
  display: none;
  align-items: center;
}

#mobile .login-icon {
  font-size: 22px;
  color: #814208;
  padding: 10px;
  cursor: pointer;
  transition: 0.3s ease;
}

.login-icon {
  font-size: 20px;
  color: #088178;
  padding: 10px;
}

.login-icon:hover {
  color: #065e5e;
}

#mobile li {
  list-style: none;
  margin: 0 5px;
}

#mobile i {
  cursor: pointer;
}

#close {
  display: none;
}
/* ============ USER DROPDOWN MENU ============ */
.user-dropdown {
  position: absolute;
  top: 60px;
  right: 10px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  z-index: 9999;
  animation: fadeIn 0.2s ease;
  min-width: 180px;
}

.user-dropdown ul {
  list-style: none;
  margin: 0;
  padding: 6px 0;
}

.user-dropdown li {
  padding: 10px 16px;
  font-size: 15px;
  color: #333;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}

.user-dropdown li:hover {
  background: #f0fdf4;
  color: #0bcc3b;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Adjust dropdown position for smaller screens */
@media (max-width: 768px) {
  .user-dropdown {
    top: 50px;
    right: 4px;
  }
}

/* ------------------ ICONS ------------------ */
.nav-icon {
  font-size: 20px;
  color: #088178;
  margin: 0 3px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  text-align: center;
}

.nav-icon:hover {
  color: #0bcc3b;
}

.nav-icon i {
  font-size: 20px;
}

/* ------------------ MY PRODUCTS ------------------ */
.my-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-left: 20px;
  margin-right: 20px;
  margin-top: 50px;
  padding-bottom: 100px;
}

.image img {
  width: 140px;
}

.image {
  margin-left: 20px;
  margin-right: 20px;
  position: relative;
  overflow: hidden;
}
/* ------------------ DROPDOWN MENU ------------------ */
.dropdown {
  position: relative;
}

.dropbtn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.dropbtn i {
  font-size: 13px;
  color: #088178;
  transition: transform 0.3s ease;
}

.dropdown:hover .dropbtn i {
  transform: rotate(180deg);
}

/* Dropdown content */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 180px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  border-radius: 6px;
  z-index: 999;
  top: 100%;
  left: 0;
  padding: 10px 0;
}

/* Dropdown items */
.dropdown-content li {
  list-style: none;
}

/* Dropdown items */
.dropdown-content li a {
  color: #1a1a1a;
  padding: 6px 14px;        /* reduced padding for smaller look */
  text-decoration: none;
  display: block;
  font-size: 10px;          /* reduced from 14px */
  transition: background 0.2s ease, color 0.2s ease;
  font-weight: 500;         /* optional: slightly lighter for dropdown look */
}

.dropdown-content li a:hover {
  background-color: #088178;
  color: #fff;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ------------------ RESPONSIVE BEHAVIOR ------------------ */
@media (max-width: 921px) {
  /* keep your current mobile styles untouched */
  #mobile {
    display: flex;
  }
  #navbar {
     display: none;
  }
  .dropdown-content {
    position: relative;
    box-shadow: none;
  }
}
@media (max-width: 921px) {
    .dropdown-content {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
  }
}

/* ------------------ BUTTONS ------------------ */
button.normal {
  font-size: 14px;
  font-weight: 600;
  padding: 15px 20px;
  color: #000;
  background-color: #169e8529;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  outline: none;
  transition: 0.2s;
}
button.white {
  font-size: 14px;
  font-weight: 600;
  padding: 15px 30px;
  color: #000;
  background-color: #dde2e3dc;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  outline: none;
  transition: 0.2s;
}

/*Home Page*/
/* 🏠 Hero Section (Subcategory Pages) */
#hero {
  background-image: url("images/item-02.jpg");
  height: 90vh;
  width: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 0 80px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  color: #fff;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

/* Optional: Add a subtle overlay for better contrast */
#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: -1;
}

/* Text styling */
#hero h4 {
  padding-bottom: 15px;
  color: #c0f1ea;
  font-weight: 500;
  letter-spacing: 1px;
}

#hero h2 {
  font-size: 42px;
  color: #ffffff;
  margin: 5px 0;
  font-weight: 700;
}

#hero h1 {
  font-size: 52px;
  color: #00b894;
  margin-bottom: 10px;
  font-weight: 800;
}

#hero p {
  color: #f1f1f1;
  font-size: 16px;
  max-width: 480px;
  margin-bottom: 20px;
}

/* Button styling */
#hero button {
  background-color: #088178;
  color: white;
  font-weight: 700;
  padding: 10px 28px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

#hero button:hover {
  background-color: #066b63;
  transform: scale(1.05);
}

.section-p1{
    padding: 40px 80px;
}
#feature{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
#feature img{
    width: 120px;
    margin-bottom: 10px;
}
#feature .feature-box{
    width: 180px;
    text-align: center;
    padding: 25px 15px;
    box-shadow: 20px 20px 34px rgba(0, 0, 0, 0.03);
    border: 1px solid #cce7d0;
    border-radius: 4px;
    margin: 15px 0;
}
#feature .feature-box:hover{
    box-shadow: 10px 10px 54px rgba(70, 62, 221, 0.1);
}
#feature .feature-box h6{
    display: inline-block;
    padding: 9px 8px 6px 8px;
    line-height: 1;
    border-radius: 4px;
    color: #088178;
    background-color: #fddde4;
}
#feature .feature-box:nth-child(2) h6{
    background-color: #c0112e39;
}
#feature .feature-box:nth-child(3) h6{
    background-color: hsla(150, 86%, 40%, 0.421);
}
#feature .feature-box:nth-child(4) h6{
    background-color: hwb(276 11% 33% / 0.293);
}
#feature .feature-box:nth-child(5) h6{
    background-color: hsla(334, 88%, 39%, 0.053);
}
#feature .feature-box:nth-child(6) h6{
    background-color: hsla(176, 88%, 27%, 0.359);
}
/* ============ SCROLL BANNER ============ */
.scroll-banner {
  position: sticky;
  top: 70px; /* just below header */
  background: linear-gradient(90deg, #f9f9f9, #ececec);
  color: #222;
  text-align: center;
  width: 100%;
  padding: 8px 12px;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  z-index: 999;
  border-bottom: 1px solid #ddd;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease, opacity 0.25s ease, background 0.3s;
}

.scroll-banner strong {
  color: #007b5e; /* nice green accent */
}

.scroll-banner.hide {
  transform: translateY(-80%);
  opacity: 0;
}

.scroll-banner.show {
  transform: translateY(0);
  opacity: 1;
}

/* Responsiveness */
@media (max-width: 768px) {
  .scroll-banner {
    font-size: 0.99rem;
    padding: 7px 10px;
    top: 60px;
    border-radius: 0;
  }
}
@media (max-width: 508px) {
  .scroll-banner {
    font-size: 0.5rem;
    padding: 7px 10px;
    top: 60px;
    border-radius: 0;
  }
  .scroll-banner p {
    font-size: 15px;
  }
}
@media (max-width: 445px) {
  .scroll-banner p {
    font-size: 13px;
  }
}
@media (max-width: 340px) {
  .scroll-banner p {
    font-size: 10px;
  }
}
@media (min-width: 1024px) {
  .scroll-banner {
    max-width: 100%;
    font-size: 60px;
    margin: 0;
    border-radius: 0;
  }
  /* 🛒 Centered Buy Now Button */
.buy-now-btn {
  display: block;
  margin: 10px auto 0 auto; /* centers horizontally */
  background-color: #088178;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 8px 18px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.buy-now-btn:hover {
  background-color: #066b63;
  transform: scale(1.05);
}

#product-1 .pro .des {
  text-align: center; /* center-align everything inside */
  padding: 10px 0;
}

}

#product-1{
    text-align: center;
} 

#product-1 .pro-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  padding: 20px;
}
#product-1 .pro {
  width: 320px;
  padding: 12px;
  border: 1px solid #cce7d0;
  border-radius: 20px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  overflow: hidden;
}

/* 🖼 Main image styling */
#product-1 .pro .main-img {
  width: 100%;
  max-height: 240px;
  border-radius: 15px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
#product-1 .pro:hover .main-img {
  transform: scale(1.02);
}

/* 📸 Small images (shown only if needed) */
#product-1 .pro .small-images {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 10px;
}
#product-1 .pro .small-images img {
  width: 20px;
  height: 20px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid #ccc;
  cursor: pointer;
  transition: transform 0.2s ease;
}
#product-1 .pro .small-images img:hover {
  transform: scale(1.05);
  border-color: #088178;
}


#product-1 .pro .des {
  text-align: center; /* center-align everything inside */
  padding: 1px 0;
}

#product-1 .pro .des span {
  color: #606063;
  font-size: 12px;
}

#product-1 .pro .des h5 {
  padding-top: 7px;
  color: #1a1a1a;
  font-size: 14px;
}

#product-1 .pro .des li{
    font-size: 12px;
    color: rgba(243, 181, 25, 1); /* or any value between 0 and 1 */
}
#product-1 .pro .des h4{
    padding-top: 7px;
    font-size: 15px;
    color: #088178;
}
.star i {
    font-size: 18px;
    color: #f3c623;
    cursor: pointer;
    transition: color 0.2s ease-in-out;
  }
  
  .star i.fas {
    gold: #f3c623 /* Or gold: #f3c623 for a golden filled look */
  }
  
#product-1 .pro .cart-2{
    width: 35px;
    height: 35px;
    line-height: 40px;
    border-radius: 50px;
    background-color: aliceblue;
    font-weight: 500;
    color: #088178;
    border: 1px solid #cce7d0;
    position: absolute;
    bottom: 10px;
    right: 10px;
}
#banner{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: url(images/Banner-1.jpg);
    width: 100%;
    height: 40vh;
    background-size: cover;
    background-position: center;
}
#banner h4{
    font-size: 16px;
}
#banner h2{
    font-size: 30px;
    padding: 10px 0;
}
#banner h2 span{
    color: red;
}
button.normal:hover{
    background-color: #088178;
    color: #fff;
}
#sm-banner{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 50px;
}
#sm-banner .banner-box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background-image: url(images/Feed.jpg);
    min-width: 700px;
    height: 45vh;
    background-size: cover;
    background-position: center;
    padding: 30px;
}
#sm-banner h4{
    color: #d41717;
    font-size: 20px;
    font-weight: 380;
}
#sm-banner h2{
    font-size: 28px;
    font-weight: 800px;
    color: rgb(18, 17, 16);
}
#sm-banner span{
    font-size: 14px;
    font-weight: 500px;
    color: #088178;
    padding-bottom: 15px;
}
#sm-banner .banner-box:hover button{
    background: #088178;
    border: 1px solid #088178;
}
#sm-banner .banner-box-2{
    background-image: url(images/Fxads.jpg);
}
#banner-3{
    display: flex;
    justify-content: space-between;
    padding: 10px 80px;
}
#banner-3 .banner-box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background-image: url(images/Fxads.jpg);
    min-width: 30%;
    height: 30vh;
    background-size: cover;
    background-position: center;
    padding: 20px;
    margin-bottom: 20px;
}
#banner-3 .banner-box-2{
    background-image: url(images/Feed1.jpg);
}
#banner-3 .banner-box-3{
    background-image: url(images/sell\ icon.png);
}
#banner-3 h2{
    color: #d41717;
    font-size: 22px;
    font-weight: 900;
}
#banner-3 h3{
    color: #E3E6F3;
    font-size: 17px;
    font-weight: 800;
}
/* Your existing CSS for #news-letter */
#news-letter {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    background-color: #0d3ea1;
    background-repeat: no-repeat;
    background-position: 20px 30px;
}

/* Your existing h4 and p styles */
#news-letter h4 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}

#news-letter p {
    font-size: 14px;
    font-weight: 600;
    color: #818ea0;
}

#news-letter p span {
    color: #ffbd27;
}

/* --- IMPORTANT CHANGES BELOW --- */

/* Apply flex to the form directly */
#news-letter .form {
    width: 40%;
    /* Remove display: flex; here as we apply it to the form */
}

#news-letter #newsletter-form { /* Target the form directly */
    display: flex; /* Make the form a flex container */
    width: 100%; /* Ensure the form takes the full width of its parent (.form div) */
}

#news-letter input {
    height: 3.125rem;
    padding: 0 1.25em;
    font-size: 14px;
    width: 100%; /* Input should take up available space */
    border: 1px solid transparent;
    border-radius: 4px;
    outline: none;
    /* Ensure only the left side has radius */
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

#news-letter button {
    background-color: #088178;
    color: #fff;
    white-space: nowrap;
    /* Ensure only the right side has radius */
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    /* Add border specific to the button for the seamless look */
    border: 1px solid #088178; /* Match button background color */
    padding: 0 1.25em; /* Add padding to the button */
    cursor: pointer; /* Indicate it's clickable */
}

/* Your existing Footer styles */
Footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

Footer .col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
}
Footer{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
Footer .col{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
}
footer .logo{
    width: 110px;
    margin-bottom: 25;
}
footer h4{
    font-size: 14px;
    padding: 20px;
}
footer p{
    font-size: 13px;
    margin: 0 0 8px 0;
}
footer a{
    font-size: 13px;
    text-decoration: none;
    margin-bottom: 10px;
}
footer .follow{
    margin-top: 1px;
}
footer .follow i{
    color: #465b52;
    padding-right: 4px;
    cursor: pointer;
}
footer .install .x-row img{
    width: 50px;
}
.pay-icon{
    width: 60px;
}
footer .install{
    margin: 10px 0 15px;
}
footer .follow i:hover,
footer a:hover{
    color: #088178;
}
footer .copyright{
    width: 100%;
    text-align: center;
}


/*----------------------------SHOPE PAGE--------------------------*/
#page-header{
    background-image: url(images/item-12.jpg);
    width: 100%;
    height: 55vh;
    background-size: cover;
    background-position: top 60% right 0;
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    padding: 14px;
}

#page-header h2{
    color: #fff;
}
#page-header p{
    color: #ffbd27;
}
.g-icon{
    width: 19px;
}
#pageination{
    text-align: center;
}
#pageination a{
    text-decoration: none;
    background-color: #088178;
    padding: 15px 20px;
    border-radius: 4px;
    color: #fff;
    font-weight: 600;

}

/* Single Product */
#pro-details .single-pro-img{
    width: 40%;
    margin: 50px;
}
.small-img-group{
    display: flex;
    justify-content: space-between;
}
.small-img-col{
    flex-basis: 24%;
    cursor: pointer;
}
#pro-details{
    display: flex;
    margin-top: 20px;
}
/* Product name styling */
#pro-details .single-pro-details #productName {
  color: #088178; /* teal-like tone — matches your theme */
  font-size: 24px;
  font-weight: 700;
}

#pro-details .single-pro-details{
    width: 50%;
    padding: 1px;
}
#pro-details .single-pro-details #productDescription {
  display: block;
  max-height: 230px;
  overflow-y: auto;
  margin-bottom: 20px;
  line-height: 1.7;
  font-size: 16px;
  font-weight: 500;
  color: #111;
  background: #fdfdfd;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 12px 14px;
  box-sizing: border-box;
  white-space: pre-wrap;
  word-wrap: break-word;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}

#pro-details .single-pro-details #productDescription:hover {
  background: #fff;
  border-color: #ccc;
}

#pro-details .single-pro-details #productDescription strong {
  color: #0056b3;
  font-weight: 700;
}

#pro-details .single-pro-details h4{
    padding: 20px 0 20px 0;
}
#pro-details .single-pro-details h6{
    padding: 20px 0 20px 0;
    color: rgb(18, 17, 16);
}
#pro-details .single-pro-details h2{
    font-size: 23px;
}
#pro-details .single-pro-details select{
    display: block;
    padding: 5px 10px;
    margin-bottom: 10px;
}
#pro-details .single-pro-details input{
    padding-left: 10px;
    width: 60px;
    height: 47px;
    font-size: 16px;
    margin-right: 19px;
}
#pro-details .single-pro-details button{
    background-color: yellowgreen;
}
#pro-details .single-pro-details span{
    line-height: 25px;
}

/* -----------------------BLOG PAGE COMMENTS---------------------*/
#page-header.blog-header{
    background-image: url(images/item-05.jpg);
}
#blog{
    padding: 150px 150px 0 150px;
}
#blog .blog-box{
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    padding-bottom: 90px;
}
#blog .blog-img{
    width: 50%;
    margin-right: 40px;
}
#blog img{
    width: 85%;
    height: 400px;
    object-fit: cover;
}
#blog .blog-details{
    width: 50%;
}
#blog .blog-details a{
    text-decoration: none;
    font-size: 11px;
    color: #000;
    font-weight: 700;
    position: relative;
    transition: 0.3s;
}
#blog .blog-details a::after{
    content: "";
    width: 50px;
    height: 1px;
    background-color: #000;
    position: absolute;
    top: 4px;
    right: -60px;
}
#blog .blog-details a:hover{
    color: #088178;
}
#blog .blog-details a:hover::after{
    background-color: #088178;
}
#blog .blog-box h1{
    position: absolute;
    top: -40px;
    left: 0;
    font-size: 70px;
    font-weight: 700;
    color: #c9cbce;
    z-index: -9;
}
/*---------------------ABOUT PADE--------------------------*/
.about-header{
    background-image: url(images/Banner-1.jpg);
}
#about-header{
    background-image: url(images/item-12.jpg);
    width: 100%;
    height: 55vh;
    background-size: cover;
    background-position: top 60% right 0;
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    padding: 14px;
}

#about-head img{
    width: 50%;
    height: auto;
}
#about-head{
    display: flex;
    align-items: center;
}
#about-head div{
    padding-left: 40px;
}
#about-app{
    text-align: center;
}
#about-app .video{
    width: 70%;
    height: 100%;
    margin-top: 30px;
}
#about-app .video{
    width: 70%;
    height: 100%;
    margin: 30px auto 0 auto;
}
#about-app .video video{
    width: 100%;
    height: 100%;
    border-radius: 20px;
}
/*------------------contact us----------------*/
.contact-icons{
    width: 15px;
}
#contact-details{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#contact-details .details{
    width: 100%;
}
#contact-details .details span{
    font-size: 12px;
}
#contact-details .details h2{
    font-size: 26px;
    line-height: 35px;
    padding: 15px 0;
}
#contact-details .details h3{
    font-size: 16px;
    padding-bottom: 15px;
}
#contact-details .details li{
    list-style: none;
    display: flex;
    padding: 10px 0;
}
#contact-details .details li i img{
    width: 50px;
    padding-left: 20px;
}
#contact-details .details li p{
    margin: 0;
    font-size: 14px;
    padding: 9px;
}
#contact-details .map{
    width: 55px;
    height: 400px;
}
#contact-details .map iframe{
    width: 55px;
    height: 400px;
}
#form-details{
    display: flex;
    justify-content: space-between;
    margin: 30px;
    padding: 80px;
    border: 1px solid #c9cbce;
}
#form-details form{
    width: 65%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
#form-details form span{
    font-size: 12px;
}
#form-details form h2{
    font-size: 26px;
    line-height: 35px;
    padding: 15px 0;
}
#form-details form input,
#form-details form textarea{
    width: 100%;
    padding: 12px 15px;
    outline: none;
    margin-bottom: 20px;
    border: 1px solid #c9cbce;
}
#form-details form .love{
    background-color: #088178;
    color: #fff;
}
#form-details form .love:hover{
    background-color: rgba(0, 0, 0, 0.707);
}
#form-details .people div{
    padding-bottom: 25px;
    display: flex;
    align-items: flex-start;
}
#form-details .people div img{
    width: 65px;
    height: 65px;
    object-fit: cover;
    margin-right: 15px;
    border-radius: 50px;
}
#form-details .people div p{
    margin: 0;
    font-size: 13px;
    line-height: 25px;
}
#form-details .people div p span{
    display: block;
    font-size: 16px;
    font-weight: #000;
}

/*---------------------carts page-------------------------*/
#page-header.cart-header{
    background-image: url(images/cart-01.jpg);
}
.cart{
    width: 50px;
}

.cart-icon-wrapper {
    position: relative;
    display: inline-block;
  }
  .cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: red;
    color: white;
    font-size: 11px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 0 0 2px white;
  }

.cart-icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1px;
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: red;
  color: white;
  font-size: 11px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  box-shadow: 0 0 0 2px white;
}


.cart-icon-wrapper {
  display: flex;
  align-items: center;
  gap: 1px;
}

.add-cart {
  position: absolute;
  width: 100%;
  background-color: darkgrey;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  cursor: pointer;
  text-align: center;
}

.image:hover .cart1 {
  opacity: 1;
  bottom: 50px;
  padding: 10px;
  text-decoration: none;
}

#cart{
    overflow-x: auto;
}
#cart table .bro{
    width: 30px;
}
.order-now-btn {
  background: #28a745;
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}
.order-now-btn:hover {
  background: #218838;
  transform: translateY(-2px);
}

#cart table{
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    white-space: nowrap;
}
#cart table img{
    width: 100px;
}
#cart table td:nth-child(1){
    width: 100px;
    text-align: center;
}
#cart table td:nth-child(2){
    width: 150px;
    text-align: center;
}
#cart table td:nth-child(3){
    width: 250px;
    text-align: center;
}
#cart table td:nth-child(4),
#cart table td:nth-child(5),
#cart table td:nth-child(6){
    width: 150px;
    text-align: center;
}
#cart table td:nth-child(5) input{
    width: 70px;
    padding: 10px 5px 10px 15px;
}
#cart table thead{
    border: 1px solid #c9cbce;
    border-left: none;
    border-right: none;
}
#cart table thead td{
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    padding: 18px 0;
}
#cart table tbody tr td{
    padding-top: 20px;
}
#cart table tbody td{
    font-size: 13px;
}
#card-add{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
#coupon{
    width: 50%;
    padding: 40px 40px;
}
#coupon h3{
    padding-bottom: 15px;
}
#coupon input{
    padding: 10px 20px;
    outline: none;
    width: 60%;
    margin-right: 10px;
    border: 1px solid #c9cbce;
}
#coupon button{
    background-color: #088178;
    padding: 12px 20px;
}

#Subtotal{
    width: 50%;
    margin-bottom: 30px;
    border: 1px solid #c9cbce;
    padding: 30px;
}
#Subtotal table{
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 20px;
}
#Subtotal table td{
    width: 50%;
    border: 1px solid #c9cbce;
    font-size: 13px;
}
#Subtotal h3{
    padding-bottom: 15px;
}
/*--------------------start media Query--------------------*/

@media (max-width:799px) {
    .section-p1{
        padding: 40px 40px;
    }
    #navbar {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        position: fixed;
        top: 0;
        right: -300px;
        height: 100vh;
        width: 200px;
        z-index: 10000;
        background: #088178;
        box-shadow: 0 40px 60px rgba(0, 0, 0, 0.01);
        padding: 20px 0 0 10px;
        transition: 0.3s;
    }
    #navbar.active{
        right: 0px;
    }
    #navbar li{
        margin-bottom: 25px;
    }
    #mobile li{
        list-style: none;
    }
    #mobile{
        display: flex;
        align-items: center;
    }
    #mobile li{
        color: #000;
        font-size: 24px;
        padding: 20px;
    }
    #close{
        display: initial;
        width: 45px;
        padding: 0 0;
        margin-top: 0;
    }
    #m-cart{
        display: none;
    }
 #hero {
    height: 70vh;
    padding: 0 40px;
    background-position: center top;
  }
  #hero h1 {
    font-size: 34px;
  }
  #hero h2 {
    font-size: 28px;
  }
  #hero p {
    font-size: 14px;
  }
    #feature {
        justify-content: center;
    }

    #feature .feature-box{
        margin: 15px;
    }
    #banner{
        height: 20vh;
    }

    #sm-banner .banner-box{
        min-width: 100%;
        height: 30vh;
    }

    /* Dropdown container */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown button */
.dropbtn {
  cursor: pointer;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 160px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  z-index: 999;
  border-radius: 6px;
}

/* Links inside dropdown */
.dropdown-content li {
  list-style: none;
}

.dropdown-content a {
  color: #333;
  padding: 10px 15px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #f0f0f0;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

    #banner-3 {
        display: flex;
        justify-content: space-between;
        padding: 0px 40px;
    }

    #banner-3 .banner-box{
        width: 28%;
    }

    #news-letter .form{
        width: 100%;
    }

    #header {
        padding: 2px 0 2px 20px;
    }

    /*--------- CONTACT US PAGE--------------*/
    #form-details {
        padding: 40px;
    }
    #form-details form {
        width: 50%;
    }
}

@media (max-width: 877px) {
    .section-p1{
        padding: 15px;
    }
    .logo{
        width: 110px;
    }
    #header{
        padding: 0p 2px;
    }

    h2{
        font-size: 32px;
    }
    h1{
        font-size: 38px;
    }
    #feature{
        justify-content: space-between;
    }
    #feature .feature-box{
        width: 155px;
        margin: 0 4px 5px 4px;
    }
    #product-1{
        
        justify-content: space-between;
    }
    #product-1 .pro{
        width: 23px;
        min-width: 135px;
        padding: 0px 0px;
        margin: 15px 10px;
        position: relative;
    }
    #banner{
        height: 30vh;
    }
    #sm-banner .banner-box {
        width: 100%;
        height: 40vh;
    }
    #sm-banner .banner-box-2 {
        margin-top: 26px;
        margin-bottom: 26px;
    }
    #banner-3 .banner-box{
        width: 100%;
    }
    #banner-3 h2 {
        font-size: 15px;
    }
    /* SINGLE PRODUCT */
    #pro-details {
        display: flex;
        flex-direction: column;
    }
    #pro-details .single-pro-img{
        width: 100%;
        margin-left: 0px;
    }
    #pro-details .single-pro-details {
        width: 100%;
    }
    /* ----------BLOG PAGE------------- */
    #blog{
        padding: 100px 20px 0 20px;
    }
    #blog .blog-box {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    #blog .blog-img {
        width: 100%;
        margin-right: 0;
        margin-bottom: 30px;
    }
    #blog img {
        width: 100%;
    }
    #blog .blog-details {
        width: 100%;
    }
    #page-header.blog-header{
        background-image: url(images/item-01.jpg);
        height: 25vh;
    }
    /*------------ ABOUT PAGE -----------------*/
#page-header{
    background-image: url(images/item-12.jpg);
    width: 100%;
    height: 55vh;
    background-size: cover;
    background-position: top 60% right 0;
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    padding: 14px;
}
    #about-head {
        flex-direction: column;

    }
    #about-head img {
        width: 100%;
        margin-bottom: 20px;
    }
    #about-head div {
        padding-left: 0px;
    }
    #about-app .video{
        width: 100%;
    }
    #page-header {
        width: 100%;
        height: 20vh;
    }
    #header {
        padding: 2px 0px 2px 10px;
    }
    #pageination {
        text-align: center;
        margin-bottom: 20px;
    }
    #mobile li {
        font-size: 20px;
        padding: 9px;
        margin-right: 0;
    }
    /*--------------CONTACT US PAGE-----------*/
    #contact-details {
        flex-direction: column;
    }
    #form-details {
        margin: 10px;
        padding: 30PX 10px;
        flex-wrap: wrap;
    }
    #form-details form {
        width: 100%;
        margin-bottom: 30PX;
    }
    /*-----------------CART PAGE-----------------*/
    #card-add {
        flex-direction: column;
    }
    #coupon {
        width: 100%;
    }

    #Subtotal {
        width: 100%;
        padding: 20px;
    };

}

.install-popup {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(145deg, #1e293b, #0f172a);
  color: white;
  padding: 18px 25px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
  z-index: 9999;
  animation: slideUp 0.5s ease-out;
}

.popup-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.install-popup p {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  margin: 0;
}

.btn-primaryX {
  background: linear-gradient(90deg, #00b4d8, #ff758c);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 10px 20px;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primaryX:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

.btn-secondaryX {
  background: linear-gradient(90deg, #64748b, #334155);
  border: none;
  color: #fff;
  border-radius: 10px;
  padding: 8px 18px;
  font-weight: 500;
  transition: background 0.3s ease;
}

.btn-secondaryX:hover {
  background: linear-gradient(90deg, #475569, #1e293b);
}

@keyframes slideUp {
  from {
    transform: translate(-50%, 100px);
    opacity: 0;
  }
  to {
    transform: translate(-50%, 0);
    opacity: 1;
  }
}
