@import url("https://fonts.googleapis.com/css2?family=League+Spartan:wght@100;200;300;400;500;600;700;800;900&display=swap");

/* global styles */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "League Spartan", 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 0;
}
.section-m1 {
  margin: 40px 0;
}

button.normal {
  font-size: 14px;
  font-weight: 600px;
  padding: 15px 30px;
  color: #000;
  background-color: #fff;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  outline: none;
  transition: 0.2s;
}
button.normal:hover {
  background-color: #088178;
  color: #fff;
}
body {
  width: 100%;
}

/* header styles */

#header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #e3e6f3;
  padding: 20px 80px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
  z-index: 999;
  position:fixed;
  top: 0;
  left: 0;
  right: 0;
}

.header-list {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-list-nav ul {
  display: flex;
}
.header-list-nav ul li {
  list-style-type: none;
  padding: 0 20px;
  position: relative;
}
.header-list-nav ul a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  transition: 0.3s ease;
}
.header-list-nav ul a:hover,
.header-list-nav ul a.active {
  color: #088178;
  content: "";
}
.header-list-icon a {
  color: #1a1a1a;
  padding-left: 20px;
  transition: 0.3s ease;
}
.header-list-icon a:hover,
.header-list-nav ul a.active {
  color: #088178;
}
.header-list-nav ul li a:hover::after,
.header-list-nav ul li a.active::after {
  content: "";
  width: 30%;
  height: 2px;
  background: #088178;
  position: absolute;
  bottom: -4px;
  left: 20px;
}

/* home main styles */

/* hero section styles */

#hero {
  background-image: url(images/hero4.png);
  width: 100%;
  height: 100vh;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0 80px;
}

#hero h4 {
  padding-bottom: 15px;
  font-size: 40px;
}
#hero h2{
  font-size: 70px;

}
#hero h1 {
  color: #088178;
  font-size: 70px;

}
#hero button {
  background-color: transparent;
  background-image: url(images/button.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 260px;
  height: 60px;
  border: 0;
  cursor: pointer;
  font-size: 20px;
  font-weight: 700;
  color: #088178;
  padding: 14px 65px 14px 65px;
}

/* feature section styles */

#features {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
#features .f-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;
  transition: box-shadow 0.3s;
}
#features .f-box:hover {
  box-shadow: 10px 10px 54px rgba(0, 0, 0, 0.1);
}
#features .f-box img {
  width: 100%;
  margin-bottom: 10px;
}
#features .f-box h6 {
  display: inline-block;
  padding: 9px 8px 6px 8px;
  line-height: 1;
  font-size: 14px;
  border-radius: 4px;
  color: #088178;
  background-color: #fddde4;
}
#features .f-box:nth-child(2) h6 {
  background-color: #cdebbc;
}
#features .f-box:nth-child(3) h6 {
  background-color: #d1e8f2;
}
#features .f-box:nth-child(4) h6 {
  background-color: #cdd4f8;
}
#features .f-box:nth-child(5) h6 {
  background-color: #f6dbf6;
}
#features .f-box:nth-child(6) h6 {
  background-color: #fff2e5;
}

/* feature section styles */

.product-section .pro-collection {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin: 0 60px;
}
.product-section h1,
.product-section p {
  text-align: center;
}
.product-section .product-cart {
  width: 280px;
  border: 1px solid #ebebeb;
  padding: 13px;
  margin-bottom: 30px;
  border-radius: 25px;
  position: relative;
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.02);
  transition: box-shadow 0.2s;
}
.product-section .product-cart:hover {
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.06);
}
.product-section .product-cart img {
  width: 100%;
  border-radius: 25px;
}
.product-section .product-cart span {
  color: #969696;
  font-weight: 500;
  line-height: 30px;
}
.product-section .product-cart h4 {
  font-size: 18px;
  color: rgb(41, 41, 41);
}
.product-section .product-cart .stars {
  color: #e6ae2c;
  padding: 6px 0;
}
.product-section .product-cart .price {
  color: #088178;
  padding: 4px 0;
}
.product-section .product-cart .buy-icon {
  color: #088178;
  background-color: #c7e9e75e;
  padding: 15px;
  border-radius: 50px;
  position: absolute;
  right: 10px;
  bottom: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.product-section .product-cart .buy-icon:hover {
  background-color: #088178;
  color: #fff;
}

.cart-btn {
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e8f6f6;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cart-btn i {
  color: #088178;
  font-size: 16px;
  transition: color 0.3s ease;
}

.cart-btn:hover {
  background: #088178;
}

.cart-btn:hover i {
  color: #fff;
}

/* off banner section styles */

#off-banner {
  background-image: url(images/banner/b2.jpg);
  background-size: cover;
  width: 100%;
  height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#off-banner h4 {
  color: #eaebf0;
}
#off-banner h2 {
  color: #eaebf0;
  padding: 20px 0;
}

