@import url("https://fonts.googleapis.com/css2?family=Spartan:wght@100;200;300;400;500;600;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Spartan", sans-serif;
}

html {
  scroll-behavior: smooth;
}

/* Global Styles */

h1 {
  font-size: 50px;
  line-height: 64px;
  color: #222;
}

h2 {
  font-size: 46px;
  line-height: 54px;
  color: #222;
}

h4 {
  font-size: 20px;
  color: #222;
}

h6 {
  font-weight: 700;
  font-size: 12px;
}

p {
  font-size: 16px;
  color: #465b52;
  margin: 15px 0 20px 0;
}

.section-p1 {
  padding: 40px 80px;
}

.section-m1 {
  margin: 40px 0;
}
button.normal{
  font-size: 14px;
  font-weight: 600;
  padding: 15px 30px;
  color: #000;
  background-color: #fff;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  outline: none;
  transition: 0.2s;
}

body {
  width: 100%;
}

/* Header Start */
#header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 80px;
  background-color: #e3e6f3;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
  z-index:999 ;
  position: sticky;
  top: 0;
  left: 0;
}

#navbar {
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo{
    width: 120px;
    height: 60px;

}
#navbar li{
  list-style: none;
  padding:0 20px ;
  position: relative;

}
#navbar li a{
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  transition: 0.3s ease;
}
#navbar li a:hover,
#navbar li a.active{
  color: #088178;
}
#navbar li a.active::after,
#navbar li a:hover::after{
  content: "";
  width: 30%;
  height:2px;
  background: #088178;
  position: absolute;
  bottom: -4px;
  left: 20px;

}
#mobile{
  display: none;
  align-items: center;
}

/* Home Page*/
#hero{
  background-image: url("images/hero1.png");
  background-color: #e3e6f3;
  background-repeat: no-repeat;
  height: 90vh;
  width:100%;
  background-size: auto;
  background-position: top 25% right 0;
  padding:0 80px ;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
#hero h4{
  padding-bottom: 20px;
  padding-top: 25px;
}
#hero h1{
  color: #088178;
}
#hero button{
  background-image: url("images/button.png");
  background-color: transparent;
  color: #088178;
  border: 0;
  padding: 14px 80px 14px 65px;
  background-repeat: no-repeat;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
}
#feature{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
#feature .fe-box{
  width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5% 5%;
  box-shadow: 10px 10px 14px rgba(0, 0, 0, 0.03);
  border: 1px solid #cce7d0;
  border-radius: 4px;
  margin: 15px 0;
} 
#feature .fe-box:hover{
  box-shadow: 10px 10px 44px rgba(70,62, 221, 0.1);
}
#feature .fe-box img{
  width: 100%;
  margin-bottom: 10px;
}
#feature .fe-box h6{
  display: inline-block;
  padding: 9px,8px,6px,8px;
  line-height: 1;
  border-radius: 4px;
  color: #088178;
  background-color: #fddde4;
}
#feature .fe-box:nth-child(2) h6{
  background-color: aquamarine;
}
#feature .fe-box:nth-child(3) h6{
  background-color: rgb(166, 190, 183);
}
#feature .fe-box:nth-child(4) h6{
  background-color: rgb(177, 185, 187);
}
#feature .fe-box:nth-child(5) h6{
  background-color: rgb(194, 187, 189);
}
#feature .fe-box:nth-child(6) h6{
  background-color: rgb(223, 223, 221);
}
#product1{
  text-align: center;
}
#product1 .pro-container{
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  flex-wrap: wrap;
  box-sizing: border-box;
  
}
#product1 .pro{
  width:23%;
  min-width: 250px;
  padding: 10px 12px;
  border: 1px solid #cce7d0;
  border-radius: 25px;
  cursor: pointer;
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.02);
  margin: 15px 0;
  transition: 0.2s ease;
  position: relative;
  box-sizing: border-box;
}
#product .pro:hover{
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.08);
}
#product1 .pro img {
  width:100%;
  border-radius: 20px;
}
#product1 .pro .des{
  text-align: start;
  padding: 10px 0;
}
#product1 .pro .des span{
  color: #4a4a4d;
  font-size: 12px;
}
#product1 .pro .des h5{
  padding-top: 7px;
  color: #1a1a1a;
  font-size: 14px;
}
#product1 .pro .des i{
  font-size: 12px;
  color: rgb(243, 181, 25);
}
#product1 .pro .des h4{
  padding-top: 7px;
  font-size: 15px;
  font-weight: 700;
  color: rgb(64, 179, 179);
}
.fa-cart-arrow-down{
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50px;
  background-color: #d4edd8;
  color: #088178;
  border: 1px solid #cce7d0;
  position: absolute;
  bottom: 20px;
  right: 10px;
} 

