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

:root {
  --primary-color: #088178;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Spartan", sans-serif;
}

/* Prevent horizontal scroll */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

/********** Global Styles ************/

h1 {
  font-size: 3.125rem;
  line-height: 4rem;
  color: #222;
}

h2 {
  font-size: 2.875rem;
  line-height: 3.375rem;
  color: #222;
}

h4 {
  font-size: 1.5rem;
  color: #222;
}

h6 {
  font-weight: 700;
  font-size: 12px;
}

p {
  font-size: 16px;
  color: #465b52;
  margin: 15px 0 20px 0;
}

a {
  text-decoration: none;
}

.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: 5px;
  cursor: pointer;
  border: none;
  outline: none;
  transition: all 0.3s ease;
}

button.white {
  font-size: 13px;
  font-weight: 600;
  padding: 11px 18px;
  color: #ffffff;
  background-color: transparent;
  cursor: pointer;
  border: 1px solid white;
  outline: none;
  transition: all 0.3s ease;
}

/* header section */
#Header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 80px;
  background: #e3e6f3;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  box-sizing: border-box;
}

#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: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  position: relative;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  padding: 10px 0;
}

#navbar li a:hover,
#navbar li a:active {
  color: var(--primary-color);
}

#navbar li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background-color: var(--primary-color);
  transition: all 0.4s ease-in-out;
}

#navbar li a:hover::after,
#navbar li a:active::after {
  width: 100%;
}

.head-cart {
  font-size: 1.3rem;
  position: relative;
}

/* Ensure parent link has relative positioning for counter */
#navbar li a,
#mobile a {
  position: relative;
  display: inline-block;
}

#navbar li.lg-bag a,
#mobile > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cart-counter {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #ff4757;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  min-width: 20px;
  animation: bounce 0.6s ease-in-out;
  z-index: 100;
  box-sizing: border-box;
  padding: 0;
  line-height: 1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.cart-counter.hidden {
  display: none;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-5px);
  }
  60% {
    transform: translateY(-3px);
  }
}

#mobile {
  display: none;
}

#Close {
  display: none;
}

/* Page Header */
#page-header {
  background-image: url("../img/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 */
#pagination {
  text-align: center;
}

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

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

/* Blog */
#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: 100%;
  height: 300px;
  object-fit: cover;
}

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

#blog .blog-details a {
  text-decoration: none;
  font-size: 11px;
  color: var(--primary-color);
  font-weight: 700;
  position: relative;
  transition: 0.3s;
}

#blog .blog-details a::after {
  content: "";
  width: 50px;
  height: 1px;
  background-color: var(--primary-color);
  position: absolute;
  top: 4px;
  right: -60px;
}

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

#blog .blog-details a:hover::after {
  background-color: #000;
}

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

/* Cart */
#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 {
  text-align: center;
  vertical-align: middle;
}

#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 tbody td input {
  width: 70px;
  padding: 10px 5px 10px 15px;
  outline: none;
  border: 1px solid #e2e9e1;
}

#cart-add {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#coupon {
  width: 50%;
  margin-bottom: 30px;
}

#coupon h3,
#subtotal h3 {
  padding-bottom: 15px;
}

#coupon input {
  padding: 10px 20px;
  outline: none;
  width: 60%;
  margin-right: 10px;
  border: 1px solid #e2e9e1;
}

#subtotal {
  width: 50%;
  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;
}