/* new arrival section styles 
  this section gets the same styles 
  in featured products section
*/

/* banners section styles */

#banners {
  margin: 0 60px;
}
#banners h2,
h4,
span {
  color: rgb(248, 248, 248);
}
#banners .big-banners {
  display: flex;
  align-items: center;
  justify-content: center;
}
#banners .big-banners div {
  min-width: 580px;
  margin: 15px;
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 25px;
  background-size: cover;
  backdrop-filter: blur(8%);
}
#banners .big-banners button {
  margin-top: 20px;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 500;
  background-color: transparent;
  color: rgb(248, 248, 248);
  border: 1px solid rgb(248, 248, 248);
  cursor: pointer;
  transition: 0.3s ease;
}
#banners .big-banners div:hover button {
  background-color: #088178;
  border: 1px solid #088178;
}
#banners .big-banners-1 {
  background-image: url(images/banner/b17.jpg);
}
#banners .big-banners-2 {
  background-image: url(images/banner/b10.jpg);
}
#banners .small-banners-1 {
  background-image: url(images/banner/b7.jpg);
}
#banners .small-banners-2 {
  background-image: url(images/banner/b4.jpg);
}
#banners .small-banners-3 {
  background-image: url(images/banner/b18.jpg);
}
#banners .small-banners {
  display: flex;
  align-items: center;
  justify-content: center;
}
#banners .small-banners div {
  min-width: 370px;
  height: 200px;
  margin: 15px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 25px;
  background-size: cover;
}
#banners .small-banners h2 {
  font-size: 25px;
}
#banners .small-banners h5 {
  color: #771818;
}

/* newsletter section styles */

#newsletter {
  background-image: url(images/banner/b14.png);
  background-repeat: no-repeat;
  background-position: 180px;
  background-color: #041e42;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 75px;
}
#newsletter .newsletter-text h3 {
  color: white;
  font-size: 30px;
  padding: 0 0 15px 0;
}
#newsletter .newsletter-text h5 {
  color: rgb(151, 151, 151);
  font-size: 17px;
}
#newsletter .newsletter-text h5 span {
  color: rgb(216, 182, 29);
}
#newsletter .form input {
  padding: 20px;
  width: 350px;
  height: 56px;
  background-color: #d1d0d0;
  border-radius: 6px 0 0 6px;
  font-size: 18px;

  border: none;
  outline: none;
  margin-right: -4px;
  margin-top: 1px;
}
#newsletter .form button {
  margin-left: 0;
  padding: 20px;
  border: none;
  width: 120px;
  background-color: #088178;
  color: white;
  font-size: 17px;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
}

/* footer section styles */

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 60px 80px;
  background-color: #f6f6f6;
}

footer .col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
}

footer .footer-logo {
  margin-bottom: 30px;
}

footer .footer-logo img {
  max-width: 200px;
  height: auto;
}

footer h4 {
  font-size: 16px;
  padding-bottom: 20px;
  margin-bottom: 10px;
  position: relative;
}

footer h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: #088178;
}

footer p {
  font-size: 14px;
  margin: 0 0 8px 0;
  color: #465b52;
}

footer a {
  font-size: 14px;
  text-decoration: none;
  color: #465b52;
  margin-bottom: 10px;
  position: relative;
  transition: all 0.3s ease;
  display: block;
}

footer a:hover {
  color: #088178;
  padding-left: 10px;
}

footer a:hover::before {
  content: '→';
  position: absolute;
  left: -5px;
  opacity: 0;
  animation: slideIn 0.3s forwards;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

footer .contact-info {
  margin-top: 20px;
}

footer .contact-info li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

footer .contact-info i {
  margin-right: 12px;
  color: #088178;
  font-size: 16px;
}

footer .social-icons {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}

footer .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #e3e6f3;
  color: #088178;
  transition: all 0.3s ease;
}

footer .social-icons a:hover {
  background-color: #088178;
  color: #fff;
  transform: translateY(-3px);
}

