@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600&display=swap");

:root{
   --main-color:#406F46;
   --primary-color: #E4F6E7;
   --black:#222;
   --white:#fff;
   --bg: #F5F6F9;
   --hover-color: #ce8c12;
   --light-black:#666;
   --box-shadow:0 .5rem 1rem rgba(0,0,0,.1);
}

*{
    font-family: 'Poppins', sans-serif;
    margin: 0; padding: 0;
    box-sizing: border-box;
    outline: none; border: none;
    text-decoration: none;
    transition: .2s linear;
    text-transform: capitalize;
}

html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 6rem;
}

html::-webkit-scrollbar{
    width: 1rem;
}

html::-webkit-scrollbar-track{
    background: var(--white);
}

html::-webkit-scrollbar-thumb{
    background: var(--primary-color);
}

section{
    padding: 3rem 9%;
}

.heading{
    text-align: center;
    color: var(--hover-color);
    text-transform: uppercase;
    margin-bottom: 3rem;
    font-size: 4rem;
    margin-top: 2rem;
}

.heading span{
    color: var(--main-color);
    text-transform: uppercase;
}

.btn{
  display:inline-block;
  margin:20px 0;
  padding:12px 30px;
  background:var(--main-color);
  color:#fff;
  border-radius:30px;
  text-decoration:none;
  font-size:18px;
}

.btn:hover{
    letter-spacing: .2rem;
}

/* header */

.header{
    padding-top: 2rem;
    padding-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 0; left: 0; right: 0;
    background: #fbfffe;
    z-index: 1000;
    text-transform: capitalize;
}

.header .logo{
    font-size: 2.5rem;
    font-weight: bolder;
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 8px;
}

.header .logo .logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.header .logo i{
    color: var(--main-color);
    padding: .5rem;
}

.header .navbar a{
    font-size: 2rem;
    margin-left: 2rem;
    color: var(--black);
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

.header .navbar a i {
    font-size: 1.4rem;
}

.header .navbar a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--main-color);
    transition: width 0.3s ease;
}

.header .navbar a:hover {
    color: var(--main-color);
}

.header .navbar a:hover::after {
    width: 100%;
}

.header .icons div{
    cursor: pointer;
    font-size: 2.5rem;
    color: var(--main-color);
    margin-left: 2rem;
}

.header .icons div:hover{
    color: var(--hover-color);
}

#menu-btn{
    display: none;
}

/* home */

.home{
    padding: 0;
}

.home .slide{
    min-height: 100vh;
    width: 100%;
    background-size: cover !important;
    background-position: center !important;
    display: flex;
    align-items: center;
    justify-content: flex-start;   
    padding-left: 9%;    
}

.home .slide .content{
    width: 60rem;
    text-align: left;             
    transition: .7s ease;
}

.home .slide .content h3{
    font-size: 5rem;
    text-transform: uppercase;
    color: var(--main-color);
    text-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    line-height: 1.1;
    padding: 2rem 0;
}

.home .slide .content span{
    font-size: 2.5rem;
    color: var(--primary-color);
}

.home .swiper-slide-active .content{
    display: inline-block;
}

.home-slider .swiper-button-prev,
.home-slider .swiper-button-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    color: var(--main-color);
    transition: all 0.3s ease;
}

.home-slider .swiper-button-prev::after,
.home-slider .swiper-button-next::after {
    font-size: 18px;
    font-weight: 700;
}

.home-slider .swiper-button-prev:hover,
.home-slider .swiper-button-next:hover {
    background: var(--main-color);
    color: #fff;
}

.home-slider .swiper-button-prev {
    left: 20px;
}

.home-slider .swiper-button-next {
    right: 20px;
}

.socials a{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  width:45px;
  height:45px;
  background:#fff;
  border-radius:50%;
  margin-right:12px;
  font-size:20px;
  color:#1d1d1d;
  box-shadow:0 3px 10px rgba(0,0,0,0.1);
}
.socials a:hover{
    background-color: var(--main-color);
    color:#fff;
}

/* home */


/* Main Section */
.categories-section {
  padding: 50px 0;
  /* display: flex; */
  /* justify-content: center; */
  /* width: 80%; */
}

.categories-container {
  background: #5fa86b;
  padding: 40px 20px;


  border-radius: 40px;
  text-align: center;
}

.categories-container h2 {
  color: white;
  font-size: 28px;
  margin-bottom: 30px;
  font-weight: 600;
}

/* Category Cards */
.categories-row {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.cat-card {
  width: 160px;
  background: white;
  padding: 20px;
  border-radius: 25px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 10px;
  text-align: center;
  transition: 0.3s ease;
}

.cat-card:hover {
  transform: translateY(-5px);
  box-shadow: rgba(0, 0, 0, 0.18) 0px 10px 20px;
}

.cat-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 10px;
}

.cat-card p {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}


/* about */