/* Modern Cart Design */
.cart-container {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 40px;
  align-items: start;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cart-item {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 20px;
  padding: 25px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.cart-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.item-image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #f8f9fa;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.item-image img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 12px;
}

.item-image img:not([src]), 
.item-image img[src=""] {
  opacity: 0;
}

.item-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, #f0f0f0 25%, transparent 25%), 
              linear-gradient(-45deg, #f0f0f0 25%, transparent 25%), 
              linear-gradient(45deg, transparent 75%, #f0f0f0 75%), 
              linear-gradient(-45deg, transparent 75%, #f0f0f0 75%);
  background-size: 20px 20px;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
  border-radius: 12px;
  opacity: 0.3;
}

.item-image img[src*="data:"] ~ .item-image::before,
.item-image img[src*="http"] ~ .item-image::before,
.item-image img[src*="img/"] ~ .item-image::before {
  display: none;
}

.item-image img[src*="data:"] ~ .item-image::before,
.item-image img[src*="http"] ~ .item-image::before,
.item-image img[src*="img/"] ~ .item-image::before {
  display: none;
}

.cart-item:hover .item-image img {
  transform: scale(1.05);
}

.item-details {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.item-details h4 {
  font-size: 18px;
  font-weight: 600;
  color: #222;
  margin-bottom: 8px;
  line-height: 1.3;
}

.item-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.item-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.quantity-controls {
  display: flex;
  align-items: center;
  background: #f8f9fa;
  border-radius: 25px;
  padding: 5px;
  border: 1px solid #e9ecef;
}

.quantity-controls button {
  width: 32px;
  height: 32px;
  border: none;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #666;
  font-size: 12px;
}

.quantity-controls button:hover:not(:disabled) {
  background: var(--primary-color);
  color: white;
  transform: scale(1.1);
}

.quantity-controls button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.quantity {
  padding: 0 15px;
  font-weight: 600;
  color: #222;
  min-width: 30px;
  text-align: center;
}

.remove-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid #ff4757;
  background: transparent;
  color: #ff4757;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 500;
}

.remove-btn:hover {
  background: #ff4757;
  color: white;
  transform: translateY(-1px);
}

.item-total {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
}

.subtotal {
  font-size: 20px;
  font-weight: 700;
  color: #222;
}

.cart-summary {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.cart-summary #coupon {
  width: 100%;
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
}

.cart-summary #subtotal {
  width: 100%;
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 16px;
}

.summary-item:last-of-type {
  border-bottom: none;
}

.summary-item.total {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
  border-top: 2px solid #e9ecef;
  margin-top: 10px;
  padding-top: 20px;
}

.checkout-btn {
  width: 100%;
  margin-top: 20px;
  padding: 15px 25px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.checkout-btn:hover {
  background: #066d66;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(8, 129, 120, 0.3);
}

.empty-cart {
  text-align: center;
  padding: 60px 20px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
}

.empty-cart i {
  font-size: 60px;
  color: #ccc;
  margin-bottom: 20px;
}

.empty-cart h3 {
  font-size: 24px;
  color: #666;
  margin-bottom: 10px;
}

.empty-cart p {
  color: #999;
  margin-bottom: 30px;
}

.empty-cart a {
  display: inline-block;
  padding: 12px 30px;
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.empty-cart a:hover {
  background: #066d66;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(8, 129, 120, 0.3);
}

/* Responsive Design for Cart */
@media screen and (max-width: 799px) {
  .cart-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .cart-item {
    grid-template-columns: 100px 1fr;
    gap: 15px;
    padding: 20px;
  }
  
  .item-total {
    grid-column: 1 / -1;
    align-items: flex-start;
    margin-top: 15px;
  }
  
  .item-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .cart-summary {
    position: static;
  }
}

@media screen and (max-width: 477px) {
  .cart-item {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .item-image {
    width: 150px;
    margin: 0 auto;
  }
  
  .item-actions {
    align-items: center;
  }
  
  .quantity-controls {
    margin: 0 auto;
  }
}

/* hero section */

#img-slider {
  height: 100%;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

#img-slider .slide img {
  object-fit: cover;
  width: 100vw;
  height: 100vh;
  object-position: top right;
  position: relative;
}

#img-slider .slide .info {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0 80px;
}

.select-none {
  user-select: none;
}

#img-slider .slide .info h4 {
  color: black;
  text-shadow: 2px 2px 2px white;
}

#img-slider .slide .info h2 {
  font-family: "cairo", sans-serif;
  color: white;
  font-size: 50px;
  text-shadow: 2px 2px 5px black;
}

#img-slider .slide .info h1 {
  font-family: "cairo", sans-serif;
  line-height: 1;
  text-shadow: 2px 2px 2px rgb(0, 255, 242);
}

#img-slider .slide .info p span {
  color: rgb(0, 0, 0);
  text-shadow: 2px 2px 2px rgb(0, 238, 255);
}

#img-slider .slide .info button {
  background: url(img/button.png) -3px;
  background-color: transparent;
  color: var(--primary-color);
  border: 0;
  padding: 14px 80px 14px 65px;
  font-size: 15px;
  font-weight: 700;
  transition: 0.4s ease;
}

#img-slider .slide .info button:hover {
  scale: 1.1;
  color: rgb(253, 253, 253);
  text-shadow: 2px 2px 2px black;
}

/* feature section */

#feature {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