/* Responsive Footer */
@media (max-width: 799px) {
  footer {
    padding: 40px 20px;
  }
  
  footer .col {
    width: 100%;
    margin-bottom: 30px;
  }
  
  footer .col:last-child {
    margin-bottom: 0;
  }
}

/* Page Header Styles */
#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;
  margin-top: 90px;
}

#page-header h2,
#page-header p {
  color: #fff;
}

/* Shop Page Styles */
#pagination {
  text-align: center;
}

#pagination a {
  text-decoration: none;
  background-color: #088178;
  padding: 15px 20px;
  border-radius: 4px;
  color: #fff;
  font-weight: 600;
  margin: 0 5px;
}

#pagination a i {
  font-size: 16px;
  font-weight: 600;
}

/* Blog Page Styles */
.blog-header {
  background-image: url("images/banner/b19.jpg");
}

#blog {
  padding: 150px 150px 0 150px;
}

#blog .blog-box {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 20px;
  margin-bottom: 90px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#blog .blog-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

#blog .blog-img {
  width: 50%;
  margin-right: 40px;
}

#blog img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 10px;
}

#blog .blog-details {
  width: 50%;
}

#blog .blog-details h4 {
  font-size: 24px;
  color: #1a1a1a;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

#blog .blog-details h4:hover {
  color: #088178;
}

#blog .blog-details p {
  color: #465b52;
  font-size: 15px;
  line-height: 1.6;
  margin: 15px 0;
}

.blog-meta {
  display: flex;
  gap: 20px;
  margin: 15px 0;
  color: #666;
  font-size: 14px;
}

.blog-meta span {
  display: flex;
  align-items: center;
  color: #666;
}

.blog-meta i {
  margin-right: 5px;
  color: #088178;
}

#blog .blog-details a {
  text-decoration: none;
  font-size: 13px;
  color: #000;
  font-weight: 600;
  position: relative;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
}

#blog .blog-details a i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

#blog .blog-details a:hover {
  color: #088178;
}

#blog .blog-details a:hover i {
  transform: translateX(5px);
}

#blog .blog-box h1 {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 70px;
  font-weight: 700;
  color: #c9cbce;
  z-index: -9;
}

/* Pagination Styles */
#pagination {
  text-align: center;
  margin: 30px 0;
}

#pagination a {
  text-decoration: none;
  background-color: #fff;
  padding: 15px 20px;
  border-radius: 4px;
  color: #1a1a1a;
  font-weight: 600;
  margin: 0 5px;
  transition: all 0.3s ease;
  border: 1px solid #e1e1e1;
}

#pagination a.active {
  background-color: #088178;
  color: #fff;
  border-color: #088178;
}

#pagination a:hover:not(.active) {
  background-color: #f0f0f0;
  color: #088178;
}

/* Responsive Blog Styles */
@media (max-width: 799px) {
  #blog {
    padding: 100px 20px 0 20px;
  }

  #blog .blog-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
    margin-bottom: 60px;
  }

  #blog .blog-img {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }

  #blog img {
    height: 300px;
  }

  #blog .blog-details {
    width: 100%;
  }

  #blog .blog-box h1 {
    font-size: 50px;
    top: -30px;
  }

  .blog-meta {
    flex-wrap: wrap;
    gap: 10px;
  }
}

/* About Page Styles */
.about-header {
  background-image: url("images/banner/b19.jpg") !important;
}

#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: 30px auto 0 auto;
}

#about-app .video video {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

/* Contact Page Styles */
.contact-header {
  background-image: url("images/banner/b19.jpg");
}

#contact-details {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 40px 80px;
}

#contact-details .details {
  width: 40%;
}

#contact-details .details span {
  font-size: 14px;
  text-transform: uppercase;
  color: #333;
}

#contact-details .details h2 {
  font-size: 28px;
  line-height: 35px;
  padding: 20px 0;
  color: #1a1a1a;
}

#contact-details .details h3 {
  font-size: 18px;
  padding-bottom: 15px;
  color: #088178;
}

#contact-details .details li {
  list-style: none;
  display: flex;
  align-items: flex-start;
  padding: 15px 0;
}

#contact-details .details li i {
  font-size: 16px;
  padding-right: 22px;
  color: #088178;
}

#contact-details .details li p {
  margin: 0;
  font-size: 15px;
  color: #465b52;
}

#contact-details .map {
  width: 55%;
  height: 450px;
}

#contact-details .map iframe {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