.about .row{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.about .row .image{
    flex: 1 1 40rem;
}

.about .row .image img{
    width: 100%;
}

.about .row .content{
    flex: 1 1 50rem;
    padding: 6rem;
}

.about .row .content span{
    font-size: 2rem;
    color: var(--light-black);
}

.about .row .content h3{
    font-size: 2.5rem;
    color: var(--main-color);
    padding-top: 1rem;
}

.about .row .content p{
    font-size: 1.4rem;
    color: var(--light-black);
    padding: 1rem 0;
    line-height: 2;
}

/* about */





  /* ===== PRODUCT GRID ===== */
    .product-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    /* ===== PRODUCT CARD ===== */
    .product-card {
      background:#fff;
      border-radius:12px;
      padding:15px;
      text-align:center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    }

    .product-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 25px rgba(0,0,0,0.15);
    }

    /* ===== IMAGE BOX ===== */
    .img-box {
      width:100%;
      height:270px;
      border-radius:12px;
      overflow:hidden;
      margin-bottom:12px;
      background:#f0f0f0;
    }

    .img-box img {
      width:100%;
      height:100%;
      object-fit:cover;
      display:block;
    }

    /* VIEW DETAILS BUTTON INSIDE IMAGE */
.view-btn {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 20px;
  background: var(--main-color);
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  opacity: 0;
  transition: all 0.4s ease;
}

/* Make image box relative for positioning */
.img-box {
  position: relative;
}

/* HOVER EFFECT: BUTTON SLIDES UP TO CENTER */
.img-box:hover .view-btn {
  bottom: 50%;
  transform: translate(-50%, 50%);
  opacity: 1;
}


    /* ===== TEXT ===== */
    .product-card h3 { margin:10px 0 5px; font-size:17px; }
    .price { font-size:19px; font-weight:600; color:var(--hover-color); margin:8px 0; }
    .desc { font-size:14px; color:#555; line-height:1.5; margin-bottom:12px; }

    /* ===== COLOR BUTTONS ===== */
    .color-options {
      display:flex;
      justify-content:center;
      gap:8px;
      margin-bottom:12px;
    }

    .color-btn {
      width:18px; height:18px; border-radius:50%;
      border:2px solid #ddd; cursor:pointer; outline:none;
      transition: transform 0.2s;
    }
    .color-btn:hover { transform: scale(1.2); }

    .blue { background:var(--main-color); }
    .red { background:var(--hover-color); }
    .black { background:var(--black); }


/* ===== RESPONSIVE GRID ===== */

/* Large screens (default already 4 columns) */

/* Tablets (≤ 992px) */
@media (max-width: 992px) {
  .product-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .img-box {
    height: 240px;
  }
}

/* Small tablets (≤ 768px) */
@media (max-width: 768px) {
  .product-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .img-box {
    height: 220px;
  }

  .product-card h3 {
    font-size: 16px;
  }

  .price {
    font-size: 18px;
  }
}

/* Mobile (≤ 480px) */
@media (max-width: 480px) {
  .product-row {
    grid-template-columns: 1fr;
  }

  .img-box {
    height: 200px;
  }

  .product-card {
    padding: 12px;
  }

  .desc {
    font-size: 13px;
  }
}



/* services */



/* ============ Services Section ============ */
.services-section {
  padding: 60px 0;
  display: flex;
  justify-content: center;
  background-color: var(--primary-color);
}

.services-container {
  width: 90%;
  max-width: 1250px;
  text-align: center;
}

.service-subtext {
  color: #555;
  margin-top: 8px;
  margin-bottom: 40px;
  font-size: 16px;
}

/* ============ Service Cards ============ */
.services-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.service-card {
  background: white;
  padding: 30px 25px;
  border-radius: 25px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: 0.3s ease;
  border-top: 6px solid #F59747;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

/* ===== Service Image ===== */
.service-img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 3px solid #F59747;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 1.5rem;
  color: var(--light-black);
  line-height: 1.7;
}


/* services */


/* blog */

/* SECTION */
.blog-section {
  width: 100%;
  padding: 70px 0;
  background: #f5f7fa;
}

/* HEADER */
.blog-header {
  text-align: center;
  margin-bottom: 50px;
}



.blog-header p {
  font-size: 17px;
  color: #666;
}

/* GRID */
.blog-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 30px;
}

/* CARD */
.blog-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* IMAGE */
.blog-img {
  position: relative;
}

.blog-img img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

/* BADGE */
.blog-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #406F46;
  color: #fff;
  padding: 5px 12px;
  font-size: 13px;
  border-radius: 6px;
  text-transform: uppercase;
}

/* CONTENT */
.blog-content {
  padding: 22px;
}

.blog-content h3 {
  font-size: 22px;
  color: #222;
  margin-bottom: 10px;
}

.blog-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
  margin-bottom: 18px;
}

/* FOOTER */
.blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.read-btn {
  padding: 9px 16px;
  background: #406F46;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.read-btn:hover {
  background: #2f5936;
}

.blog-date {
  font-size: 13px;
  color: #666;
}



/* blog */

.brands-section {
  width: 100%;
  padding: 70px 0;
  background: #f8f9fa;
}