#banner{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-image: url("images/banner/b2.jpg");
  width: 100%;
  height: 40vh;
  background-size: cover;
  background-position: center;
}
#banner h4{
  color: #fff;
  font-size: 16px;
}
#banner h2{
  color: #fff;
  font-size: 30px;
  padding: 10px 0;
}
#banner span{
  color: #ef3636;
}
#banner button:hover{
  background:#088178;
  color: white;
}

#newsletter{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  background-image: url(images/banner/b14.png);
  background-repeat: no-repeat;
  background-position: 20% 30%;
  background-color: #041e42;
}
#newsletter h4{
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}
#newsletter p{
  font-size: 14px;
  font-weight: 600;
  color: #818ea0;
}
#newsletter p span{
  color: #ecf142;
}
#newsletter .form{
  display: flex;
  width: 40%;
}
#newsletter input{
  height: 3.125rem;
  padding: 0 1.25rem;
  font-size: 14px;
  width: 100%;
  border: 1px solid transparent;
  border-radius: 4px;
  outline: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
#newsletter button{
  background-color: #088178;
  color: #fff;
  white-space: nowrap;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
footer .col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  box-sizing: border-box;

}
footer .logo {
  margin: 30px;
}
footer h4{
  font-size: 14px;
  padding-bottom: 20px;
}

footer p{
  font-size: 13px;
  margin: 0 0 8px 0;
}
footer a{
  font-size: 13px;
  text-decoration: none;
  color: #222;
  margin-bottom: 10px;
}

footer .follow{
  margin-top: 20px;
}
footer .follow i{
  color: #465b52;
  padding-right: 4px;
  cursor: pointer;
}
footer .install .row img{
  border: 1px solid #088178;
  border-radius: 6px;
}
footer .install img{
  margin:10px 0 15px 0;
}
footer .follow i:hover,
footer a:hover{
  color: #088178;
}

footer .copyright {
  width: 100%;
  text-align: center;
}
/*shop page*/
#page-header{
  background-image: url("images/banner/b1.jpg");
  width: 100%;
  height: 40vh;
  background-size: cover;
  display: flex;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  padding: 14px;
}

#page-header h2,
#page-header p{
  color: #fff;
}
#pagination{
  text-align: center;
}
#pagination a{
  text-decoration: none;
  background-color: #095fd7;
  padding: 15px 20px;
  border-radius: 4px;
  color: #fff;
  font-weight: 600;
}
#pagination a i{
  font-size: 16px;
  font-weight: 600;
}

/*single product*/
#prodetails .single-pro-image {
  width: 40%;
  margin-right: 50px;
}
.small-img-group {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  gap: 6px;
}
.small-img-col {
  flex-basis: 24%;
  cursor: pointer;
  transition: 0.2s;
}
.small-img-col img {
  width: 100%;
  border-radius: 8px;
  transition: 0.2s;
}
.small-img-col img:hover {
  border-color: #088178 !important;
  opacity: 0.85;
}
#prodetails {
  display: flex;
  margin-top: 20px;
  align-items: flex-start;
}
#prodetails .single-pro-details {
  width: 50%;
  padding-top: 30px;
}
#prodetails .single-pro-details h6 {
  color: #088178;
  font-size: 12px;
  margin-bottom: 10px;
}
#prodetails .single-pro-details h4 {
  padding: 20px 0 10px 0;
  font-size: 18px;
}
#prodetails .single-pro-details h2 {
  font-size: 28px;
  color: #088178;
}
#prodetails .single-pro-details input {
  width: 60px;
  height: 47px;
  padding-left: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  outline: none;
}
#prodetails .single-pro-details button {
  background-color: #088178;
  color: #fff;
  padding: 13px 28px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s;
}
#prodetails .single-pro-details button:hover {
  background-color: #065f58;
}
#prodetails .single-pro-details span {
  line-height: 1.8;
  font-size: 14px;
  color: #555;
}