#feature .fe-box {
  width: 180px;
  text-align: center;
  padding: 25px 15px;
  box-shadow: 10px 10px 36px rgba(14, 174, 210, 0.2);
  border: 1px solid #bbbbbb;
  border-radius: 10px;
  margin: 15px 0;
  cursor: pointer;
  transition: all 0.4s ease;
}

#feature .fe-box:hover {
  background-color: black;
  color: white;
  scale: 1.2;
}

#feature .fe-box img {
  width: 100%;
  margin-bottom: 10px;
}

#feature .fe-box h6 {
  padding: 9px 8px 6px;
  background-color: hwb(49 0% 0% / 0.423);
  border-radius: 5px;
  color: var(--primary-color);
  line-height: 1;
}

#feature .fe-box:nth-child(2) h6 {
  background-color: #cdebbc;
}

#feature .fe-box:nth-child(3) h6 {
  background-color: #d1e8f2;
}

#feature .fe-box:nth-child(4) h6 {
  background-color: #f6dbf6;
}

#feature .fe-box:nth-child(5) h6 {
  background-color: #cdd4f8;
}

#feature .fe-box:nth-child(6) h6 {
  background-color: #fff2e5;
}

#feature .fe-box h6:hover {
  color: rgb(255, 0, 0);
}

/* product section */

#product1 {
  text-align: center;
}

#product1 .pro-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 20px;
  gap: 15px;
}

#product1 .pro-container .pro {
  width: 23%;
  min-width: 250px;
  padding: 10px 12px;
  border: 1px solid #cce7d0;
  border-radius: 25px;
  cursor: pointer;
  margin: 15px 0;
  transition: all 0.3s ease-in-out;
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.15);
  position: relative;
  background-color: white;
}

#product1 .pro-container .pro:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

/* Load More Button Styles */
.load-more-container {
  text-align: center;
  margin-top: 40px;
  padding: 20px 0;
}

.load-more-btn {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 15px 40px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(8, 129, 120, 0.3);
}

.load-more-btn:hover {
  background: #066d66;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(8, 129, 120, 0.4);
}

.load-more-btn:active {
  transform: translateY(0);
}

.load-more-btn i {
  transition: transform 0.3s ease;
}

.load-more-btn:hover i {
  transform: translateY(3px);
}

.load-more-btn.hidden {
  display: none;
}

/* Hide products initially */
.pro.hidden-product {
  display: none;
}

#product1 .pro-container .pro img {
  width: 100%;
  border-radius: 18px;
}

#product1 .pro .des {
  text-align: start;
  padding: 10px 0;
}

#product1 .pro .des span {
  color: #606063;
  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: var(--primary-color);
}

#product1 .pro .cart i {
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: #00fff73f;
  border-radius: 50px;
  color: var(--primary-color);
  position: absolute;
  bottom: 20px;
  right: 15px;
  transition: 0.3s;
}

#product1 .pro .cart i:hover {
  background-color: aqua;
}

/* call to action */

#banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: url(img/banner/b2.jpg) center/cover;
  height: 40vh;
  width: 100%;
}

#banner h4 {
  color: white;
  font-size: 16px;
}

#banner h2 {
  color: white;
  font-size: 30px;
  padding: 10px 0;
}

#banner h2 span {
  color: #ef3636;
}

#banner button {
  border-radius: 100px;
  border: 4px solid aqua;
  transition: 0.4s;
}

#banner button:hover {
  background-color: var(--primary-color);
  color: #fff;
  font-weight: 800;
  scale: 1.2;
}

/* small banner */

#sm-banner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

#sm-banner .banner-box {
  background: url(img/img1.jpg) center/cover no-repeat;
  height: 50vh;
  min-width: 47%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 30px;
  border-radius: 10px;
}

#sm-banner .banner-box h4 {
  color: white;
  font-size: 20px;
  font-weight: 300;
}

#sm-banner .banner-box h2 {
  color: white;
  font-size: 28px;
  font-weight: 800;
}

#sm-banner .banner-box span {
  color: white;
  font-size: 14px;
  font-weight: 500;
  padding-bottom: 15px;
}

#sm-banner .banner-box button {
  border-radius: 5px;
  font-weight: 700;
  text-transform: capitalize;
}

#sm-banner .banner-box:hover button {
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

#sm-banner .banner-box:nth-child(2) {
  background: url(img/banner/b10.jpg) center/cover no-repeat;
}

/* vanner 3 section */

#banner3 {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 0 80px;
}