.brand-title {
  text-align: center;
  font-size: 38px;
  margin-bottom: 40px;
  color: #333;
  text-transform: uppercase;
  font-weight: 700;
}

.brands-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 25px;
}

/* PERFECT BRAND BOX */
.brand-box {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;

}

.brand-box img {
  width: 100%;
  max-width: 120px;             /* LOGO SIZE CONTROL */
  height: auto;
  object-fit: contain;          /* PREVENT STRETCH */
  filter: grayscale(100%);
  transition: 0.3s;
}

/* HOVER EFFECT */
.brand-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.brand-box:hover img {
  filter: grayscale(0%);
  transform: scale(1.1);
}



/* faq */

.faq-section {
  padding: 60px 0;
  background: var(--primary-color);
  display: flex;
  justify-content: center;
}

.faq-container {
  width: 90%;
  max-width: 1200px;
}

.faq-see-more {
  text-align: center;
  margin-top: 35px;
}

.faq-see-more .btn {
  background: var(--main-color);
  color: #fff;
  font-size: 1.6rem;
  padding: 14px 35px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s ease, letter-spacing 0.3s ease;
}

.faq-see-more .btn:hover {
  letter-spacing: 0.15rem;
}

.faq-see-more .btn i {
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}

.faq-see-more .btn:hover i {
  transform: translateX(4px);
}

.faq-row {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.faq-image {
  flex: 1;
  min-width: 250px;
}

.faq-image img {
  width: 100%;
  border-radius: 15px;
}

.faq-content {
  flex: 2;
  min-width: 300px;
}

.faq-content h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--main-color);
  margin-bottom: 40px;
}

.faq-item {
  background: white;
  border-radius: 15px;
  margin-bottom: 15px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  overflow: hidden;
  border-left: 5px solid var(--main-color);
}

.faq-question {
  width: 100%;
  padding: 20px;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  border: none;
  outline: none;
  background: white;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: var(--main-color);
}

.faq-answer {
  max-height: 0;
  padding: 0 20px;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
  font-size: 1.5rem;
  color: #555;
  line-height: 1.7;
  padding: 15px 0;
  margin: 0;
}

/* Responsive */
@media(max-width: 900px){
  .faq-row {
    flex-direction: column;
  }

  .faq-image, .faq-content {
    min-width: 100%;
  }
}

/* contact */

/* Footer */