/* Responsive sproduct */
@media (max-width: 799px) {
  #prodetails {
    flex-direction: column;
  }
  #prodetails .single-pro-image {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
  #prodetails .single-pro-details {
    width: 100%;
    padding-top: 0;
  }
}
@media (max-width: 477px) {
  #prodetails .single-pro-details h2 {
    font-size: 22px;
  }
  .small-img-group {
    gap: 4px;
  }
}

/*end shop page*/

/*Start blog page*/
#page-header.blog-header{
  background-image: url("images/banner/b19.jpg");
}
#blog {
  width: 100%;
  padding: 40px 80px;
}

.blog-box {
  display: flex;         
  align-items: center;
  position: relative;
  padding-bottom: 90px;
}

.blog-img {
  width: 40%;
  margin-right: 40px;
}

.blog-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.blog-details {
  width: 60%;
}

.blog-details h4 {
  font-size: 24px;
  margin-bottom: 15px;
}

.blog-details p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.blog-details a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
  position: relative;
  transition: 0.3s;
}

.blog-details a::after {
  content: "";
  width: 50px;
  height: 2px;
  background: #000;
  position: absolute;
  top: 50%;
  right: -60px;
}

.blog-box h1 {
  position: absolute;
  top: -40px;
  left: 0;
  font-size: 70px;
  font-weight: 700;
  color: #c9cbce;
  z-index: -1;
}
.single-pro-details
#blog .blog-details a:hover{
  color: #088178;
}

.blog-details a:hover::after{
  background-color: #088178;
}
/*@media query for tablet:1024px*/
@media (max-width: 1024px) {

  #blog {
    padding: 40px 40px;
  }

  .blog-img {
    width: 45%;
    margin-right: 25px;
  }

  .blog-details {
    width: 55%;
  }

  .blog-box h1 {
    font-size: 60px;
    top: -35px;
  }
}
/*@media query for small devices/tablet:768*/
@media (max-width: 768px) {

  #blog {
    padding: 30px 20px;
  }

  .blog-box {
    flex-direction: column;    
    align-items: flex-start;
    padding-bottom: 60px;
  }

  .blog-img {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }

  .blog-details {
    width: 100%;
  }

  .blog-details h4 {
    font-size: 20px;
  }

  .blog-details p {
    font-size: 14px;
  }

  .blog-box h1 {
    font-size: 50px;
    top: -25px;
  }
}
/*@media query for mobile*/
@media (max-width: 480px) {

  #page-header h2 {
    font-size: 24px;
  }

  #page-header p {
    font-size: 14px;
  }

  .blog-details h4 {
    font-size: 18px;
  }

  .blog-details p {
    font-size: 13px;
    line-height: 1.5;
  }

  .blog-details a {
    font-size: 13px;
  }

  .blog-details a::after {
    width: 30px;
    right: -40px;
  }

  .blog-box h1 {
    font-size: 40px;
  }
}


/*end blog page*/

/*start about page*/
#page-header.about-header{
  background-image:url("images/about/banner.png");
}

#contact-details {
  display: flex;              
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

#contact-details .details {
  width: 40%;
}

#contact-details .details span {
  font-size: 14px;
  color: #606063;
}

#contact-details .details h2 {
  font-size: 26px;
  line-height: 35px;
  padding: 20px 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 {
  font-size: 14px;
  padding-right: 15px;
}

#contact-details .details li p {
  margin: 0;
  font-size: 14px;
  color: #555;
}

#contact-details .map {
  width: 60%;
  height: 400px;
}

#contact-details .map iframe {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

/*end about page*/

/*start contact page*/
#form-details {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

/* Left Form */
#form-details form {
  width: 65%;
  display: flex;
  flex-direction: column;
}

#form-details form span {
  font-size: 12px;
  color: #606063;
}

#form-details form h2 {
  font-size: 26px;
  padding: 20px 0;
}

#form-details form input,
#form-details form textarea {
  width: 100%;
  padding: 12px 15px;
  outline: none;
  margin-bottom: 15px;
  border: 1px solid #e1e1e1;
}

