

:root {

  --dark: #17304f;
  --accent: #4d7db5;
  --light: #f5f9ff;
  --text: #4f5b66;
  --white: #ffffff;

}



* {

  margin: 0;
  padding: 0;
  box-sizing: border-box;

}

html {

  scroll-behavior: smooth;

}

body {

  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: var(--white);

}




.navbar {
  position: fixed;

  top: 0;
  left: 0;

  width: 100%;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 20px 8%;

  background: #ffffff;

  z-index: 1000;

  border-bottom:
  1px solid rgba(0,0,0,0.05);

  box-shadow:
  0 4px 20px rgba(0,0,0,0.04);
}


.logo a {
   font-family: 'Playfair Display', serif;

  font-size: 1.7rem;

  font-weight: 600;

  color: #17304f;
  text-decoration: none;
  
}


.nav-menu {
  display: flex;

  align-items: center;

  gap: 30px;

  list-style: none;
}

.nav-menu li a {
  text-decoration: none;

  color: #17304f;

  font-size: 15px;

  font-weight: 600;

  background: none;

  border: none;

  cursor: pointer;

  font-family: inherit;

  transition: 0.3s ease;
}

.nav-menu li a:hover {
  color: #4d7db5;
  transform: translateY(-2px);
}





@media (max-width:1200px){

.hero h1{
    font-size:3.6rem;
}

.quote-container{
    gap:40px;
}

.products-grid{
    grid-template-columns:repeat(2,1fr);
}

.grid{
    grid-template-columns:repeat(2,1fr);
}

.Offers-grid{
    grid-template-columns:repeat(2,1fr);
}

.footer-container{
    grid-template-columns:repeat(2,1fr);
}

}



.quote-nav {

  padding: 12px 22px;

  background: #4d7db5;

  color: white !important;

  border-radius: 40px;

  transition: 0.3s ease;

}

.quote-nav:hover {

  background: #17304f;

  transform: translateY(-2px);

}


.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: #17304f;
}


.hamburger span {

  width: 26px;

  height: 3px;

  background: #17304f;

  border-radius: 30px;

  transition: 0.3s ease;
}








@media (max-width:992px){
.nav-menu a {

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 16px 18px;

    border-radius: 18px;

    font-size: 16px;

    background: rgba(23,48,79,0.03);

    transition: 0.3s ease;

  }
    .nav-menu li {

    width: 100%;

  }

  .nav-menu {

    flex-direction: column;

    align-items: flex-start;

    gap: 12px;

    width: 100%;

    padding: 20px;

  }
.navbar{
    padding:16px 5%;
}

.logo a{
    font-size:1.5rem;
}

.hero{
    height:auto;
    min-height:80vh;
    padding:130px 6% 80px;
}

.hero-content{
    max-width:100%;
    text-align:center;
}

.hero h1{
    font-size:3rem;
}

.hero p{
    margin:auto;
}

.hero-buttons{
    justify-content:center;
    flex-wrap:wrap;
}

.section,
.quote-section,
.products-section,
.why-section,
.testimonials-section{
    padding:90px 6%;
}

.section-header h2{
    font-size:2.4rem;
}

.quote-container{
    grid-template-columns:1fr;
}

.quote-info{
    text-align:center;
}

.quote-box{
    padding:35px;
}

.products-grid{
    grid-template-columns:repeat(2,1fr);
}

.grid{
    grid-template-columns:repeat(2,1fr);
}

.Offers-grid{
    grid-template-columns:repeat(2,1fr);
}

.dimension-fields{
    grid-template-columns:1fr 1fr;
}

.footer-container{
    grid-template-columns:repeat(2,1fr);
}

.search-wrapper{
    max-width:100%;
}


    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 6px;
        width: 48px;
        height: 48px;
        border-radius: 14px;
        background: rgba(23, 48, 79, 0.05);
        backdrop-filter: blur(10px);
        padding: 10px;
        cursor: pointer;
        transition: 0.35s ease;
        z-index: 3000;
    }


    
  .nav-menu {

    flex-direction: column;

    align-items: flex-start;

    gap: 12px;

    width: 100%;

  }

  .nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);

    
    max-height: 0;
    overflow: hidden;
    transition: 0.3s ease;
  }

  .nav.open {
    max-height: 400px;
  }
}








  




.quote-item {

  margin-left: 12px;

}