.footer-section {
  background: linear-gradient(135deg, #406F46, #2f5234);
  color: #f1f1f1;
  padding: 70px 0 40px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.footer-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.footer-logo img {
  height: 45px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-logo span {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

.footer-col h3 {
  font-size: 20px;
  margin-bottom: 18px;
  color: #fff;
  position: relative;
}

/* underline effect */
.footer-col h3::after {
  content: "";
  width: 40px;
  height: 3px;
  background: #ffb703;
  position: absolute;
  left: 0;
  bottom: -6px;
  border-radius: 10px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.8;
  color: #e4e4e4;;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  font-size: 14px;
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: #ffb703;
  padding-left: 6px;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.social-icons a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: #ffb703;
  color: #000;
  transform: translateY(-4px);
}

/* Divider */
.footer-container hr {
  border: none;
  height: 1px;
  background: rgba(255,255,255,0.2);
  margin: 40px 0 20px;
}

/* Bottom Text */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
  color: #e4e4e4;
  padding-top: 5px;
}

.footer-bottom-left {
  flex: 1;
}

.footer-bottom-center {
  flex: 1;
  text-align: center;
}

.footer-bottom-center a {
  color: #ffb703;
  text-decoration: none;
  font-weight: 600;
}

.footer-bottom-center a:hover {
  text-decoration: underline;
}

.footer-bottom-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  gap: 18px;
}

.footer-bottom-right a {
  color: #e4e4e4;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-bottom-right a:hover {
  color: #ffb703;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-section {
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .footer-bottom-left,
  .footer-bottom-center,
  .footer-bottom-right {
    flex: none;
    width: 100%;
    justify-content: center;
  }

  .footer-col h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .social-icons {
    justify-content: center;
  }
}


/* Responsive */
@media(max-width: 768px){
  .footer-row {
    flex-direction: column;
  }

  .footer-col {
    margin-bottom: 20px;
  }
}

/* ============ Breadcrumb ============ */
.breadcrumb-section {
  padding: 2rem 9%;
  background: var(--bg);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.5rem;
  color: var(--light-black);
}

.breadcrumb a {
  color: var(--main-color);
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb a:hover {
  color: var(--hover-color);
}

.breadcrumb span {
  color: var(--light-black);
}

/* ============ Single Product Page ============ */
.single-product {
  padding: 4rem 9%;
}

.product-detail-row {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

/* Gallery */
.product-gallery {
  flex: 1 1 450px;
  max-width: 550px;
}

.main-image {
  width: 100%;
  height: 450px;
  border-radius: 18px;
  overflow: hidden;
  background: var(--bg);
  margin-bottom: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.thumbnail-row {
  display: flex;
  gap: 12px;
}

.thumbnail {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 3px solid transparent;
  background: var(--bg);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.thumbnail:hover {
  transform: translateY(-3px);
}

.thumbnail.active {
  border-color: var(--main-color);
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Product Info */
.product-info {
  flex: 1 1 400px;
}

.product-category {
  display: inline-block;
  background: var(--primary-color);
  color: var(--main-color);
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.product-info h1 {
  font-size: 3.2rem;
  color: var(--black);
  margin-bottom: 10px;
  line-height: 1.2;
}

.product-price {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--hover-color);
  margin-bottom: 15px;
}

.product-desc {
  font-size: 1.5rem;
  color: var(--light-black);
  line-height: 1.8;
  margin-bottom: 25px;
}

/* Color Select */
.product-color-select {
  margin-bottom: 20px;
}

.product-color-select span {
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 10px;
}

.product-color-select .color-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 3px solid #ddd;
  cursor: pointer;
  margin-right: 10px;
  transition: transform 0.2s, border-color 0.2s;
}

.product-color-select .color-btn:hover,
.product-color-select .color-btn.selected {
  transform: scale(1.15);
  border-color: var(--main-color);
}

/* Quantity */
.product-quantity {
  margin-bottom: 25px;
}

.product-quantity span {
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 10px;
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 0;
  width: fit-content;
  border: 2px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
}

.qty-control button {
  width: 42px;
  height: 42px;
  background: var(--bg);
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.qty-control button:hover {
  background: var(--primary-color);
}

.qty-control input {
  width: 55px;
  height: 42px;
  text-align: center;
  font-size: 1.6rem;
  border: none;
  border-left: 2px solid #ddd;
  border-right: 2px solid #ddd;
  outline: none;
  -moz-appearance: textfield;
  appearance: textfield;
}

.qty-control input::-webkit-outer-spin-button,
.qty-control input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

/* Action Buttons */
.product-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.compare-add-btn {
  background: var(--main-color);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  border: none;
}

.compare-add-btn.active {
  background: var(--hover-color);
}

.product-actions .btn:hover {
  letter-spacing: 0.15rem;
}

/* Features */
.product-features h3 {
  font-size: 1.8rem;
  color: var(--black);
  margin-bottom: 12px;
}

.product-features ul {
  list-style: none;
  padding: 0;
}

.product-features ul li {
  font-size: 1.4rem;
  color: var(--light-black);
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-features ul li i {
  color: var(--main-color);
  font-size: 1.5rem;
}

/* ============ Product Tabs ============ */
.product-tabs {
  margin-bottom: 50px;
}

.tab-buttons {
  display: flex;
  gap: 0;
  border-bottom: 3px solid #eee;
  margin-bottom: 25px;
}

.tab-btn {
  padding: 14px 30px;
  font-size: 1.6rem;
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--light-black);
  border-bottom: 3px solid transparent;
  margin-bottom: -3px;
  transition: color 0.3s, border-color 0.3s;
}

.tab-btn:hover {
  color: var(--main-color);
}

.tab-btn.active {
  color: var(--main-color);
  border-bottom-color: var(--main-color);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.tab-content p {
  font-size: 1.5rem;
  color: var(--light-black);
  line-height: 1.9;
  max-width: 800px;
}

/* Specs Table */
#specs-table {
  width: 100%;
  max-width: 600px;
  border-collapse: collapse;
}

#specs-table tr {
  border-bottom: 1px solid #eee;
}

#specs-table td {
  padding: 14px 20px;
  font-size: 1.5rem;
}

#specs-table td:first-child {
  font-weight: 600;
  color: var(--black);
  text-transform: capitalize;
  width: 40%;
}

#specs-table td:last-child {
  color: var(--light-black);
}

/* Related Products */
.related-products {
  margin-top: 30px;
}

.related-products .product-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ============ Single Product Responsive ============ */
@media (max-width: 992px) {
  .product-detail-row {
    gap: 30px;
  }

  .product-gallery {
    max-width: 100%;
  }

  .main-image {
    height: 380px;
  }

  .related-products .product-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .single-product {
    padding: 2rem 5%;
  }

  .product-detail-row {
    flex-direction: column;
  }

  .main-image {
    height: 320px;
  }

  .product-info h1 {
    font-size: 2.5rem;
  }

  .product-price {
    font-size: 2.2rem;
  }

  .related-products .product-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .main-image {
    height: 260px;
  }

  .thumbnail {
    width: 60px;
    height: 60px;
  }

  .product-actions {
    flex-direction: column;
  }

  .product-actions .btn {
    width: 100%;
    text-align: center;
  }

  .related-products .product-row {
    grid-template-columns: 1fr;
  }

  .tab-btn {
    padding: 10px 18px;
    font-size: 1.4rem;
  }
}

/* credit */

@media (max-width: 991px){

    html{
        font-size: 55%;
    }

    .header{
        padding: 1.5rem 2rem;
    }

    .header .navbar a{
        font-size: 1.5rem;
    }

    section{
        padding: 2rem;
    }
}

@media (max-width : 768px){

    #menu-btn{
        display: inline-block;
    }

    .fa-times{
        transform: rotate(180deg);
    }

    .header .navbar{
        position: absolute;
        top: 99%;
        left: 0; right: 0;
        background: var(--white);
        border-top: .1rem solid var(--main-color);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        padding: 1rem 0;
    }

    .header .navbar.active{
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .header .navbar a{
        display: block;
        margin: 0;
        padding: 1.5rem 3rem;
        font-size: 1.8rem;
        font-weight: 500;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        transition: background 0.3s ease, color 0.3s ease;
    }

    .header .navbar a:last-child {
        border-bottom: none;
    }

    .header .navbar a:hover {
        background: var(--primary-color);
        color: var(--main-color);
    }

    .header .navbar a::after {
        display: none;
    }

    .home .slide .content{
        width: 40rem;
    }

    .home .slide .content h3{
        font-size: 4rem;
    }

    .home .slide .content span{
        font-size: 2.2rem;
    }
}

@media (max-width: 450px){

    html{
        font-size: 50%;
    }

    .home .slide .content h3{
        font-size: 3rem;
    }

    .home .slide .content span{
        font-size: 2rem;
    }
}


/* ============ Compare Checkbox on Cards ============ */
.compare-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  color: var(--light-black);
  padding: 10px 16px;
  user-select: none;
  border: 1.5px solid #ddd;
  border-radius: 50px;
  background: #fff;
  transition: all 0.25s ease;
  min-height: 44px;
  -webkit-tap-highlight-color: transparent;
}

.compare-check:hover {
  border-color: var(--main-color);
  color: var(--main-color);
  background: var(--primary-color);
}

.compare-check:active {
  transform: scale(0.97);
}

.compare-check input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.compare-check input[type="checkbox"]:checked ~ .compare-icon,
.compare-check input[type="checkbox"]:checked ~ .compare-text {
  color: #fff;
}

.compare-check:has(input:checked) {
  background: var(--main-color);
  border-color: var(--main-color);
  color: #fff;
}

.compare-check .compare-icon {
  display: inline-flex;
  align-items: center;
  transition: color 0.25s;
}

.compare-check .compare-text {
  font-weight: 500;
  transition: color 0.25s;
}

/* ============ Compare Floating Bar ============ */
.compare-bar {
  position: fixed;
  bottom: -100%;
  left: 0;
  right: 0;
  z-index: 1100;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  padding: 14px 20px;
  transition: bottom 0.4s ease;
}

.compare-bar.active {
  bottom: 0;
}

.compare-bar-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 15px;
}

.compare-bar-items {
  display: flex;
  gap: 12px;
  flex: 1;
  overflow-x: auto;
}

.compare-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg);
  border-radius: 10px;
  padding: 6px 10px;
  min-width: 160px;
}