#form-details form button {
  width: 150px;
  background-color: #088178;
  color: #fff;
  border: none;
  padding: 12px 0;
  cursor: pointer;
}

/* Right People Section */
#form-details .people {
  width: 35%;
}

#form-details .people div {
  display: flex;
  align-items: flex-start;
  padding-bottom: 25px;
}

#form-details .people div img {
  width: 65px;
  height: 65px;
  object-fit: cover;
  margin-right: 15px;
  border-radius: 50%;
}

#form-details .people div p {
  margin: 0;
  font-size: 13px;
  line-height: 22px;
  color: #555;
}

#form-details .people div p span {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #000;
}

/*TABLET VIEW (max-width: 799px)*/

@media (max-width: 799px) {
  #navbar {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    position: fixed;
    top: 0;
    right: -300px;
    height: 100vh;
    width: 300px;
    background-color: #fff;
    padding: 80px 0 0 10px;
    transition: 0.3s;
  }

  #navbar.active {
    right: 0;
  }

  #navbar li {
    margin-bottom: 25px;
  }

  #mobile {
    display: flex;
    align-items: center;
  }

  #mobile i {
    color: #1a1a1a;
    font-size: 24px;
    padding-left: 20px;
  }

  #contact-details {
    flex-direction: column;
  }

  #contact-details .details {
    width: 100%;
    margin-bottom: 30px;
  }

  #contact-details .map {
    width: 100%;
  }

  #contact-details .map iframe {
    width: 100%;
    height: 350px;
  }

  #form-details {
    flex-direction: column;
  }

  #form-details form {
    width: 100%;
    margin-bottom: 30px;
  }

  #form-details .people {
    width: 100%;
  }

  footer {
    flex-wrap: wrap;
  }

  footer .col {
    width: 50%;
    margin-bottom: 30px;
  }
}

/*MOBILE VIEW (max-width: 477px)*/

@media (max-width: 477px) {

  .section-p1 {
    padding: 20px;
  }

  #header {
    padding: 10px 30px;
  }

  #page-header h2 {
    font-size: 28px;
  }

  #page-header p {
    font-size: 14px;
  }

  /* Contact Details */
  #contact-details .details h2 {
    font-size: 20px;
  }

  #contact-details .details li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }

  /* Form */
  #form-details form h2 {
    font-size: 20px;
  }

  #form-details form button {
    width: 100%;
  }

  /* People section */
  #form-details .people div {
    flex-direction: column;
    align-items: flex-start;
  }

  #form-details .people div img {
    margin-bottom: 10px;
  }

  /* Newsletter */
  #newsletter {
    flex-direction: column;
  }

  #newsletter .form {
    width: 100%;
  }

  #newsletter .form input {
    width: 100%;
    margin-bottom: 10px;
  }

  /* Footer */
  footer .col {
    width: 100%;
  }

  footer .install .row img {
    width: 45%;
  }

  .copyright {
    text-align: center;
    font-size: 13px;
  }
}


/*end contact page*/

/*start cart page*/
#cart {
  overflow-x: auto;
}

#cart table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  white-space: nowrap;
}

#cart table img {
  width: 70px;
}

#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 thead {
  border: 1px solid #e2e9e1;
  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: 15px;
}

#cart table tbody td {
  font-size: 13px;
}

#cart table input {
  width: 60px;
  padding: 5px;
  outline: none;
}

#cart-add {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#coupon {
  width: 50%;
  margin-bottom: 30px;
}

#coupon h3 {
  padding-bottom: 15px;
}

#coupon input {
  padding: 10px 20px;
  outline: none;
  width: 60%;
  margin-right: 10px;
  border: 1px solid #e2e9e1;
}

#subtotal {
  width: 45%;
  margin-bottom: 30px;
  border: 1px solid #e2e9e1;
  padding: 30px;
}

#subtotal h3 {
  padding-bottom: 15px;
}

#subtotal table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 20px;
}

#subtotal table td {
  width: 50%;
  border: 1px solid #e2e9e1;
  padding: 10px;
  font-size: 13px;
}

button.normal {
  background-color: #088178;
  color: #fff;
  padding: 12px 20px;
  border: none;
  cursor: pointer;
}