.quote-nav {

  display: flex !important;

  align-items: center;
  justify-content: center;

  min-width: 160px;

  padding: 14px 24px;

  border-radius: 50px;

  background: #17304f !important;

  color: #ffffff !important;

  font-size: 14px;
  font-weight: 600;

  text-decoration: none;

  box-shadow:
  0 10px 30px rgba(23,48,79,0.18);

  transition: 0.35s ease;

}



.quote-nav:hover {

  background: #4d7db5 !important;

  color: white !important;

  transform: translateY(-3px);

}

.search-box {
  display: flex;
  justify-content: center;
  margin: 25px 0;
}

.search-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;

  background: white;
  padding: 10px 12px;
  border-radius: 50px;

  width: 100%;
  max-width: 520px;

  border: 1px solid #e5e5e5;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}


.search-icon {
  color: #17304f;
  font-size: 16px;
  margin-left: 8px;
}


.search-wrapper input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 14px;
  background: transparent;
}


.search-wrapper button {
  background: #17304f;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 13px;
  transition: 0.3s ease;
}

.search-wrapper button:hover {
  background: #4d7db5;
}



.hero {

  height: 100vh;

  background:
  linear-gradient(
    rgba(10,20,35,0.55),
    rgba(10,20,35,0.55)
  ),
  url("images/rand3.jpg");

  background-size: cover;
  background-position: center;

  display: flex;
  align-items: center;

  padding: 0 8%;

}

.hero-content {

  max-width: 700px;

  color: white;

}

.mini-title {

  letter-spacing: 2px;

  font-size: 13px;

  opacity: 0.8;

  padding-top: 20px;
  

}

.hero h1 {

  font-family: 'Playfair Display', serif;

  font-size: 4.3rem;

  line-height: 1.1;

  margin:
  18px 0 25px;

}

.hero p {

  max-width: 600px;

  font-size: 1.08rem;

  line-height: 1.8;

  color:
  rgba(255,255,255,0.88);

}



.hero-buttons {

  margin-top: 35px;

  display: flex;
  gap: 18px;

}

.btn {

  padding: 15px 28px;

  border-radius: 40px;

  text-decoration: none;

  font-size: 14px;
  font-weight: 500;

  transition: 0.35s ease;

}

.primary-btn {

  background: var(--accent);
  color: white;

}

.primary-btn:hover {

  transform: translateY(-4px);

}

.secondary-btn {

  border: 1px solid rgba(255,255,255,0.5);

  color: white;

}

.secondary-btn:hover {

  background: white;
  color: var(--dark);

}



.section,
.Offers-section {

  padding: 140px 8%;

}

.section {

  background: var(--light);

}

.section-header {

  text-align: center;

  max-width: 700px;

  margin:
  0 auto 70px;

}

.section-subtitle {

  letter-spacing: 2px;

  font-size: 12px;

  color: var(--accent);

}

.section-header h2 {

  font-family: 'Playfair Display', serif;

  font-size: 3rem;

  margin:
  15px 0 20px;

}

.section-header p {

  color: var(--text);

  line-height: 1.8;

}



.grid {

  display: grid;

  grid-template-columns:
  repeat(auto-fit,minmax(260px,1fr));

  gap: 35px;

}



.card {

  background: white;

  border-radius: 22px;

  overflow: hidden;

  box-shadow:
  0 10px 35px rgba(0,0,0,0.06);

  transition: 0.45s ease;

}

.card:hover {

  transform: translateY(-10px);

  box-shadow:
  0 20px 50px rgba(0,0,0,0.12);

}

.card img {

  width: 100%;

  height: 340px;

  object-fit: cover;

  display: block;

  transition: 0.5s;

}

.card:hover img {

  transform: scale(1.08);

}

.card-info {

  padding: 25px;

}

.card-info h3 {

  font-family: 'Playfair Display', serif;

  margin-bottom: 10px;

}

.card-info p {

  color: var(--text);

}



.Offers-grid {

  display: grid;

  grid-template-columns:
  repeat(auto-fit,minmax(280px,1fr));

  gap: 35px;

}

.Offers-card {

  position: relative;

  overflow: hidden;

  border-radius: 24px;

}

.Offers-card img {

  width: 100%;

  height: 500px;

  object-fit: cover;

  display: block;

  transition: 0.5s;

}

.Offers-card:hover img {

  transform: scale(1.08);

}