.compare-bar-item img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
}

.compare-bar-item span {
  font-size: 13px;
  font-weight: 500;
  color: var(--black);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100px;
}

.compare-bar-item button {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--light-black);
  font-size: 12px;
  padding: 2px;
  transition: color 0.2s;
}

.compare-bar-item button:hover {
  color: #e74c3c;
}

.compare-bar-btn {
  margin: 0;
  padding: 10px 24px;
  font-size: 14px;
  white-space: nowrap;
}

.compare-bar-clear {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: var(--light-black);
  padding: 8px;
  transition: color 0.2s;
}

.compare-bar-clear:hover {
  color: #e74c3c;
}

/* ============ Compare Modal ============ */
.compare-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1300;
  display: none;
  align-items: center;
  justify-content: center;
}

.compare-modal.active {
  display: flex;
}

.compare-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}

.compare-modal-content {
  position: relative;
  background: var(--white);
  border-radius: 18px;
  width: 95%;
  max-width: 1100px;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.compare-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px;
  border-bottom: 1px solid #eee;
}

.compare-modal-header h2 {
  font-size: 2.2rem;
  color: var(--black);
  margin: 0;
}

.compare-modal-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 2rem;
  color: var(--light-black);
  padding: 5px;
  transition: color 0.2s, transform 0.2s;
}

.compare-modal-close:hover {
  color: #e74c3c;
  transform: rotate(90deg);
}

.compare-table-wrap {
  overflow: auto;
  padding: 20px 30px 30px;
}

/* ============ Compare Table ============ */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 500px;
}

.compare-table tr {
  border-bottom: 1px solid #f0f0f0;
}

.compare-table td {
  padding: 16px 15px;
  vertical-align: top;
  font-size: 1.4rem;
}

.compare-table tr:first-child td {
  padding-top: 0;
  border-bottom: 2px solid #eee;
}

.compare-product-cell {
  text-align: center;
  padding: 10px 0;
}

.compare-product-cell img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.compare-product-cell h4 {
  font-size: 1.5rem;
  color: var(--black);
  margin-bottom: 6px;
}