/* Form Details Section */
#form-details {
  display: flex;
  justify-content: space-between;
  margin: 30px 80px;
  padding: 40px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

/* Contact Form Styles */
#form-details form {
  width: 48%;
}

#form-details form span {
  font-size: 14px;
  color: #088178;
  text-transform: uppercase;
  letter-spacing: 1px;
}

#form-details form h2 {
  font-size: 26px;
  margin: 15px 0 30px;
  color: #1a1a1a;
}

#form-details form input,
#form-details form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid #e1e1e1;
  border-radius: 6px;
  outline: none;
  font-size: 15px;
  transition: all 0.3s ease;
}

#form-details form input:focus,
#form-details form textarea:focus {
  border-color: #088178;
  box-shadow: 0 0 5px rgba(8, 129, 120, 0.2);
}

#form-details form button {
  background-color: #088178;
  color: #fff;
  padding: 15px 40px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

#form-details form button:hover {
  background-color: #066b65;
  transform: translateY(-2px);
}

/* Feedback Display Styles */
.feedback-display {
  width: 48%;
  padding: 30px;
  background-color: #f8f9fa;
  border-radius: 8px;
}

.feedback-display h2 {
  color: #088178;
  margin-bottom: 25px;
  font-size: 24px;
  border-bottom: 2px solid #088178;
  padding-bottom: 10px;
}

#feedbackList {
  max-height: 500px;
  overflow-y: auto;
  padding-right: 10px;
}

#feedbackList::-webkit-scrollbar {
  width: 6px;
}

#feedbackList::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

#feedbackList::-webkit-scrollbar-thumb {
  background: #088178;
  border-radius: 10px;
}

.feedback-item {
  background-color: white;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.feedback-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feedback-item h3 {
  color: #1a1a1a;
  margin-bottom: 10px;
  font-size: 18px;
}

.feedback-item p {
  color: #465b52;
  margin: 8px 0;
  font-size: 15px;
  line-height: 1.5;
}

.feedback-item .timestamp {
  color: #888;
  font-size: 13px;
  text-align: right;
  margin-top: 10px;
  font-style: italic;
}

/* Responsive Design */
@media (max-width: 799px) {
  #contact-details {
    flex-direction: column;
    padding: 20px;
  }

  #contact-details .details,
  #contact-details .map {
    width: 100%;
    margin-bottom: 30px;
  }

  #form-details {
    flex-direction: column;
    margin: 20px;
    padding: 30px 20px;
  }

  #form-details form,
  .feedback-display {
    width: 100%;
  }

  #form-details form {
    margin-bottom: 40px;
  }

  .feedback-display {
    padding: 20px;
  }

  #feedbackList {
    max-height: 400px;
  }
}

@media (max-width: 799px) {
  #page-header {
    height: 30vh;
  }
  
  #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 .blog-details {
    width: 100%;
  }
  
  #about-head {
    flex-direction: column;
  }
  
  #about-head img {
    width: 100%;
    margin-bottom: 20px;
  }
  
  #about-head div {
    padding-left: 0;
  }
  
  #about-app .video {
    width: 100%;
  }
  
  #contact-details {
    flex-direction: column;
  }
  
  #contact-details .details {
    width: 100%;
    margin-bottom: 30px;
  }
  
  #contact-details .map {
    width: 100%;
  }
  
  #form-details {
    flex-direction: column;
    padding: 30px 20px;
  }
  
  #form-details form,
  .feedback-display {
    width: 100%;
    margin-bottom: 30px;
  }
}

/* Team Section Styles */
#team-section {
  padding: 60px 80px;
  background-color: #f8f9fa;
}

#team-section h2 {
  text-align: center;
  color: #1a1a1a;
  font-size: 32px;
  margin-bottom: 15px;
}

#team-section > p {
  text-align: center;
  color: #465b52;
  margin-bottom: 40px;
  font-size: 16px;
}

.team-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.team-member {
  background: white;
  border-radius: 12px;
  padding: 25px;
  width: 300px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.member-image {
  text-align: center;
  margin-bottom: 20px;
}

.member-image img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #088178;
  padding: 3px;
}

.member-info {
  text-align: center;
}

.member-info h3 {
  color: #1a1a1a;
  font-size: 20px;
  margin-bottom: 8px;
}

.member-info .position {
  color: #088178;
  font-size: 15px;
  font-weight: 500;
  display: block;
  margin-bottom: 15px;
}

.contact-details {
  text-align: left;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #e1e1e1;
}

