*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

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: black;
  background-color: rgb(255, 255, 255);
  border-radius: 4px;
  cursor: pointer;
  border: none;
  outline: none;
  transition: 0.02s;
}

button.white {
  font-size: 13px;
  font-weight: 600;
  padding: 11px 18px;
  color: #ffffff;
  background-color: transparent;
  cursor: pointer;
  border: 1px solid #ffffff;
  outline: none;
  transition: 0.02s;
}

body{
  width: 100%;
}

/* header */

#header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 80px;
  background-color: #ffffff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
  z-index: 999;
  position: sticky;
  top: 0;
  left: 0;
}

#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: 16px;
  font-weight: 600;
  color: #326299;
  transition: 0.3s ease;
}

#navbar li a:hover,
#navbar li a.active {
  color: rgb(0, 24, 158);
}

#navbar li a.active::after,
#navbar li a:hover::after{
  content: "";
  width: 30%;
  height: 2px;
  background: rgb(0, 24, 158);
  position: absolute;
  bottom: -4px;
  left: 20px;
}


/*home page*/
#hero{
  background-image: url(img/hero6.png);
  height: 90vh;
  width: 100%;
  background-size: cover;
  background-position:  top 25% right 0% ;
  padding: 0 80px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}


#hero h4{
  padding-bottom: 15px;
}

#hero h2{
  color: #FFFFFF;
}

#hero h1{
  padding-bottom: 15px;
  color: #FFFFFF;
}
#hero button{
  background-image: url(img/Button.png);
  background-color: transparent;
  color: #326299;
  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;
  text-align: center;
  padding: 25px 15px;
  box-shadow: 20px 20px 34px rgba(0, 0, 0, 0.01);
  border: 1px solid #cecece;
  border-radius: 4px;
  margin: 15px 0;
}

#feature .fe-box:hover{
  box-shadow: 10px 10px 54px 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: #326299;
  background-color: #b9d5eb;
}

#product1{
  text-align: center;
}

#product1 .pro-container{
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  flex-wrap: wrap;
}

#product1 .pro {
  width: 23%;
  min-width: 250px;
  padding: 10px 12px;
  border: 1px solid #b9d5eb;
  border-radius: 25px;
  cursor: pointer;
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.02);
  margin: 15px 0;
  transition: 0.02s ease;
  position: relative;
}

#product1 .pro:hover{
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.06);
}

#product1 .pro img{
  width: 100%;
  border-radius: 20px;
}

#product1 .pro .des{
  text-align: start;
  padding: 10px 0;
}

#product1 .pro .des span{
  color: #326299;
  font-size: 12px;
}

#product1 .pro .des h5{
  padding-top: 7px;
  color:#465b52;
  font-size: 14px;
}

#product1 .pro .des i{
  font-size: 12px;
  color: rgb(231, 179, 67);
}

#product1 .pro .des h4{
  padding-top: 7px;
  font-size: 15px;
  font-weight: 700;
  color: #22b84f;
}

#banner{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-image: url(img/banner/b1.png);
  width: 100%;
  height: 40vh;
  background-size: cover;
  background-position: center;
}

#banner h4{
  color: #071b5a;
  font-size: 20px;
}

#banner h2{
  color: #071b5a;
  font-size: 50px;
  padding: 10px 0;
}

#banner h2 span{
  color: rgb(199, 61, 61);
}

#banner button:hover{
  background-color: #0f9ec2;
  color: white;
}

#sm-banner{
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

#sm-banner .banner-box{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background-image: url(img/banner/b14.png);
  min-width: 600px;
  height: 50vh;
  background-size: cover;
  background-position: center;
  padding: 30px;
}

#sm-banner .banner-box2{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background-image: url(img/banner/b13.png);
  min-width: 600px;
  height: 50vh;
  background-size: cover;
  background-position: center;
  padding: 30px;
}

#newsletter{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  background-color: rgb(73, 153, 219);
}

#newsletter .newstext {
  flex: 1; 
}

#newsletter h4{
  font-size: 22px;
  font-weight: 700;
  color: white; 
}

#newsletter p{
  font-size: 14px;
  font-weight: 600;
  color: rgb(228, 219, 219); 
}

#newsletter p span{
  color: rgb(238, 220, 119); 
}

#newsletter.form{
  display: flex;
}

#newsletter input{
  height: 3.125rem;
  padding: 0 1.25em;
  font-size: 14px;
  width: 500px;
  border: 1px solid transparent;
  border-radius: 4px;
  outline: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

#newsletter button{
  background-color: #0f9ec2;
  color: #ffffff;
  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;
}

footer .logo{
  margin-bottom: 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: rgb(103, 153, 197);
  margin-bottom: 10px;
}

footer .follow{
  margin-top: 20px;
}

footer .follow i{
  color: #418cca;
  padding-right: 4px;
  cursor: pointer;
}