.compare-view-link {
  font-size: 1.3rem;
  color: var(--main-color);
  text-decoration: none;
  font-weight: 500;
}

.compare-view-link:hover {
  color: var(--hover-color);
  text-decoration: underline;
}

.compare-label {
  font-weight: 600;
  color: var(--black);
  text-transform: capitalize;
  width: 140px;
  min-width: 140px;
  background: var(--bg);
  border-radius: 6px 0 0 6px;
}

.compare-value {
  color: var(--light-black);
}

.compare-price {
  font-weight: 700;
  color: var(--hover-color);
  font-size: 1.6rem;
}

.compare-color-dot {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #ddd;
  margin-right: 6px;
}

.compare-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.compare-features li {
  font-size: 1.3rem;
  color: var(--light-black);
  padding: 3px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.compare-features li i {
  color: var(--main-color);
  font-size: 1.2rem;
}

/* ============ Compare Dedicated Page ============ */
.cpick-heading {
  font-size: 2.2rem;
  color: var(--black);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cpick-badge {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 20px;
  background: #eee;
  color: var(--light-black);
  transition: all 0.3s ease;
}

.cpick-badge.active {
  background: var(--primary-color);
  color: var(--main-color);
}

.cpick-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 18px;
  margin-bottom: 45px;
}

.cpick-card {
  position: relative;
  background: var(--white);
  border: 2px solid #eee;
  border-radius: 14px;
  padding: 18px 14px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
}

.cpick-card:hover {
  border-color: var(--main-color);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.cpick-card.selected {
  border-color: var(--main-color);
  background: var(--primary-color);
}

.cpick-card-check {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 2rem;
  color: #ccc;
  transition: color 0.3s ease;
}

.cpick-card:hover .cpick-card-check {
  color: var(--main-color);
}

.cpick-card.selected .cpick-card-check {
  color: var(--main-color);
}

.cpick-card img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
}

.cpick-card-info h4 {
  font-size: 1.4rem;
  color: var(--black);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cpick-card-info p {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--hover-color);
}

.compare-page-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
  flex-wrap: wrap;
  gap: 12px;
}

.compare-page-clear-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  font-size: 1.4rem;
  font-weight: 500;
  color: #e74c3c;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.3s ease;
}

.compare-page-clear-btn:hover {
  background: #e74c3c;
  color: #fff;
  border-color: #e74c3c;
}

.compare-page-table-wrap {
  overflow-x: auto;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  background: var(--white);
}

.compare-page-tbl {
  width: 100%;
  border-collapse: collapse;
  min-width: 550px;
}

.compare-page-tbl tr {
  border-bottom: 1px solid #f0f0f0;
}

.compare-page-tbl tr:last-child {
  border-bottom: none;
}

.compare-page-tbl tr:nth-child(even) {
  background: #fafafa;
}

.compare-page-tbl tr:first-child {
  background: var(--white);
  border-bottom: 2px solid #eee;
}

.cpt-label-cell {
  padding: 18px 20px;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--black);
  text-transform: capitalize;
  white-space: nowrap;
  min-width: 120px;
  background: rgba(0, 0, 0, 0.015);
  vertical-align: top;
}

.cpt-value-cell {
  padding: 18px 20px;
  font-size: 1.4rem;
  color: var(--light-black);
  line-height: 1.7;
  vertical-align: top;
}

.cpt-price {
  font-weight: 700;
  color: var(--hover-color);
  font-size: 1.8rem;
}

.cpt-product-cell {
  text-align: center;
  padding: 25px 20px;
  position: relative;
  min-width: 180px;
}