.Offers-info {

  position: absolute;

  bottom: 0;

  width: 100%;

  padding: 35px 25px;

  background:
  linear-gradient(
    transparent,
    rgba(0,0,0,0.8)
  );

  color: white;

}





.quote-section {

  padding: 140px 8%;

  background: #f5f9ff;

}

.quote-container {

  display: grid;

  grid-template-columns:
  1fr 1.2fr;

  gap: 60px;

  align-items: center;

}



.quote-info h2 {

  font-family: 'Playfair Display', serif;

  font-size: 3rem;

  margin:
  18px 0 25px;

}

.quote-info p {

  color: #6c7a89;

  line-height: 1.9;

  margin-bottom: 35px;

}



.call-btn {

  display: inline-block;

  padding: 15px 28px;

  background: #17304f;

  color: white;

  text-decoration: none;

  border-radius: 40px;

  font-weight: 600;

  transition: 0.35s ease;

}

.call-btn:hover {

  background: #4d7db5;

}

.owner-number {

  margin-top: 20px;

  font-size: 15px;

  color: #17304f;

  font-weight: 600;

}





.quote-box {

  background: white;

  padding: 50px;

  border-radius: 28px;

  box-shadow: 0 25px 70px rgba(0,0,0,0.08);

  display: flex;

  flex-direction: column;

  gap: 25px;

}



.form-wrapper {

  position: relative;

}



.quote-box form {

  display: none;

  flex-direction: column;

  gap: 14px;

}

.quote-box form.active-form {

  display: flex;

}

















.form-tabs {

  display: flex;

  background: #ffffff;

  border-radius: 18px;

  padding: 12px;

  margin-bottom: 40px;

  gap: 12px;

  border: 1px solid rgba(15, 30, 50, 0.18);

  box-shadow: 0 8px 25px rgba(0,0,0,0.06);

}



.tab-btn {

  flex: 1;

  padding: 14px;

  border: none;

  background: transparent;

  border-radius: 50px;

  cursor: pointer;

  font-size: 14px;

  font-weight: 700;

  color: #2f3e4e; 

  transition: all 0.25s ease;

}



.tab-btn:hover:not(.active) {

  background: #e8f1fb;

  color: #0b2238;

}



.tab-btn.active {

  background: #0b2238; 

  color: #ffffff;      

  font-weight: 800;

  box-shadow: 0 10px 25px rgba(11, 34, 56, 0.35);

  transform: scale(1.02);

  outline: 2px solid rgba(11, 34, 56, 0.315); 

  outline-offset: 3px;

}


.tab-btn.active::before {

  display: none;

}



.quote-box form {

  display: none;

  flex-direction: column;

}

.quote-box form.active-form {

  display: flex;

}

.quote-box input,
.quote-box select,
.quote-box textarea {

  padding: 16px;

  border-radius: 14px;

  border: 1px solid #dce5ef;

  margin-bottom: 18px;

  font-family: inherit;

  font-size: 14px;

  background: white;

}

.quote-box textarea {

  resize: none;

  height: 140px;

}

.quote-box input:focus,
.quote-box select:focus,
.quote-box textarea:focus {

  outline: none;

  border-color: #4d7db5;

}





.quote-box button {

  padding: 14px;

  border: none;

  background: #17304f;

  color: white;

  border-radius: 14px;

  cursor: pointer;

  font-weight: 600;

  transition: 0.3s ease;

}

.quote-box button:hover {

  background: #4d7db5;

}







.curtain-preview {

    position: relative;

    width: 350px;

    height: 450px;

    overflow: hidden;

    border-radius: 24px;

}

.curtain-preview img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}



#color-overlay {

    position: absolute;

    inset: 0;

    background: transparent;

    mix-blend-mode: multiply;

    opacity: 0.55;

    transition: 0.35s ease;

}



.color-options {

    display: flex;

    gap: 12px;

    margin-top: 20px;

}

.swatch {

    width: 24px;

    height: 24px;

    border-radius: 50%;

    cursor: pointer;

    border: 3px solid white;

    box-shadow: 0 0 0 1px rgba(0,0,0,0.1);

    transition: 0.25s ease;

}

.swatch:hover {

    transform: scale(1.1);

}

.blue {

    background: #355c8c;

}

.cream {

    background: #d9c7a2;

}

.grey {

    background: #8b9099;

}



.products-section {

  padding: 70px 20px 100px;

  background: #f7f9fc;

}



.products-grid {

  max-width: 1300px;

  margin: auto;

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));

  gap: 32px;

}