footer.install.row img{
  border: 1px solid color #0f9ec2;
  border-radius: 6px;
}

footer.install img{
  margin: 10px 0 15px 0;
}

footer .follow i:hover,
footer a:hover{
  color: #b9d5eb;
}

footer .copyright{
  width: 100%;
  text-align: center;
}

/*shop */

#page-header{
  background-image: url(img/banner/b2.png);
  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: #ffffff;
}

#pagination{
  text-align: center;
}

#pagination a{
  text-decoration: none;
  background-color: #0f9ec2;
  padding: 15px 20px;
  border-radius: 4px;
  color: rgb(255, 255, 255);
  font-weight: 600;
}

#pagination a i{
  font-size: 16px;
  font-weight: 600;
}

.search-container2 {
  background-color: #ffffff;
  padding: 20px 0;
  text-align: center;
}

.search-bar2 {
  display: inline-block;
  border: 1px solid #000000;
  border-radius: 5px;
  overflow: hidden;
}

#custom-search-input2 {
  width: 300px;
  padding: 10px;
  border: none;
  outline: none;
  background-color: transparent;
  font-size: 16px;
}

#custom-search-button2 {
  background-color: #0f9ec2;
  color: white;
  border: none;
  padding: 13px 15px;
  cursor: pointer;
  transition: background-color 0.3s;
}

#custom-search-button2:hover {
  background-color: #0c7ea5;
}


/*single product */

#prodetails{
  display: flex;
  margin-top: 20px;
}

#prodetails .single-pro-image{
  width: 40%;
  margin-right: 50px;

}

.small-img-group {
  display: flex;
  justify-content: space-between;
}

.small-img-column{
  flex-basis: 24%;
  cursor: pointer;
}

#prodetails .single-pro-details{
  width: 50%;
  padding-top: 30px;
}

#prodetails .single-pro-details h4{
  padding: 40px 0 20px 0;
}

#prodetails .single-pro-details h2{
  font-size: 26px;
}

#prodetails .single-pro-details input{
  width: 50px;
  height: 47px;
  padding-left: 10px;
  font-size: 16px;
  margin-right: 10px;
}

#prodetails .single-pro-details input:focus{
  outline: none;
}

#prodetails .single-pro-details button{
  background-color: #0f9ec2;
  color: #ffffff;
}

#prodetails .single-pro-details button:hover{
  background-color: #0c7ea5;
}

#prodetails .single-pro-details button:active{
  background-color: #0b6583;
}

#prodetails .single-pro-details span{
  line-height: 25px;
}

.close-button {
  background-color: #48b5e7; 
  color: #ffffff; 
  border: none; 
  padding: 5px 10px; 
  border-radius: 3px; 
  cursor: pointer;
  position: absolute; 
  top: 190px; 
  right: 20px; 
  font-size: 14px;
  z-index: 500; 
}

.close-button:hover {
  background-color: #22adee; 
}

#popup-message {
  display: none;
  position: fixed;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #333;
  color: #fff;
  padding: 20px;
  border-radius: 5px;
  z-index: 1000;
}

/* services */
#page-header.services-header{
  background-image: url(img/banner/b3.png);
}

#page-header.services-header h2,
#page-header.services-header p{
  color: #21702e;
}

#page-header.services-header span{
  color: rgb(226, 52, 52);
}

#services{
  padding: 150px 150px 0 150px;
}

#services .services-box{
  display: flex;
  align-items: center;
  width: 100%;
  padding-bottom: 90px;
}

#services .services-img{
  width: 50%;
  margin-right: 40px;
}

#services img{
  width: 100%;
  height: 300px;
  object-fit: cover;
}

#services .services-details{
  width: 50%;
}

#services .services-details a{
  text-decoration: none;
  font-size: 15px;
  color: black;
  font-weight: 700;
  position: relative;
  transition: 0.3s;
}

#services .services-details a::after{
  content: "";
  width: 60%;
  height: 1px;
  background-color: black;
  position: absolute;
  top: 10px;
  right: -55px;
}

#services .services-details a:hover{
  color: #3777bb;
}

#services .services-details a:hover::after{
  background-color: #3777bb;
}


/* about */
#page-header.about-header{
  background-image: url(img/about/b1.png);
}

#about-head {
  display: flex;
  align-items: center;
}

#about-head img{
  width: 50%;
  height: auto;
}

#about-head div{
  padding-left: 40px;
}

#about-app{
  text-align: center;
}

#about-app .video{
  width: 70%;
  height: 100%;
  margin-top: 30px;
  margin: 30px auto 0 auto;
}

#about-app .video video{
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

/*contact*/

#contact-details{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#contact-details .details{
  width: 40%;
}

#contact-details .details span
#form-details form span {
  font-size: 12px;
}

#contact-details .details h2,
#form-details form 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: 22px;
}