.cpt-product-cell img {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.cpt-product-cell h4 {
  font-size: 1.6rem;
  color: var(--black);
  margin-bottom: 8px;
}

.cpt-view-link {
  font-size: 1.3rem;
  color: var(--main-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.cpt-view-link:hover {
  color: var(--hover-color);
  text-decoration: underline;
}

.cpt-remove-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  background: #fef2f2;
  color: #e74c3c;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.cpt-remove-btn:hover {
  background: #e74c3c;
  color: #fff;
}

/* ============ Compare Responsive ============ */
@media (max-width: 768px) {
  .compare-bar-inner {
    flex-wrap: wrap;
    gap: 10px;
  }

  .compare-bar-items {
    width: 100%;
  }

  .compare-bar-item {
    min-width: 130px;
  }

  .compare-modal-content {
    width: 98%;
    border-radius: 12px;
  }

  .compare-modal-header {
    padding: 15px 20px;
  }

  .compare-table-wrap {
    padding: 15px;
  }

  .compare-product-cell img {
    width: 80px;
    height: 80px;
  }

  .compare-label {
    width: 100px;
    min-width: 100px;
    font-size: 1.2rem;
  }

  .cpt-product-cell img {
    width: 90px;
    height: 90px;
  }

  .cpt-product-cell {
    min-width: 140px;
    padding: 18px 12px;
  }

  .cpt-label-cell {
    min-width: 100px;
    font-size: 1.3rem;
    padding: 14px 12px;
  }

  .cpt-value-cell {
    padding: 14px 12px;
    font-size: 1.3rem;
  }

  .cpick-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 14px;
  }

  .cpick-card img {
    width: 80px;
    height: 80px;
  }

  .cpick-heading {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .compare-bar-item span {
    max-width: 70px;
  }

  .compare-bar-btn {
    width: 100%;
    text-align: center;
  }

  .cpt-product-cell img {
    width: 70px;
    height: 70px;
  }

  .cpt-product-cell h4 {
    font-size: 1.4rem;
  }

  .cpick-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .cpick-card {
    padding: 14px 10px;
  }

  .cpick-card img {
    width: 65px;
    height: 65px;
  }

  .cpick-card-info h4 {
    font-size: 1.2rem;
  }

  .cpick-card-check {
    font-size: 1.6rem;
    top: 6px;
    right: 6px;
  }
}


/* ============ Shared Page Layout ============ */
.page-section {
  padding: 4rem 9%;
  min-height: 60vh;
}

.page-container {
  max-width: 1100px;
  margin: 0 auto;
}

.page-title {
  font-size: 3.5rem;
  color: var(--main-color);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.page-subtitle {
  font-size: 1.6rem;
  color: var(--light-black);
  margin-bottom: 40px;
  line-height: 1.7;
}

.page-updated {
  font-size: 1.3rem;
  color: var(--light-black);
  margin-bottom: 30px;
  font-style: italic;
}

/* ============ FAQ Page ============ */
.faq-page-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-page-item {
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  border-left: 5px solid var(--main-color);
  transition: box-shadow 0.3s ease;
}

.faq-page-item:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.faq-page-question {
  width: 100%;
  padding: 20px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq-page-question span {
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--black);
  flex: 1;
}

.faq-page-question i {
  font-size: 1.4rem;
  color: var(--main-color);
  transition: transform 0.3s ease;
}

.faq-page-item.active .faq-page-question i {
  transform: rotate(180deg);
}

.faq-page-item.active .faq-page-question {
  background: var(--primary-color);
}

.faq-page-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 25px;
}

.faq-page-item.active .faq-page-answer {
  max-height: 300px;
  padding: 0 25px 20px;
}

.faq-page-answer p {
  font-size: 1.5rem;
  color: var(--light-black);
  line-height: 1.8;
}

/* ============ Contact Page ============ */
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-bottom: 35px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 28px 24px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
}

.contact-card-icon {
  width: 55px;
  height: 55px;
  min-width: 55px;
  background: var(--primary-color);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--main-color);
}

.contact-card-body h3 {
  font-size: 1.8rem;
  color: var(--black);
  margin-bottom: 6px;
}

.contact-card-body p {
  font-size: 1.5rem;
  color: var(--light-black);
  line-height: 1.7;
}

.contact-social-bar {
  text-align: center;
  padding: 30px 0;
  margin-bottom: 10px;
}

.contact-social-bar h3 {
  font-size: 1.8rem;
  color: var(--black);
  margin-bottom: 15px;
}