#banner3 .banner-box {
  background: url(img/img4.jpg) center/cover no-repeat;
  height: 30vh;
  min-width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 5px;
}

#banner3 .banner-box h4 {
  text-transform: uppercase;
  color: white;
  font-weight: 900;
  font-size: 22px;
}

#banner3 .banner-box h3 {
  text-transform: capitalize;
  color: #ec544e;
  font-weight: 800;
  font-size: 15px;
}

#banner3 .banner-box:nth-child(1) h4,
#banner3 .banner-box:nth-child(3) h4 {
  color: black;
}

#banner3 .banner-box:nth-child(2) {
  background: url(img/img7.jpg) center/cover no-repeat;
}

#banner3 .banner-box:nth-child(3) {
  background: url(img/img3.jpg) center/cover no-repeat;
}

/* newsletter section */

#newsletter {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  background: url(img/banner/b1.jpg) center/cover no-repeat;
  padding: 40px 110px;
}

#newsletter h4 {
  color: white;
  font-weight: 700;
  font-size: 22px;
}

#newsletter p {
  font-size: 14px;
  font-weight: 600;
  color: #818ea0;
}

#newsletter p span {
  color: #ffbd27;
}

#newsletter input {
  height: 3.125rem;
  padding: 0 1.25rem;
  font-size: 14px;
  width: 100%;
  border: 1px solid transparent;
  border-radius: 5px;
  outline: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

#newsletter button {
  background-color: var(--primary-color);
  color: white;
  height: 3.125rem;
  border-radius: 5px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  white-space: nowrap;
}

#newsletter form {
  display: flex;
  width: 40%;
}

/* footer */

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 40px 0;
}

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

footer h4 {
  font-size: 14px;
  margin-bottom: 20px;
}

footer p {
  font-size: 13px;
  margin-bottom: 8px;
}

footer a {
  font-size: 13px;
  text-decoration: none;
  color: #222;
}

footer .follow {
  margin-top: 20px;
}

footer .follow i {
  color: #465b52;
  margin-right: 4px;
}

footer .follow i:hover {
  color: rgb(0, 0, 255);
}

footer .install .row img {
  border: 1px solid var(--primary-color);
  border-radius: 8px;
  cursor: pointer;
}

footer .install img {
  margin: 10px 0 15px;
}

footer .copyright {
  text-align: center;
  width: 100%;
}

/* About Page Styles */
.about-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #222;
}

.about-text h3 {
  font-size: 1.5rem;
  margin: 25px 0 15px 0;
  color: var(--primary-color);
}

.about-text p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #465b52;
}

.about-text ul {
  list-style: none;
  padding: 0;
}

.about-text ul li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 16px;
  color: #465b52;
}

.about-text ul li i {
  color: var(--primary-color);
  margin-right: 15px;
  font-size: 18px;
}

.about-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.features-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.features-container h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #222;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-card i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #222;
}

.feature-card p {
  color: #465b52;
  line-height: 1.6;
}

/* Team Section */
.team-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.team-container h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #222;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.team-member {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.team-member img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 3px solid var(--primary-color);
}

.team-member h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #222;
}

.team-member p {
  color: var(--primary-color);
  font-weight: 600;
}

/* Contact Page Styles */
.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #222;
}

.contact-info > p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #465b52;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-top: 5px;
}

.contact-item h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #222;
}

.contact-item p {
  color: #465b52;
  line-height: 1.5;
}

/* Contact Form */
.contact-form {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
}

.contact-form h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #222;
  text-align: center;
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #e2e9e1;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(8, 129, 120, 0.1);
}

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

.contact-form button.normal {
  display: block;
  margin: 18px auto 0 auto;
  width: 100%;
  max-width: 100%;
  background: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(8, 129, 120, 0.08);
  letter-spacing: 1px;
  transition: all 0.22s cubic-bezier(.4,2,.6,1);
  cursor: pointer;
}

.contact-form button.normal:hover {
  background: #066d66;
  color: #fff;
  box-shadow: 0 6px 18px rgba(8, 129, 120, 0.16);
  transform: scale(1.03) translateY(-1px);
  letter-spacing: 2px;
}

/* FAQ Section */
.faq-container {
  max-width: 1200px;
  margin: 0 auto;
}

.faq-container h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #222;
  text-align: center;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.faq-item {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.faq-item h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #222;
}

.faq-item p {
  color: #465b52;
  line-height: 1.6;
}

/* Map Section */
.map-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.map-container h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #222;
}