#contact-details .details li p{
  margin: 0;
  font-size: 14px;
}

#contact-details map{
  width: 55%;
  height: 400px;
}

#contact-details .map img{
  width: 1000px;
  height: 470px;
}


#form-details{
  display: flex;
  justify-content: space-between;
  margin: 30px;
  padding: 80px;
  border: 1px solid #c5c3c3;
}

#form-details form{
  width: 65%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

#form-details form input,
#form-details form textarea{
  width: 100%;
  padding: 12px 15px;
  outline: none;
  margin-bottom: 20px;
  border: 1px solid rgb(177, 168, 168);
}

#form-details form button{
  background-color: #36a2cc;
  color: #fff;
}

#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;
}

#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: 600;
  color: black;
}

/* cart*/

#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: 100px;
  text-align: center;
}

#cart table td:nth-child(5) input{
  width: 70px;
  padding: 10px 5px 10px 15px;
}

#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-add{
  display: flex;
  flex-wrap: left;
  justify-content: space-between;
}

#coupon{
  width: 50%;
  margin-top: 30px;
}

#coupon h3,
#subtotal h3{
  padding-bottom: 15px;
}

#coupon input{
  padding: 10px 20px;
  outline: none;
  width: 60%;
  margin-right: 10px;
  border: 1px solid #e2e9e1;
}

#coupon button,
#subtotal button{
  background-color:#1f9dd8;
  color: white;
  padding: 12px 20px;}


#subtotal button:hover{
    background-color: #0b498b;
  }

  #subtotal button:active{
    background-color: #3772b1;
  }
#subtotal{
  width: 50%;
  margin-bottom: 30px;
  border: 1px solid #e2e9e1;
  padding: 30px;
}

#subtotal table{
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 20px;
}

#subtotal table td{
  width: 50%;
  border: 1px solid #e2e9e1;
  padding: 10px;
  font-size: 13px;
}

#cart .fa-xmark:hover {
  color: #ff0000; 
  cursor: pointer; 
}

#cart .fa-xmark {
  transition: color 2s ease;
  font-size: 1.3em;
}
/* login*/
#logincover {
  background-image: url(img/logincover.png);
  min-height: 100vh; 
  width: 100%;
  background-size: cover;
  background-position: top 25% right 0%;
  padding: 100px 20px; 
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.login-container {
  background-color: white;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 300px;
  text-align: center;
}

.login-container h2 {
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 15px;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
}

.form-group input {
  width: 100%;
  padding: 8px;
  box-sizing: border-box;
}

.login-button {
  width: 100%;
  padding: 10px;
  background-color: #007BFF;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.login-button:hover {
  background-color: #0056b3;
}

/* RESPONSIVE!!?*/
@media (max-width: 768px) {
  #header {
    padding: 20px;
  }

  #logincover {
    padding: 80px 20px; 
  }

  .login-container {
    width: 90%; 
  }
}

/* sign up */
#signupcover {
  background-image: url(img/logincover.png);
  min-height: 100vh; 
  width: 100%;
  background-size: cover;
  background-position: top 25% right 0%;
  padding: 100px 20px; 
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.signup-container {
  background-color: white;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 90%; 
  max-width: 500px; 
  text-align: center;
}

.signup-container h2 {
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 15px;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
}

.form-group input {
  width: 100%;
  padding: 8px;
  box-sizing: border-box;
}

.signup-button {
  width: 100%;
  padding: 10px;
  background-color: #007BFF;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.signup-button:hover {
  background-color: #0056b3;
}

/* My Purchases page */

#search-bar {
  margin-bottom: 20px;
}

#search-input {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  width: 70%;
}

#search-button {
  padding: 10px 20px;
  border: none;
  background-color: #326299;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

#search-button:hover {
  background-color: #274567;
}

.order-history{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 30px;
}

.order-card{
  width: 30%;
  background: #ffffff;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

.order-details h3{
  font-size: 22px;
  margin-bottom: 10px;
  color: #3388af;
}

.order-details p{
  font-size: 16px;
  margin-bottom: 5px;
  color: #465b52;
}

.producto{
  display: flex;
  align-items: center;
}

.producto img{
  width: 70px;
  height: 70px;
  border-radius: 8px;
  margin-right: 15px;
}

.producto-info h4{
  font-size: 18px;
  margin-bottom: 5px;
  color: #326299;
}

.producto-info p{
  font-size: 16px;
  color: #465b52;
}

#mypurchases {
  position: relative;
}

#order-banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px; 
  background-color: rgb(73, 153, 219); 
  z-index: -1;
}

#mypurchases h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 30px;
  color: #fff; 
  position: relative; 
  z-index: 1; 
}

/*checkout*/

.checkout-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.checkout-left, .checkout-right {
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  flex: 1;
  margin: 10px;
}