.contact-social-icons {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.contact-social-icons a {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  border-radius: 50%;
  color: var(--main-color);
  font-size: 2rem;
  transition: all 0.3s ease;
}

.contact-social-icons a:hover {
  background: var(--main-color);
  color: var(--white);
  transform: translateY(-3px);
}

/* Contact Map */
.contact-map {
  margin-top: 20px;
}

.map-wrap {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

.map-wrap iframe {
  display: block;
  width: 100%;
}

/* ============ Policy / Text Content Pages ============ */
.page-text-content h2 {
  font-size: 2.2rem;
  color: var(--main-color);
  margin-top: 35px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--primary-color);
}

.page-text-content h3 {
  font-size: 1.8rem;
  color: var(--black);
  margin-top: 20px;
  margin-bottom: 8px;
}

.page-text-content p {
  font-size: 1.5rem;
  color: var(--light-black);
  line-height: 1.9;
  margin-bottom: 15px;
}

.page-text-content ul {
  margin: 10px 0 20px 20px;
  list-style: disc;
}

.page-text-content ul li {
  font-size: 1.5rem;
  color: var(--light-black);
  line-height: 1.8;
  padding: 4px 0;
}

.page-text-content strong {
  color: var(--black);
}

.policy-contact {
  background: var(--primary-color);
  padding: 22px 28px;
  border-radius: 14px;
  margin-top: 15px;
}

.policy-contact p {
  font-size: 1.5rem;
  color: var(--black);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.policy-contact p:last-child {
  margin-bottom: 0;
}

.policy-contact i {
  color: var(--main-color);
  font-size: 1.6rem;
  width: 22px;
  text-align: center;
}

/* ============ New Pages Responsive ============ */
@media (max-width: 992px) {
  .contact-cards-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .page-title {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .page-section {
    padding: 3rem 5%;
  }

  .page-title {
    font-size: 2.6rem;
  }

  .page-subtitle {
    font-size: 1.4rem;
  }

  .faq-page-question span {
    font-size: 1.5rem;
  }

  .page-text-content h2 {
    font-size: 1.9rem;
  }

  .page-text-content h3 {
    font-size: 1.6rem;
  }

  .page-text-content p,
  .page-text-content ul li {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .page-title {
    font-size: 2.2rem;
  }

  .faq-page-question {
    padding: 16px 18px;
  }

  .faq-page-question span {
    font-size: 1.4rem;
  }

  .contact-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* ============ About Page — Hero Banner ============ */
.about-hero {
  position: relative;
  height: 350px;
  background: url("../bag2/Frame 29.png") no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(64, 111, 70, 0.85), rgba(47, 82, 52, 0.9));
}

.about-hero-content {
  position: relative;
  z-index: 1;
  padding: 0 20px;
}

.about-hero-content h1 {
  font-size: 4.5rem;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.about-hero-content h1 span {
  color: #ffb703;
}

.about-hero-content p {
  font-size: 1.7rem;
  /* color: rgba(255, 255, 255, 0.9); */
  color: #ffffff;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============ About Page — Our Story ============ */
.about-story-row {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.about-story-image {
  flex: 1 1 380px;
}

.about-story-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-story-content {
  flex: 1 1 450px;
}

.about-label {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--main-color);
  background: var(--primary-color);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.about-story-content h2 {
  font-size: 3rem;
  color: var(--black);
  margin-bottom: 18px;
  line-height: 1.3;
}

.about-story-content h2 span {
  color: var(--hover-color);
}

.about-story-content p {
  font-size: 1.5rem;
  color: var(--light-black);
  line-height: 1.9;
  margin-bottom: 15px;
}

/* ============ About Page — Mission / Vision / Values ============ */
.about-mvv-section {
  padding: 5rem 9%;
  background: var(--primary-color);
}

.about-mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.about-mvv-card {
  background: var(--white);
  padding: 35px 28px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-mvv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.about-mvv-icon {
  width: 65px;
  height: 65px;
  margin: 0 auto 18px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  color: var(--main-color);
}

.about-mvv-card h3 {
  font-size: 2rem;
  color: var(--black);
  margin-bottom: 12px;
}

.about-mvv-card p {
  font-size: 1.4rem;
  color: var(--light-black);
  line-height: 1.8;
}

/* ============ About Page — Stats ============ */
.about-stats-section {
  padding: 5rem 9%;
  background: linear-gradient(135deg, #406F46, #2f5234);
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  text-align: center;
}

.about-stat {
  padding: 30px 15px;
}

.about-stat-number {
  font-size: 4.5rem;
  font-weight: 800;
  color: #ffb703;
  margin-bottom: 8px;
  line-height: 1;
}

.about-stat p {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============ About Page — Why Choose Us ============ */
.about-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.about-why-card {
  background: var(--white);
  padding: 30px 25px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid var(--main-color);
}

.about-why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about-why-icon {
  width: 55px;
  height: 55px;
  background: var(--primary-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--main-color);
  margin-bottom: 18px;
}

.about-why-card h3 {
  font-size: 1.8rem;
  color: var(--black);
  margin-bottom: 10px;
}

.about-why-card p {
  font-size: 1.4rem;
  color: var(--light-black);
  line-height: 1.8;
}

/* ============ About Page — CTA ============ */
.about-cta-section {
  padding: 6rem 9%;
  background: var(--bg);
  text-align: center;
}

.about-cta-content h2 {
  font-size: 3.2rem;
  color: var(--black);
  margin-bottom: 12px;
}

.about-cta-content p {
  font-size: 1.6rem;
  color: var(--light-black);
  margin-bottom: 25px;
}

.about-cta-btns {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.about-cta-outline {
  background: transparent;
  border: 2px solid var(--main-color);
  color: var(--main-color);
}

.about-cta-outline:hover {
  background: var(--main-color);
  color: #fff;
}

/* ============ About Page Responsive ============ */
@media (max-width: 992px) {
  .about-hero {
    height: 280px;
  }

  .about-hero-content h1 {
    font-size: 3.5rem;
  }

  .about-mvv-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-story-content h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .about-hero {
    height: 240px;
  }

  .about-hero-content h1 {
    font-size: 2.8rem;
  }

  .about-hero-content p {
    font-size: 1.4rem;
  }

  .about-story-row {
    gap: 30px;
  }

  .about-story-content h2 {
    font-size: 2.2rem;
  }

  .about-stat-number {
    font-size: 3.5rem;
  }

  .about-cta-content h2 {
    font-size: 2.5rem;
  }

  .about-why-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .about-hero {
    height: 200px;
  }

  .about-hero-content h1 {
    font-size: 2.2rem;
  }

  .about-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .about-stat-number {
    font-size: 3rem;
  }

  .about-cta-content h2 {
    font-size: 2rem;
  }

  .about-cta-btns .btn {
    width: 100%;
    text-align: center;
  }
}