.contact-details p {
  display: flex;
  align-items: center;
  margin: 10px 0;
  color: #465b52;
  font-size: 14px;
}

.contact-details p i {
  color: #088178;
  margin-right: 10px;
  font-size: 16px;
}

/* Responsive Design for Team Section */
@media (max-width: 799px) {
  #team-section {
    padding: 40px 20px;
  }

  .team-container {
    gap: 20px;
  }

  .team-member {
    width: 100%;
    max-width: 300px;
  }
}

/* Cart Styles */
#cart {
    padding: 40px 80px;
    margin-top: 80px;
}

#cart h1 {
    text-align: center;
    margin-bottom: 40px;
}

#cart-items {
    max-width: 1200px;
    margin: 0 auto;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.cart-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-right: 20px;
    border-radius: 4px;
}

.cart-item-details {
    flex: 1;
}

.cart-item-details h4 {
    margin: 0 0 10px 0;
    color: #1a1a1a;
}

.cart-item-details p {
    margin: 5px 0;
    color: #666;
}

.cart-item-price {
    font-size: 18px;
    font-weight: 600;
    color: #088178;
    margin: 0 20px;
}

.remove-item {
    background: none;
    border: none;
    color: #ff0000;
    cursor: pointer;
    padding: 8px;
    transition: all 0.3s ease;
}

.remove-item:hover {
    color: #cc0000;
    transform: scale(1.1);
}

#cart-summary {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.summary-details {
    flex: 1;
}

.summary-details h3 {
    margin-bottom: 15px;
    color: #1a1a1a;
    font-size: 20px;
}

.summary-details p {
    margin: 10px 0;
    font-size: 16px;
    color: #1a1a1a;
    font-weight: 500;
}

.summary-details span {
    color: #088178;
    font-weight: 600;
}

#total-amount {
    color: #088178;
    font-size: 18px;
    font-weight: bold;
}

#total-items {
    color: #088178;
    font-weight: 600;
}

#checkout-btn {
    background-color: #088178;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

#checkout-btn:hover {
    background-color: #066661;
    transform: translateY(-2px);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #088178;
    color: white;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 50%;
    min-width: 18px;
    text-align: center;
}

.header-list-icon {
    position: relative;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    overflow-y: auto;
}

.modal-content {
    position: relative;
    background: #fff;
    margin: 5% auto;
    padding: 30px;
    width: 90%;
    max-width: 600px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
}

.close:hover {
    color: #000;
}

.form-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.form-section:last-child {
    border-bottom: none;
}

.form-section h3 {
    color: #088178;
    margin-bottom: 20px;
    font-size: 18px;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #1a1a1a;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #088178;
    box-shadow: 0 0 5px rgba(8, 129, 120, 0.2);
    outline: none;
}

.form-group textarea {
    height: 100px;
    resize: vertical;
}

#registration-form button[type="submit"] {
    width: 100%;
    padding: 15px;
    background: #088178;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

#registration-form button[type="submit"]:hover {
    background: #066661;
    transform: translateY(-2px);
}

/* Responsive styles for the form */
@media (max-width: 768px) {
    .modal-content {
        margin: 10% auto;
        padding: 20px;
        width: 95%;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-row .form-group {
        margin-bottom: 20px;
    }
}

/* Bill Modal Styles */
#bill-content {
    padding: 20px;
}

.bill-header {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 2px solid #088178;
    padding-bottom: 20px;
}

.bill-header h2 {
    color: #088178;
    margin: 15px 0;
}

.bill-details {
    margin: 20px 0;
}

.bill-details h3 {
    color: #088178;
    margin-bottom: 15px;
    font-size: 18px;
}

.customer-info, .shipping-info, .order-info {
    margin-bottom: 25px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.bill-items {
    margin: 15px 0;
}

.bill-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.bill-item span {
    color: #1a1a1a;
}

.bill-total {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 2px solid #088178;
}

.bill-total p {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    margin: 10px 0;
    color: #1a1a1a;
}

.bill-total span {
    color: #088178;
    font-weight: bold;
}

.bill-footer {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.bill-footer button {
    min-width: 150px;
}

/* Print Styles */
@media print {
    body * {
        visibility: hidden;
    }
    #bill-modal, #bill-modal * {
        visibility: visible;
    }
    #bill-modal {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        background: white;
    }
    .bill-footer {
        display: none;
    }
    .modal-content {
        box-shadow: none;
    }
    .close {
        display: none;
    }
}