.checkout-left {
  max-width: 60%;
}

.checkout-right {
  max-width: 35%;
}

.checkout-left h1, .checkout-right h4 {
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
  color: #465b52;
}

.form-group input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
}

.order-summary {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.order-summary th, .order-summary td {
  padding: 15px;
  border: 1px solid #ddd;
  text-align: left;
}

.order-summary th {
  background: #f9f9f9;
  font-weight: 600;
}

.payment-methods {
  margin-bottom: 20px;
}

.hover-button {
  cursor: pointer;
  display: inline-block;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.hover-button:hover {
  background-color: #f0f0f0;
}

.payment-methods .form-group input {
  margin-right: 10px;
}

.dropdown {
  margin-top: 10px;
}

.dropdown input {
  display: block;
  width: 100%;
  padding: 8px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.hidden {
  display: none;
}

.selected {
  background-color: #e0e0e0;
  border-color: #a0a0a0;
}

.gcash-warning {
  color: red;
  font-size: 12px;
  margin-top: 10px;
}

.checkout-right button.normal {
  width: 100%;
  padding: 15px;
  font-size: 16px;
  background-color: #1f9dd8;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.checkout-right button.normal:hover {
  background-color: #0c7ea5;
}

/* profile */
.profile-container {
  background-color: #f2f2f2;
  border-radius: 8px;
  padding: 30px;
  max-width: 800px;
  margin: 20px auto;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.profile-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.profile-info h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 28px;
  color: #333;
  margin-bottom: 30px;
}

.profile-details p {
  font-size: 18px;
  color: #666;
  margin-bottom: 20px;
}

.toggle-password {
  margin-top: 20px;
  margin-bottom: 20px; 
}

.view-orders-btn {
  background-color: #4CAF50;
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  font-size: 18px;
  transition-duration: 0.4s;
  cursor: pointer;
  border-radius: 8px;
  width: 100%;
  max-width: 300px;
  outline: none;
}

.view-orders-btn:hover {
  background-color: #45a049;
}

/* Custom checkbox */
.toggle-password input[type="checkbox"] {
  display: none;
}

.toggle-password label {
  cursor: pointer;
  position: relative;
  padding-left: 35px;
  font-size: 16px;
  color: #666;
}

.toggle-password label::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 3px;
  width: 20px;
  height: 20px;
  border: 2px solid #666;
  border-radius: 4px;
}

.toggle-password input[type="checkbox"]:checked + label::before {
  background-color: #4CAF50;
  border-color: #4CAF50;
}

.toggle-password label::after {
  content: "\f070";
  font-family: FontAwesome;
  font-size: 16px;
  color: white;
  position: absolute;
  top: 7px;
  left: 3px;
  opacity: 0;
  transition: opacity 0.2s;
}

.toggle-password input[type="checkbox"]:checked + label::after {
  opacity: 1;
}

/* Modal */
.modal {
  display: none; 
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); 
  overflow: auto;
}

.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  border-radius: 10px;
  text-align: center;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.confirmation-message {
  color: green; 
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.order-details {
  margin-top: 20px;
  font-size: 16px;
}

.stars {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.stars .fas {
  font-size: 24px;
  color: #ccc;
  cursor: pointer;
  transition: color 0.25s;
}

.stars .fas:hover,
.stars .fas.active {
  color: #ffd700; 
}

#feedback-comment {
  width: 100%;
  margin-top: 10px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

/* new buttons */
.view-receipt-btn,
.submit-feedback-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 16px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s;
}

.view-receipt-btn:hover,
.submit-feedback-btn:hover {
  background-color: #0056b3;
}

/* feedback form */
.feedback {
  margin-top: 20px;
}

.stars {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.stars .fas {
  font-size: 24px;
  color: #ccc;
  cursor: pointer;
  transition: color 0.25s;
}

.stars .fas:hover,
.stars .fas.active {
  color: #ffd700; 
}

#feedback-comment {
  width: 100%;
  margin-top: 10px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}


.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  border-radius: 10px;
  text-align: center;
  position: relative; 
}


.confirmation-message {
  color: green; 
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

/* Receipt */
.receipt-container {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 20px;
}

.receipt-header {
  text-align: center;
  margin-bottom: 20px;
}

.order-details,
.order-summary {
  margin-bottom: 30px;
}

.order-summary table {
  width: 100%;
  border-collapse: collapse;
}

.order-summary th,
.order-summary td {
  border-bottom: 1px solid #ddd;
  padding: 8px 0;
  text-align: left;
}

.order-summary th:first-child,
.order-summary td:first-child {
  width: 70%;
}

.order-summary th:last-child,
.order-summary td:last-child {
  text-align: right;
}

.order-summary tfoot td:last-child {
  font-weight: bold;
}


@media (max-width: 768px) {
  .container {
    width: 90%;
  }

}