.map-placeholder {
  background: #f8f9fa;
  padding: 60px;
  border-radius: 15px;
  border: 2px dashed #dee2e6;
}

.map-placeholder i {
  font-size: 4rem;
  color: #6c757d;
  margin-bottom: 20px;
}

.map-placeholder p {
  font-size: 18px;
  color: #6c757d;
  margin-bottom: 10px;
}

.map-placeholder p:last-child {
  font-size: 16px;
  color: #495057;
}

/* Responsive Design for About and Contact Pages */
@media screen and (max-width: 799px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }
  
  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media screen and (max-width: 477px) {
  .about-text h2,
  .contact-info h2,
  .features-container h2,
  .team-container h2,
  .faq-container h2,
  .map-container h2 {
    font-size: 2rem;
  }
  
  .contact-form {
    padding: 30px 20px;
  }
  
  .feature-card,
  .team-member,
  .faq-item {
    padding: 25px 20px;
  }
  
  .map-placeholder {
    padding: 40px 20px;
  }
}

/* Animation: Fade-in-up on scroll */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(.4,2,.6,1), transform 0.7s cubic-bezier(.4,2,.6,1);
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: none;
}

/* Product Details Modal Styles */
.product-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.45);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  overflow-y: auto;
  padding: 20px;
  box-sizing: border-box;
}
.product-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
  max-width: 800px;
  width: 95vw;
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.close-modal {
  position: absolute;
  top: 18px;
  right: 24px;
  font-size: 2rem;
  color: #888;
  cursor: pointer;
  z-index: 10;
  transition: color 0.2s;
}
.close-modal:hover {
  color: #c00;
}
.modal-content {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.modal-gallery {
  flex: 1 1 260px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.modal-main-img {
  width: 260px;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}
.modal-thumbnails {
  display: flex;
  gap: 8px;
}
.modal-thumbnails img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border 0.2s;
}
.modal-thumbnails img.selected,
.modal-thumbnails img:hover {
  border: 2px solid var(--primary-color, #088178);
}
.modal-info {
  flex: 2 1 320px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
#modal-product-name {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0;
}
.modal-product-price {
  font-size: 1.3rem;
  color: var(--primary-color, #088178);
  font-weight: 600;
}
.modal-product-sizes label,
.modal-product-colors label {
  font-weight: 600;
  margin-right: 8px;
}
#modal-product-size {
  padding: 6px 18px;
  border-radius: 8px;
  border: 1px solid #bbb;
  font-size: 1rem;
  margin-left: 4px;
}
.modal-product-colors {
  display: flex;
  align-items: center;
  gap: 8px;
}
.color-swatch {
  display: inline-block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #eee;
  cursor: pointer;
  transition: border 0.2s;
}
.color-swatch.selected,
.color-swatch:hover {
  border: 2px solid var(--primary-color, #088178);
}
.modal-product-desc {
  color: #444;
  font-size: 1.05rem;
  margin: 0 0 10px 0;
}
.modal-add-to-cart-btn {
  background: var(--primary-color, #088178);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 32px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 10px;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(8,129,120,0.10);
}
.modal-add-to-cart-btn:hover {
  background: #066d66;
}
@media (max-width: 700px) {
  .modal-content {
    flex-direction: column;
    gap: 18px;
  }
  .modal-main-img {
    width: 90vw;
    height: 220px;
    max-width: 98vw;
  }
}

footer .follow .icon a i {
  font-size: 2rem;
  margin-right: 10px;
  transition: transform 0.2s, color 0.2s;
  vertical-align: middle;
  color: #222;
}
footer .follow .icon a.facebook i { color: #1877f3; }
footer .follow .icon a.instagram i { color: #e4405f; }
footer .follow .icon a.linkedin i { color: #0a66c2; }
footer .follow .icon a.x-twitter i { color: #000; }
footer .follow .icon a:last-child i {
  margin-right: 0;
}
footer .follow .icon a:hover.facebook i {
  color: #1877f3;
  transform: translateY(-6px) scale(1.15);
}
footer .follow .icon a:hover.instagram i {
  color: #e4405f;
  transform: translateY(-6px) scale(1.15);
}
footer .follow .icon a:hover.linkedin i {
  color: #0a66c2;
  transform: translateY(-6px) scale(1.15);
}
footer .follow .icon a:hover.x-twitter i {
  color: #000;
  transform: translateY(-6px) scale(1.15);
}