.product-card {

  background: #ffffff;

  border-radius: 28px;

  overflow: hidden;

  transition: 0.4s ease;

  box-shadow:
  0 10px 30px rgba(0,0,0,0.05);

  border: 1px solid rgba(0,0,0,0.04);

  display: flex;

  flex-direction: column;

  height: 100%;

}

.product-card:hover {

  transform: translateY(-8px);

  box-shadow:
  0 25px 60px rgba(0,0,0,0.10);

}



.product-image {

  position: relative;

  width: 100%;

  height: 280px;

  overflow: hidden;

  background: #eef2f7;

}



.product-image img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  display: block;

  transition: transform 0.7s ease;

}



.product-card:hover .product-image img {

  transform: scale(1.08);

}



.product-badge {

  position: absolute;

  top: 18px;

  left: 18px;

  background: rgba(23,48,79,0.92);

  backdrop-filter: blur(10px);

  color: white;

  padding: 8px 16px;

  border-radius: 30px;

  font-size: 11px;

  font-weight: 600;

  letter-spacing: 1px;

  text-transform: uppercase;

}



.product-content {

  padding: 26px;

  display: flex;

  flex-direction: column;

  flex: 1;

}



.product-category {

  font-size: 12px;

  font-weight: 600;

  text-transform: uppercase;

  letter-spacing: 1.5px;

  color: #6d7a88;

  margin-bottom: 10px;

}



.product-content h3 {

  font-size: 28px;

  line-height: 1.2;

  color: #17304f;

  margin-bottom: 14px;

  font-family: 'Playfair Display', serif;

}



.product-description {

  font-size: 14px;

  line-height: 1.8;

  color: #5f6b78;

  margin-bottom: 22px;

}



.product-price {

  font-size: 28px;

  font-weight: 700;

  color: #17304f;

  margin-bottom: 22px;

}

.product-price span {

  font-size: 14px;

  font-weight: 500;

  color: #7b8794;

}



.product-colors {

  display: flex;

  align-items: center;

  gap: 12px;

  margin-bottom: 28px;

}



.color-swatch {

  width: 22px;

  height: 22px;

  border-radius: 50%;

  cursor: pointer;

  position: relative;

  border: 2px solid #ffffff;

  box-shadow:
  0 0 0 1px rgba(0,0,0,0.12),
  0 4px 12px rgba(0,0,0,0.08);

  transition: 0.3s ease;

}



.color-swatch:hover {

  transform: scale(1.18);

}



.color-swatch::after {

  content: attr(data-color);

  position: absolute;

  bottom: 160%;

  left: 50%;

  transform: translateX(-50%);

  background: #17304f;

  color: white;

  padding: 7px 12px;

  border-radius: 8px;

  font-size: 11px;

  font-weight: 500;

  white-space: nowrap;

  opacity: 0;

  visibility: hidden;

  transition: 0.25s ease;

}



.color-swatch:hover::after {

  opacity: 1;

  visibility: visible;

}



.navy {

  background: #355c8c;

}

.cream {

  background: #efe2c5;

}

.grey {

  background: #8c949d;

}

.beige {

  background: #cbb59d;

}



.product-actions {

  display: flex;

  align-items: center;

  gap: 14px;

  margin-top: auto;

}



.product-btn {

  flex: 1;

  text-align: center;

  text-decoration: none;

  background: #17304f;

  color: white;

  padding: 14px 22px;

  border-radius: 50px;

  font-size: 14px;

  font-weight: 600;

  transition: 0.35s ease;

}



.product-btn:hover {

  background: #4d7db5;

  transform: translateY(-2px);

}



.more-btn {

  text-decoration: none;

  color: #17304f;

  font-size: 14px;

  font-weight: 600;

  transition: 0.3s ease;

  white-space: nowrap;

}



.more-btn:hover {

  color: #4d7db5;

  transform: translateX(4px);

}




.category-filter-section {

    padding: 40px 20px 10px;

    background: #f8fafc;

}

.filter-container {

    max-width: 1100px;

    margin: auto;

    display: flex;

    flex-wrap: wrap;

    gap: 14px;

    justify-content: center;

}

.filter-btn {

    border: none;

    background: white;

    padding: 12px 22px;

    border-radius: 40px;

    cursor: pointer;

    font-size: 14px;

    font-weight: 600;

    color: #34495e;

    border: 1px solid rgba(11,34,56,0.1);

    transition: 0.3s ease;

}