/* Coupon styles */
#coupon-msg {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 4px;
  display: none;
}
#coupon-msg.success { background: #d4edda; color: #155724; display: block; }
#coupon-msg.error   { background: #f8d7da; color: #721c24; display: block; }
#coupon-msg.warning { background: #fff3cd; color: #856404; display: block; }

.coupon-hint { margin-top: 8px; font-size: 12px; color: #888; }
.coupon-hint span {
  display: inline-block;
  background: #f0f0f0;
  padding: 2px 8px;
  border-radius: 20px;
  margin: 2px;
  font-weight: 600;
  color: #088178;
  cursor: pointer;
  transition: 0.2s;
}
.coupon-hint span:hover { background: #cce7d0; }

#remove-coupon-btn {
  display: none;
  background: #e74c3c;
  color: #fff;
  border: none;
  padding: 15px 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 4px;
}

#discount-row { display: none; }
#discount-row td { color: #088178; font-weight: 600; }

/* Remove button in cart table */
.remove-btn {
  background: #e74c3c;
  color: #fff;
  border: none;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: 0.2s;
}
.remove-btn:hover { background: #c0392b; }

/* Empty cart message */
.empty-cart-msg {
  text-align: center;
  padding: 50px 20px;
  font-size: 16px;
  color: #666;
}
.empty-cart-msg i {
  font-size: 55px;
  color: #cce7d0;
  display: block;
  margin-bottom: 15px;
}
.empty-cart-msg a { color: #088178; font-weight: 700; text-decoration: none; }

/* Checkout Modal */
#checkout-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(3px);
}
#checkout-modal.show { display: flex; }

.modal-box {
  background: #fff;
  width: 90%;
  max-width: 540px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  animation: slideUp 0.3s ease;
}
@keyframes slideUp {
  from { opacity:0; transform:translateY(35px); }
  to   { opacity:1; transform:translateY(0); }
}

.modal-header {
  background: #088178;
  color: #fff;
  padding: 18px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal-header h3 { font-size: 18px; margin: 0; }
.modal-close {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
}

.modal-steps {
  display: flex;
  border-bottom: 1px solid #eee;
  background: #f9fafb;
}
.step-tab {
  flex: 1;
  padding: 13px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: #aaa;
  border-bottom: 3px solid transparent;
  transition: 0.2s;
}
.step-tab.active { color: #088178; border-bottom-color: #088178; background: #fff; }
.step-tab.done   { color: #27ae60; }

.modal-body {
  padding: 25px;
  max-height: 65vh;
  overflow-y: auto;
}

.form-group { margin-bottom: 14px; }
.form-group label {
  font-size: 13px;
  font-weight: 700;
  color: #333;
  display: block;
  margin-bottom: 5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 13px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
  outline: none;
  transition: 0.2s;
  font-family: inherit;
  box-sizing: border-box;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: #088178; box-shadow: 0 0 0 3px rgba(8,129,120,0.1); }
.form-row { display: flex; gap: 12px; }
.form-row .form-group { flex: 1; }

.payment-methods { display: flex; gap: 10px; margin-bottom: 18px; flex-wrap: wrap; }
.pay-option {
  flex: 1;
  min-width: 100px;
  padding: 12px 8px;
  border: 2px solid #e2e9e1;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  transition: 0.2s;
  font-size: 13px;
  font-weight: 600;
}
.pay-option:hover  { border-color: #088178; background: #f0fafa; }
.pay-option.selected { border-color: #088178; background: #e8f5f4; color: #088178; }
.pay-option i { display: block; font-size: 22px; margin-bottom: 5px; }

.sub-fields { display: none; }
.sub-fields.show { display: block; }

.summary-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}
.summary-item img { width: 50px; border-radius: 6px; }
.summary-item .info { flex: 1; }
.summary-item .info h6 { font-size: 13px; margin: 0 0 2px; }
.summary-item .info span { font-size: 12px; color: #888; }
.summary-item .price { font-weight: 700; font-size: 14px; color: #088178; }

.summary-totals {
  background: #f9fafb;
  border-radius: 8px;
  padding: 14px;
  margin-top: 12px;
}
.summary-totals .s-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 4px 0;
}
.summary-totals .s-row.grand {
  font-weight: 700;
  font-size: 15px;
  border-top: 1px solid #ddd;
  margin-top: 8px;
  padding-top: 10px;
  color: #088178;
}
.s-row.disc-line { color: #27ae60; }

.cod-note {
  background: #f0fafa;
  padding: 14px;
  border-radius: 8px;
  border-left: 4px solid #088178;
  font-size: 13px;
  color: #088178;
}

.modal-footer {
  padding: 15px 25px;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f9fafb;
}
.btn-back {
  background: transparent;
  border: 2px solid #ddd;
  color: #555;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
  transition: 0.2s;
}
.btn-back:hover { border-color: #088178; color: #088178; }
.btn-next {
  background: #088178;
  color: #fff;
  border: none;
  padding: 11px 26px;
  border-radius: 5px;
  font-weight: 700;
  cursor: pointer;
  font-size: 14px;
  transition: 0.2s;
}
.btn-next:hover { background: #065f58; }
.btn-next.green { background: #27ae60; }
.btn-next.green:hover { background: #1e8449; }

.success-screen { text-align: center; padding: 25px 15px; }
.success-screen .tick {
  width: 75px; height: 75px;
  border-radius: 50%;
  background: #e8f5f4;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.success-screen .tick i { font-size: 34px; color: #088178; }
.success-screen h3 { font-size: 20px; margin-bottom: 8px; }
.success-screen p  { color: #666; font-size: 13px; }
.order-id {
  background: #f0fafa;
  border-radius: 8px;
  padding: 10px 20px;
  display: inline-block;
  margin: 12px 0;
}
.order-id span { font-size: 20px; font-weight: 800; color: #088178; letter-spacing: 2px; }

/* Cart media queries */
@media (max-width: 768px) {
  #cart-add { flex-direction: column; }
  #coupon, #subtotal { width: 100%; }
  #coupon input { width: 100%; margin-bottom: 10px; }
  #cart table { font-size: 12px; }
  #cart table img { width: 60px; }
  .form-row { flex-direction: column; }
  .modal-box { width: 95%; }
  .modal-body { padding: 18px; }
}
@media (max-width: 477px) {
  #cart table { white-space: nowrap; }
  #cart table td:nth-child(3) { width: 200px; }
  #cart table input { width: 50px; }
  #subtotal { padding: 20px; }
  button.normal { width: 100%; text-align: center; }
}

/*end cart page*/

/* start index page media query */
@media (max-width: 799px) {
  #navbar {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    position: fixed;
    top: 0;
    right: -300px;
    height: 100vh;
    width: 300px;
    background-color: #fff;
    box-shadow: 0 40px 60px rgba(0,0,0,0.1);
    padding: 80px 0 0 10px;
    transition: 0.3s;
  }

  #navbar.active { right: 0; }
  #navbar li { margin-bottom: 25px; }
  #mobile { display: flex; align-items: center; }
  #mobile i { font-size: 24px; padding-left: 20px; }
}

/* Rating Section Wrapper */
#rating-section {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 2px solid #e8f0ed;
}
 
#rating-section h3 {
  font-size: 20px;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
}
 
/* Overall Rating Summary Box */
.rating-summary {
  display: flex;
  align-items: center;
  gap: 30px;
  background: linear-gradient(135deg, #f0faf8, #e8f5f0);
  border: 1px solid #cce7d0;
  border-radius: 16px;
  padding: 24px 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
 
.rating-big-number {
  text-align: center;
  min-width: 90px;
}
 
.rating-big-number span {
  font-size: 56px;
  font-weight: 800;
  color: #088178;
  line-height: 1;
  display: block;
}
 
.rating-big-number small {
  font-size: 13px;
  color: #888;
  display: block;
  margin-top: 4px;
}
 
.rating-stars-display {
  display: flex;
  gap: 4px;
  margin-top: 6px;
  justify-content: center;
}
 
.rating-stars-display i {
  font-size: 18px;
  color: #f3b519;
}
 
.rating-bars {
  flex: 1;
  min-width: 200px;
}
 
.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 7px;
}
 
.rating-bar-row span {
  font-size: 12px;
  color: #555;
  min-width: 45px;
  display: flex;
  align-items: center;
  gap: 3px;
}
 
.rating-bar-row span i {
  font-size: 11px;
  color: #f3b519;
}
 
.bar-track {
  flex: 1;
  height: 8px;
  background: #dde8e2;
  border-radius: 10px;
  overflow: hidden;
}
 
.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #088178, #0aaa9e);
  border-radius: 10px;
  transition: width 0.8s ease;
  width: 0%;
}
 
.rating-bar-row .bar-count {
  font-size: 11px;
  color: #999;
  min-width: 20px;
  text-align: right;
}
 
.total-reviews-count {
  font-size: 13px;
  color: #777;
  margin-top: 6px;
}
 
/* ---- Give Rating Box ---- */
.give-rating-box {
  background: #fff;
  border: 1px solid #cce7d0;
  border-radius: 16px;
  padding: 24px 28px;
  margin-bottom: 30px;
  box-shadow: 0 4px 16px rgba(8, 129, 120, 0.06);
}
 
.give-rating-box h4 {
  font-size: 16px;
  color: #222;
  margin-bottom: 16px;
}
 
/* Interactive Star Picker */
.star-picker {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
  cursor: pointer;
}
 
.star-picker i {
  font-size: 32px;
  color: #ddd;
  transition: color 0.15s, transform 0.15s;
  cursor: pointer;
}
 
.star-picker i:hover,
.star-picker i.hovered,
.star-picker i.selected {
  color: #f3b519;
  transform: scale(1.15);
}
 
.star-label {
  font-size: 14px;
  color: #088178;
  font-weight: 600;
  margin-bottom: 14px;
  min-height: 20px;
}
 
.give-rating-box input[type="text"],
.give-rating-box textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #dde8e2;
  border-radius: 8px;
  font-size: 14px;
  font-family: "Spartan", sans-serif;
  outline: none;
  margin-bottom: 12px;
  box-sizing: border-box;
  transition: border-color 0.2s;
  color: #333;
}
 
.give-rating-box input[type="text"]:focus,
.give-rating-box textarea:focus {
  border-color: #088178;
  box-shadow: 0 0 0 3px rgba(8, 129, 120, 0.1);
}
 
.give-rating-box textarea {
  resize: vertical;
  min-height: 80px;
}
 
.give-rating-box button {
  background: #088178;
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: "Spartan", sans-serif;
  transition: background 0.2s, transform 0.1s;
}
 
.give-rating-box button:hover {
  background: #065f58;
  transform: translateY(-1px);
}
 
.rating-success-msg {
  background: #d4edda;
  color: #155724;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  display: none;
  margin-top: 10px;
}
 
.rating-success-msg.show {
  display: block;
  animation: fadeIn 0.3s ease;
}
 
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
 
/* ---- Reviews List ---- */
.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
 
.reviews-list h4 {
  font-size: 16px;
  color: #222;
  margin-bottom: 4px;
}
 
.review-card {
  background: #fff;
  border: 1px solid #e8f0ed;
  border-radius: 12px;
  padding: 18px 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  animation: slideInCard 0.3s ease;
}
 
@keyframes slideInCard {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
 
.review-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  flex-wrap: wrap;
  gap: 8px;
}
 
.reviewer-name {
  font-size: 14px;
  font-weight: 700;
  color: #222;
  display: flex;
  align-items: center;
  gap: 6px;
}
 
.reviewer-name .avatar {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #088178, #0aaa9e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}
 
.review-stars i {
  font-size: 13px;
  color: #f3b519;
}
 
.review-date {
  font-size: 11px;
  color: #bbb;
}
 
.review-text {
  font-size: 13px;
  color: #555;
  line-height: 1.7;
  margin: 0;
}
 
.no-reviews-msg {
  text-align: center;
  padding: 30px;
  color: #aaa;
  font-size: 14px;
}
 
.no-reviews-msg i {
  font-size: 36px;
  display: block;
  margin-bottom: 10px;
  color: #cce7d0;
}
 
/* Responsive */
@media (max-width: 600px) {
  .rating-summary {
    flex-direction: column;
    padding: 18px 20px;
  }
  .give-rating-box {
    padding: 18px 16px;
  }
  .star-picker i {
    font-size: 28px;
  }
}