.filter-btn:hover {

    transform: translateY(-2px);

    box-shadow: 0 10px 20px rgba(0,0,0,0.06);

}

.filter-btn.active {

    background: #0b2238;

    color: white;

}





.pagination-section {

  margin-top: 60px;

}

.pagination-container {

  display: flex;

  justify-content: center;

  align-items: center;

  gap: 12px;

  flex-wrap: wrap;

}

#paginationNumbers {

  display: flex;

  gap: 10px;

  flex-wrap: wrap;

}

.pagination-btn,
.pagination-next {

  border: none;

  background: #f1f5fa;

  color: #17304f;

  min-width: 48px;

  height: 48px;

  padding: 0 18px;

  border-radius: 14px;

  font-size: 15px;

  font-weight: 600;

  cursor: pointer;

  transition: 0.3s ease;

}

.pagination-btn:hover,
.pagination-next:hover {

  background: #dce8f5;

  transform: translateY(-2px);

}

.pagination-btn.active {

  background: #17304f;

  color: white;

}

.pagination-next {

  display: flex;

  align-items: center;

  gap: 8px;

}



.why-section {

  padding: 90px 7%;

  background: #f7f9fc;

}

.why-grid {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));

  gap: 30px;

}

.why-card {

  background: white;

  padding: 40px 30px;

  border-radius: 28px;

  text-align: center;

  transition: 0.35s ease;

  box-shadow:
  0 18px 35px rgba(0,0,0,0.05);

}

.why-card:hover {

  transform: translateY(-8px);

}

.why-icon {

  width: 72px;

  height: 72px;

  margin: auto;

  margin-bottom: 24px;

  border-radius: 22px;

  background: rgba(77,125,181,0.1);

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 28px;

  color: #4d7db5;

}



.testimonials-section {

  padding: 100px 7%;

  background: #f7f9fc;

}

.testimonials-grid {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));

  gap: 30px;

}

.testimonial-card {

  background: white;

  padding: 36px;

  border-radius: 30px;

  box-shadow:
  0 18px 35px rgba(0,0,0,0.05);

}

.stars {

  color: #f4b400;

  margin-bottom: 20px;

}

.testimonial-card p {

  color: #66717d;

  line-height: 1.9;

  margin-bottom: 24px;

}

.testimonial-card h4 {

  color: #17304f;

}



.dimension-fields {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 16px;

}



.whatsapp-float {

  position: fixed;

  right: 25px;
  bottom: 30px;

  z-index: 999;

  display: flex;
  align-items: center;
  gap: 12px;

  text-decoration: none;

}



.whatsapp-text {

  background: white;

  color: #17304f;

  padding: 13px 18px;

  border-radius: 40px;

  font-size: 14px;
  font-weight: 600;

  box-shadow:
  0 10px 30px rgba(0,0,0,0.1);

  opacity: 0;

  transform: translateX(10px);

  transition: 0.35s ease;

}



.whatsapp-icon {

  width: 65px;
  height: 65px;

  border-radius: 50%;

  background: #25d366;

  display: flex;
  align-items: center;
  justify-content: center;

  color: white;

  font-size: 2rem;

  box-shadow:
  0 12px 30px rgba(37,211,102,0.35);

  animation:
  floatWhatsApp 2.5s infinite ease-in-out;

}



.whatsapp-float:hover .whatsapp-text {

  opacity: 1;

  transform: translateX(0);

}



@keyframes floatWhatsApp {

  0% {

    transform: translateY(0);

  }

  50% {

    transform: translateY(-8px);

  }

  100% {

    transform: translateY(0);

  }

}


.site-footer {

  background: #0b2238;

  color: white;

  padding: 70px 20px 20px;

  margin-top: 80px;

}
.location-card {

  display: block;

  padding: 12px 14px;

  border-radius: 12px;

  background: rgba(255,255,255,0.06);

  text-decoration: none;

  transition: 0.3s ease;

  border: 1px solid rgba(255,255,255,0.1);

}

.location-card:hover {

  background: rgba(255,255,255,0.12);

  transform: translateY(-2px);

}

.location-title {

  color: white;

  font-weight: 600;

  display: flex;

  align-items: center;

  gap: 10px;

  margin-bottom: 5px;

}

.location-action {

  color: rgba(255,255,255,0.7);

  font-size: 13px;

}





.footer-container {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));

  gap: 50px;

  max-width: 1100px;

  margin: auto;

}



.footer-logo {

  font-size: 22px;

  font-weight: 700;

  margin-bottom: 10px;

  letter-spacing: 0.5px;

}



.footer-brand p {

  color: rgba(255,255,255,0.75);

  font-size: 14px;

  line-height: 1.7;

}

.logo-link {

  text-decoration: none;

  color: #ffffff;

  font-size: 22px;

  font-weight: 700;

  letter-spacing: 0.5px;

  display: inline-block;

  transition: 0.25s ease;

}

.logo-link:hover {

  opacity: 0.85;

  transform: translateY(-1px);

}



.footer-section h3 {

  margin-bottom: 15px;

  font-size: 15px;

  font-weight: 600;

  color: #ffffff;

}



.footer-section a {

  display: flex;

  align-items: center;

  gap: 10px;

  color: rgba(255,255,255,0.75);

  text-decoration: none;

  margin-bottom: 12px;

  font-size: 14px;

  transition: 0.25s ease;

}



.footer-section a:hover {

  color: #ffffff;

  transform: translateX(4px);

}



.footer-section a i {

  width: 18px;

  color: rgba(255,255,255,0.85);

  transition: 0.25s ease;

}

.footer-section a:hover i {

  color: #ffffff;

  transform: scale(1.1);

}



.footer-bottom {

  text-align: center;

  margin-top: 50px;

  padding-top: 20px;

  border-top: 1px solid rgba(255,255,255,0.1);

  font-size: 13px;

  color: rgba(255,255,255,0.6);

}













@media (max-width:767px){

.navbar{
    padding:16px 5%;
}

  .nav-menu{

    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
  }


.logo a{
    font-size:1.35rem;
}

.hero{
    min-height:auto;
    padding:120px 20px 70px;
    text-align:center;
}

.hero h1{
    font-size:2.3rem;
    line-height:1.2;
}

.hero p{
    font-size:15px;
    line-height:1.7;
}

.hero-buttons{
    flex-direction:column;
    gap:15px;
}

.hero-buttons .btn{
    width:100%;
}

.section,
.quote-section,
.products-section,
.why-section,
.testimonials-section{
    padding:70px 20px;
}

.section-header{
    margin-bottom:45px;
}

.section-header h2{
    font-size:2rem;
}

.grid,
.products-grid,
.Offers-grid,
.why-grid,
.testimonials-grid{
    grid-template-columns:1fr;
}

.product-image{
    height:240px;
}

.card img{
    height:260px;
}

.Offers-card img{
    height:340px;
}

.quote-container{
    grid-template-columns:1fr;
}

.quote-box{
    padding:25px;
}

.dimension-fields{
    grid-template-columns:1fr;
}

.filter-container{
    justify-content:flex-start;
    overflow-x:auto;
    flex-wrap:nowrap;
    padding-bottom:10px;
    scrollbar-width:none;
}

.filter-container::-webkit-scrollbar{
    display:none;
}

.filter-btn{
    white-space:nowrap;
}

.product-actions{
    flex-direction:column;
}

.product-btn,
.more-btn{
    width:100%;
}

.footer-container{
    grid-template-columns:1fr;
    gap:30px;
}

.footer-brand,
.footer-section{
    text-align:center;
}

.footer-section a{
    justify-content:center;
}

.search-wrapper{
    flex-direction:column;
    border-radius:20px;
    gap:12px;
}

.search-wrapper input{
    width:100%;
}

.search-wrapper button{
    width:100%;
}

.whatsapp-text{
    display:none;
}

.whatsapp-icon{
    width:58px;
    height:58px;
    font-size:1.7rem;
}

.pagination-container{
    gap:8px;
    justify-content:center;
    flex-wrap:wrap;
}

}





@media (max-width:480px){

.hero h1{
    font-size:1.9rem;
}

.section-header h2{
    font-size:1.7rem;
}

.hero p{
    font-size:14px;
}

.product-content{
    padding:20px;
}

.product-content h3{
    font-size:22px;
}

.product-price{
    font-size:24px;
}

.quote-box{
    padding:20px;
}

.quote-box input,
.quote-box select,
.quote-box textarea{
    font-size:14px;
    padding:14px;
}

.form-tabs{
    flex-direction:column;
}

.tab-btn{
    width:100%;
}

.whatsapp-icon{
    width:55px;
    height:55px;
}

}