/* ===========================
   GOOGLE FONT
=========================== */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap");

@import url('https://fonts.googleapis.com/css2?family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Yuyu&display=swap');

/* ===========================
   RESET
=========================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #1e1e1e;
  background: #fff;
  overflow-x: hidden;
}

img {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(90%, 1400px);
  margin: auto;
}

/* ===========================
   TOP BAR
=========================== */

.top-bar {
    display: none;
  background: #27352e;
  color: #fff;
  text-align: center;
  padding: 12px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* ===========================
   HEADER
=========================== */

header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

header {
  position: relative;
  z-index: 999;
  background: #fff;
  transition: all 0.3s ease;
}

header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.12);
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  font-size: 28px;
  font-weight: 800;
  color: #27352e;
}

nav {
  display: flex;
  gap: 35px;
}

nav a {
  color: #444;
  font-weight: 600;
  transition: 0.3s;
}

nav a:hover {
  color: #27352e;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 30px;
  cursor: pointer;
}

.cta-btn {
  background: #45533b;
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 700;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #1c251f;
  transform: translateY(-2px);
}

.menu-close {
  display: none;
}

@media (max-width: 991px) {
  #menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    gap: 50px;
    padding: 100px 40px 40px;
    transition: 0.3s;
    z-index: 9999;
  }

  #menu.active {
    left: 0;
  }

  .menu-close {
    display: block;
    position: absolute;
    top: 25px;
    right: 30px;
    background: none;
    border: none;
    font-size: 42px;
    line-height: 1;
    color: #27352e;
    cursor: pointer;
  }
}

/* ===========================
   HERO SECTION
=========================== */

.hero {
  padding: 90px 0;
  background: linear-gradient(135deg, #f7f4ef 0%, #ffffff 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}

.hero-content h2 {
  font-size: 32px;
  line-height: 1.1;
  margin-bottom: 25px;
  color: #27352e;
}

.hero-content p {
  font-size: 20px;
  color: #666;
  margin-bottom: 30px;
}

.hero-content ul {
  margin-bottom: 40px;
}

.hero-content li {
  margin-bottom: 18px;
  font-size: 18px;
  font-weight: 400;
  color: rgb(70, 84, 59);
  font-family: "Poppins", sans-serif;
}

.primary-btn {
  background: #45533b;
  color: #fff;
  border: none;
  padding: 18px 100px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.primary-btn:hover {
  background: #1b241f;
  transform: translateY(-3px);
}

/* ===========================
   FORM
=========================== */

.hero-form {
  background: #fff;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.hero-form h3 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #27352e;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.lead-form input,
.lead-form select {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-size: 16px;
  outline: none;
  transition: 0.3s;
}

.lead-form input:focus {
  border-color: #27352e;
}

.lead-form button {
  background: #27352e;
  color: #fff;
  border: none;
  padding: 18px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
  transition: 0.3s;
}

.lead-form button:hover {
  background: #1d261f;
}

/* ===========================
   SECTION
=========================== */

.section {
  padding: 100px 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 60px;
}

.section-heading h2 {
  font-size: 42px;
  color: #27352e;
  margin-bottom: 15px;
}

.section-heading p {
  color: #666;
  font-size: 18px;
}

/* ===========================
   PRODUCT CARDS
=========================== */

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.product-card:hover {
  transform: translateY(-10px);
}

.product-card img {
  height: 350px;
  object-fit: cover;
}

.product-card h3 {
  padding: 25px;
  text-align: center;
  color: #27352e;
}

/* ===========================
   DARK SECTION
=========================== */

.dark {
  background: #27352e;
  color: #fff;
}

.dark h2,
.dark h3 {
  color: #fff;
}

.dark p {
  color: #ddd;
}

/* ===========================
   FEATURES
=========================== */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature {
  background: rgba(255, 255, 255, 0.08);
  padding: 40px;
  border-radius: 24px;
  backdrop-filter: blur(10px);
}

.feature h3 {
  margin-bottom: 20px;
  font-size: 28px;
}

/* ===========================
   SPECS
=========================== */

/* ==========================
   PRODUCT SPECIFICATION
========================== */

.specification-section {
  padding: 100px 0;
  background: linear-gradient(90deg, #ece6d7 0%, #f6f2e8 50%, #ece6d7 100%);
}

.specification-section .container {
  /* max-width: 1300px; */
  margin: 0 auto;
  padding: 0 30px;
}

.specification-grid {
  display: grid;
  grid-template-columns: 600px 1fr;
  gap: 80px;
  align-items: start;
}

/* Left Side */

.specification-features {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.spec-item h3 {
  font-size: 2rem;
  font-weight: 800;
  color: #000;
  margin-bottom: 35px;
  text-transform: uppercase;
}

.spec-item img {
  width: 100%;
  max-width: 260px;
  display: block;
}

/* Right Side */

.specification-image h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #000;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.specification-image img {
  width: 100%;
  display: block;
  object-fit: contain;
}

@media (max-width: 991px) {
  .specification-section {
    padding: 80px 0;
  }

  .specification-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .specification-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .spec-item {
    text-align: center;
  }

  .spec-item img {
    margin: 0 auto;
    max-width: 180px;
  }

  .spec-item h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }

  .specification-image h2 {
    text-align: center;
    font-size: 2.5rem;
  }
}

@media (max-width: 767px) {
  .specification-section {
    padding: 60px 0;
  }

  .specification-section .container {
    padding: 0 20px;
  }

  .specification-features {
    grid-template-columns: 1fr;
    gap: 50px;
    order: 2;
  }

  .spec-item h3 {
    font-size: 1.5rem;
    text-align: center;
  }

  .spec-item img {
    max-width: 220px;
    margin: 0 auto;
  }

  .specification-image h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 25px;
  }

  .specification-image img {
    max-width: 100%;
  }
}

/* ===========================
   CTA SECTION
=========================== */

.cta-section {
  padding: 100px 0;
  text-align: center;
  background: #f7f4ef;
}

.cta-section h2 {
  font-size: 42px;
  margin-bottom: 20px;
  color: #27352e;
}

.cta-section p {
  font-size: 22px;
  margin-bottom: 35px;
  color: #666;
}

/* ===========================
   POPUP
=========================== */

.popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  padding: 20px;
}

.popup.active {
  display: flex;
}

.popup-box {
  width: 100%;
  max-width: 500px;
  background: #fff;
  padding: 50px;
  border-radius: 25px;
  position: relative;
  animation: popup 0.4s ease;
}

@keyframes popup {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.close-popup {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 36px;
  cursor: pointer;
}

.popup-box h2 {
  color: #27352e;
  margin-bottom: 30px;
}

/* ===========================
   THANK YOU PAGE
=========================== */

.thanks {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 50px 20px;
}

.thanks-box {
  max-width: 700px;
}

.thanks-box h1 {
  font-size: 58px;
  color: #27352e;
  margin-bottom: 25px;
}

.thanks-box p {
  font-size: 20px;
  color: #666;
  margin-bottom: 35px;
}

/* ===========================
   ERROR MESSAGE
=========================== */

.error {
  color: #d90000;
  font-size: 14px;
  margin-top: -10px;
}

.success {
  color: green;
}

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 48px;
  }

  nav {
    position: fixed;
    top: 90px;
    left: -100%;
    width: 100%;
    background: #fff;
    flex-direction: column;
    padding: 40px;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  nav.active {
    left: 0;
  }

  .mobile-toggle {
    display: none;
  }

  .cta-btn {
    display: block;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 50px 0;
    padding-bottom: 20px;
  }

  .hero-content h1 {
    font-size: 40px;
  }

  .section {
    padding: 80px 0;
  }

  .section-heading h2 {
    font-size: 34px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .spec-grid {
    grid-template-columns: 1fr;
  }

  .hero-form {
    padding: 30px;
    background-color: #27352e;
  }

  .popup-box {
    padding: 35px 25px;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 34px;
  }

  .hero-content p {
    font-size: 18px;
  }

  .primary-btn {
    width: 100%;
  }

  .thanks-box h1 {
    font-size: 42px;
  }

  .cta-section h2 {
    font-size: 34px;
  }

  .top-bar {
    font-size: 12px;
  }
  
  .hero-content li {
  margin-bottom: 5px;
  
  }
}

.hero-video-section {
  position: relative;
  width: 100%;
  /* height: 85vh; */
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
}

.hero-caption {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 90%;
  z-index: 2;
  display: none;
}

.hero-caption h2 {
  color: #fff;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  font-style: italic;
}

/* Tagline Section */

.tagline-section {
  background: #45533b;
  padding: 35px 0;
  text-align: center;
  background: #fff;
    
}


.tg-mobile{
      background: #45533b;
}





.tagline-section h2 {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #45533b;
}

.tg-mobile h2{
    color: #fff;
}

.tagline-section span {
  margin: 0 20px;
}

/* Responsive */

@media (max-width: 992px) {
  .hero-video-section {
    height: 70vh;
  }

  .hero-caption h2 {
    font-size: 2.3rem;
  }

  .tagline-section h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-video-section {
    height: 60vh;
  }

  .hero-caption {
    bottom: 25px;
  }

  .hero-caption h2 {
    font-size: 1.8rem;
  }

  .tagline-section {
    padding: 25px 15px;
  }

  .tagline-section h2 {
    font-size: 1.5rem;
    line-height: 1.5;
  }

  .tagline-section span {
    margin: 0 10px;
  }
}

/* product specifications */

.product-showcase {
  background: linear-gradient(135deg, #b8aa8d 0%, #c7baa1 100%);
  overflow: hidden;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 700px;
}

.showcase-content {
  padding: 80px 40px;
  color: #fff;
}

.showcase-content h2 {
  font-size: 3rem;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.showcase-content h3 {
  font-size: 1.5rem;
  margin-bottom: 30px;
  font-weight: 700;
}

.showcase-content p {
  font-size: 1.2rem;
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 60px;
}

.reserve-btn {
  background: #47583d;
  color: #fff;
  border: none;
  padding: 22px 70px;
  border-radius: 60px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: 0.3s;
  color:#47583d;
  background: #fff;
}

.reserve-btn:hover {
  transform: translateY(-5px);
  /*background: #394832;*/
}

.showcase-image {
  position: relative;
  min-height: 700px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-base {
  position: absolute;
  bottom: 0;
  right: 22px;
  width: 90%;
  height: 32%;
  background: #f2f2f2;
  clip-path: polygon(0 25%, 100% 0, 100% 100%, 0 100%);
}

.showcase-image img {
  position: relative;
  z-index: 2;
  max-width: 65%;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.2));
}

/* Popup */

.popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.popup.active {
  display: flex;
}

.popup-box {
  background: #fff;
  width: 90%;
  max-width: 500px;
  padding: 40px;
  border-radius: 20px;
  position: relative;
}

.close-popup {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 35px;
  cursor: pointer;
}

.popup-box h2 {
  margin-bottom: 25px;
  color: #47583d;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.lead-form input {
  padding: 16px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 16px;
}

.lead-form button {
  background: #47583d;
  color: #fff;
  border: none;
  padding: 16px;
  border-radius: 10px;
  font-size: 18px;
  cursor: pointer;
}

/* Tablet */

@media (max-width: 991px) {
  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .showcase-content {
    text-align: center;
    order: 2;
  }

  .showcase-content p {
    max-width: 100%;
  }

  .showcase-image {
    order: 1;
    min-height: 500px;
  }

  .showcase-content h2 {
    font-size: 3rem;
  }
}

/* Mobile */

@media (max-width: 768px) {
  .showcase-content {
    padding: 50px 20px;
  }

  .showcase-content h2 {
    font-size: 2.2rem;
  }

  .showcase-content h3 {
    font-size: 1.4rem;
  }

  .showcase-content p {
    font-size: 1.1rem;
  }

  .reserve-btn {
    width: 100%;
    font-size: 1.3rem;
    padding: 18px;
  }

  .showcase-image {
    min-height: 350px;
  }

  .product-base {
    height: 45%;
  }

  .showcase-image img {
    max-width: 90%;
  }
}

/* bathroom design  section css */

.bathroom-design-section {
  padding: 100px 0;
  background: #f6f6f4;
}

.offer-wrapper {
  text-align: center;
  margin-bottom: 80px;
}

.offer-heading {
  font-size: 2.5rem;
  color: #46513f;
  font-weight: 800;
  margin-bottom: 40px;
  line-height: 1.3;
}

.offer-heading span {
  font-style: italic;
}

.offer-boxes {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.offer-box {
  min-width: 280px;
  padding: 25px 30px;
  border-radius: 6px;
  text-align: center;
}

.offer-box.green {
  background: #4c5a40;
  color: #fff;
}

.offer-box.light {
  background: #bdb7a2;
  color: #46513f;
}

.offer-box.gold {
  background: #c9a373;
  color: #46513f;
}

.price-line {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.old-price {
  text-decoration: line-through;
  opacity: 0.7;
  margin-right: 10px;
  font-weight: 400;
}

.offer-box p {
  margin-top: 8px;
}

/* Heading */

.design-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
}

.design-content h2 {
  color: #46513f;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 25px;
}

.design-content p {
  color: #46513f;
  font-size: 1.5rem;
  line-height: 1.2;
}

/* Products */

.variant-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.variant-card {
  text-align: center;
}

.variant-card img {
  width: 100%;
  display: block;
  margin-bottom: 35px;
}

.variant-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 0 auto 25px;
}

.variant-circle.clear {
  background: linear-gradient(135deg, #f8f8f8, #d7d7d7);
}

.variant-circle.frosted {
  background: #9e9e9e;
}

.variant-circle.black {
  background: #4b4b4d;
}

.variant-card h4 {
  color: #46513f;
  font-size: 1.5rem;
  font-weight: 700;
}

/* Tablet */

@media (max-width: 991px) {
  .offer-heading {
    font-size: 2.5rem;
  }

  .design-content h2 {
    font-size: 2.8rem;
  }

  .design-content p {
    font-size: 1.7rem;
  }

  .variant-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */

@media (max-width: 767px) {
  .bathroom-design-section {
    padding: 10px 0;
  }
  
  .launch-offer-section {
    padding: 25px 0  !important ;
      
  }

  .offer-heading {
    font-size: 2rem;
  }

  .offer-box {
    width: 100%;
  }

  .design-content h2 {
    font-size: 2.2rem;
  }

  .design-content p {
    font-size: 1.5rem;
  }

  .variant-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .variant-card img {
    margin-bottom: 25px;
  }

  .variant-circle {
    width: 75px;
    height: 75px;
  }

  .variant-card h4 {
    font-size: 1.3rem;
  }
}

/* smart storage and hygiene css */
.storage-hygiene-section {
  background: #f7f7f5;
  padding: 90px 0;
}

.storage-grid,
.hygiene-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.storage-grid {
  margin-bottom: 50px;
}

.storage-content h2,
.hygiene-content h2 {
  color: #4b5841;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 35px;
}

.storage-content p,
.hygiene-content p {
  color: #4b5841;
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 45px;
}

.storage-content h4,
.hygiene-content h4 {
  color: #4b5841;
  font-size: 1.8rem;
  font-weight: 700;
}

.storage-image video,
.hygiene-image img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.storage-image,
.hygiene-image {
  overflow: hidden;
}

.storage-image img {
  aspect-ratio: 16/9;
}

.hygiene-image img {
  aspect-ratio: 16/9;
}

/* 


/* Tablet */

@media (max-width: 991px) {
  .storage-grid,
  .hygiene-grid {
    gap: 35px;
  }

  .storage-content h2,
  .hygiene-content h2 {
    font-size: 2.8rem;
  }

  .storage-content p,
  .hygiene-content p {
    font-size: 1.5rem;
  }

  .storage-content h4,
  .hygiene-content h4 {
    font-size: 1.6rem;
  }
}

/* Mobile */

@media (max-width: 767px) {
  .storage-hygiene-section {
    padding: 70px 0;
  }

  .storage-grid,
  .hygiene-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .storage-grid {
    display: flex;
    flex-direction: column-reverse;
  }

  .storage-grid {
    margin-bottom: 40px;
  }

  /* Keep exact visual flow like sample */
  .storage-content {
    order: 1;
  }

  .storage-image {
    order: 2;
  }

  .hygiene-image {
    order: 1;
  }

  .hygiene-content {
    order: 2;
  }

  .storage-content h2,
  .hygiene-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }

  .storage-content p,
  .hygiene-content p {
    font-size: 1.2rem;
    margin-bottom: 25px;
  }

  .storage-content h4,
  .hygiene-content h4 {
    font-size: 1.3rem;
  }
}

/* ===========================
   ALIGNMENT SECTION
=========================== */

.alignment-section {
  overflow: hidden;
}

.alignment-grid {
  display: grid;
  grid-template-columns: 70% 30%;
  min-height: 350px;
}

/* Left Side */

.alignment-content {
  background: #c5ab83;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 70px;
}

.alignment-content h2 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 50px;
  text-transform: uppercase;
}

.alignment-content p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 60px;
  max-width: 700px;
}

.learn-more-btn {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
}

.learn-more-btn:hover {
  opacity: 0.8;
}

/* Right Side */

.alignment-image {
  height: 100%;
}

.alignment-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 767px) {
  .alignment-content {
    padding: 50px 25px;
  }

  .alignment-grid {
    display: grid;
    /* grid-template-columns: 55% 45%; */
    grid-template-columns: 1fr;
    min-height: 650px;
    flex-direction: column-reverse;
    display: flex;
  }

  .alignment-image {
    min-height: 320px;
  }

  .alignment-content h2 {
    font-size: 2rem;
    line-height: 1.4;
    margin-bottom: 25px;
  }

  .alignment-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
  }

  .learn-more-btn {
    font-size: 1.3rem;
  }
}

/* ==========================
   PRODUCT GALLERY SECTION
========================== */

.product-gallery-section {
  background: #f6f6f4;
  padding: 25px 0;
}

.product-gallery-section .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

/* Card */

.gallery-card {
  position: relative;
  background: #fff;
  overflow: hidden;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  display: block;
  /* object-fit: cover; */
}

/* Captions */

.gallery-caption {
  position: absolute;
  left: 50px;
  top: 90px;
  color: #000;
}

.gallery-caption.bottom-left {
  top: auto;
  bottom: 25px;
  left: 25px;
}

.gallery-caption h3 {
  font-size: 2.4rem;
  font-weight: 400;
}

.gallery-caption p {
  margin-top: 240px;
  font-size: 2rem;
  font-weight: 400;
}

/* Center Card */

.center-card {
  background: #faf9f8;
  text-align: center;
  padding: 25px;
}

.gallery-content h2 {
  font-size: 3rem;
  color: #1d1d1d;
  margin-bottom: 15px;
  font-weight: 700;
}

.gallery-content p {
  font-size: 1.8rem;
  color: #444;
  line-height: 1.4;
}

.center-card img {
  max-width: 85%;
  margin: 30px auto;
  object-fit: contain;
}

/* Features */

.feature-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 20px;
}

.icon-item {
  text-align: center;
}

.icon-item img {
  width: 45px;
  height: 45px;
  margin: 0 auto 10px;
}

.icon-item span {
  display: block;
  font-size: 1.2rem;
  font-weight: 500;
  color: #222;
  line-height: 1.4;
}

@media (max-width: 991px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .gallery-caption {
    left: 30px;
    top: 50px;
  }

  .gallery-caption h3 {
    font-size: 2rem;
  }

  .gallery-caption p {
    margin-top: 120px;
    font-size: 1.6rem;
  }

  .gallery-content h2 {
    font-size: 2.4rem;
  }

  .gallery-content p {
    font-size: 1.5rem;
  }
}

@media (max-width: 767px) {
  .product-gallery-section {
    padding: 15px 0;
  }

  .product-gallery-section .container {
    padding: 0 15px;
  }

  .gallery-caption {
    left: 20px;
    top: 25px;
  }

  .gallery-caption.bottom-left {
    bottom: 20px;
    left: 20px;
  }

  .gallery-caption h3 {
    font-size: 1.6rem;
  }

  .gallery-caption p {
    margin-top: 80px;
    font-size: 1.4rem;
  }

  .center-card {
    padding: 20px 15px;
  }

  .gallery-content h2 {
    font-size: 2rem;
  }

  .gallery-content p {
    font-size: 1.3rem;
  }

  .feature-icons {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .icon-item span {
    font-size: 1rem;
  }
}

/* ==========================
   SIGNUP SECTION
========================== */

.footer-signup-section {
  background: #f6f6f4;
  padding: 70px 20px;
}

.signup-wrapper {
  text-align: center;
}

.signup-badge {
  display: inline-block;
  background: #000;
  background: #45533b;
  color: #fff;
  padding: 10px 25px;
  border-radius: 4px;
  font-size: 2rem;
  margin-bottom: 25px;

  font-family: cursive;
}

.signup-subtitle {
  color: #000;
  font-size: 1.5rem;
  font-style: italic;
  margin-bottom: 35px;
}

/* Form */

.footer-form {
  display: flex;
  justify-content: center;
  max-width: 600px;
  margin: 0 auto;
}

.footer-form input {
  flex: 1;
  height: 55px;

  border: 2px solid #2b2b2b;
  border-right: none;

  padding: 0 25px;

  font-size: 1.6rem;

  outline: none;
}

.footer-form button {
  width: 180px;

  border: none;

  background: #000;
  background: #45533b;
  color: #fff;

  font-size: 1.6rem;
  font-weight: 600;

  cursor: pointer;

  transition: 0.3s;
}

.footer-form button:hover {
  background: #222;
}

/* ==========================
   FOOTER
========================== */

.main-footer {
  background: #4c5a40;
  padding: 90px 20px 70px;
  padding: 40px 20px;
}

.footer-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  display: inline-block;

  color: #fff;

  font-size: 4rem;
  font-weight: 300;
  line-height: 0.9;

  text-decoration: none;
}

.footer-logo span {
  display: block;
}

.footer-description {
  max-width: 450px;

  margin: 25px auto;

  color: #c9a373;

  font-size: 1.2rem;
  line-height: 1.6;
}

.footer-divider {
  width: 300px;
  max-width: 100%;

  height: 1px;

  background: rgba(255, 255, 255, 0.6);

  margin: 0 auto 40px;
}

.footer-powered {
  color: #fff;

  font-size: 1.8rem;
  font-weight: 400;

  letter-spacing: 0.5px;
}

/* Tablet */

@media (max-width: 991px) {
  .footer-logo {
    font-size: 6rem;
  }
}

/* Mobile */

@media (max-width: 767px) {
  .footer-signup-section {
    padding: 60px 15px;
  }

  .signup-badge {
    font-size: 1.6rem;
  }

  .signup-subtitle {
    font-size: 1.2rem;
  }

  .footer-form {
    flex-direction: column;
    gap: 15px;
  }

  .footer-form input {
    border: 2px solid #2b2b2b;
  }

  .footer-form button {
    width: 100%;
    height: 55px;
  }

  .footer-logo {
    font-size: 4.8rem;
  }

  .footer-description {
    font-size: 1.2rem;
    margin: 35px auto;
  }

  .footer-divider {
    width: 220px;
    margin-bottom: 30px;
  }

  .footer-powered {
    font-size: 1.4rem;
  }
}

#about p {
  font-size: 1.4rem;
  color: #fff;
}

#about {
  padding: 50px 0 10px;
  background-color: #c2a278;
  background: #4b5a3f;
}

#about .section-heading {
  max-width: 700px;
  margin: auto;
  margin-bottom: 50px;
}

/* setup section css */

/* ==========================
   SETUP STEPS SECTION
========================== */

.setup-steps-section {
  background: #4b5a3f;
  padding: 90px 0;
}

.setup-steps-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  margin-bottom: 80px;
}

.section-title h2 {
  color: #ffffff;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.step-card {
  text-align: center;
  color: #ffffff;
}

.step-number {
  width: 90px;
  height: 90px;
  background: #ffffff;
  color: #4b5a3f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 3rem;
  font-weight: 800;
}

.step-card h3 {
  font-size: 2rem;
  font-weight: 700;
}

.step-card p {
  max-width: 280px;
  margin: 0 auto;
  font-size: 1.2rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
}

@media (max-width: 991px) {
  .setup-steps-section {
    padding: 70px 0;
  }

  .section-title {
    margin-bottom: 60px;
  }

  .section-title h2 {
    font-size: 2.8rem;
  }

  .steps-grid {
    gap: 30px;
  }

  .step-number {
    width: 80px;
    height: 80px;
    font-size: 2.5rem;
    margin-bottom: 30px;
  }

  .step-card h3 {
    font-size: 2rem;
  }

  .step-card p {
    font-size: 1.4rem;
  }
}

@media (max-width: 767px) {
  .setup-steps-section {
    padding: 60px 0;
  }

  .section-title {
    margin-bottom: 50px;
  }

  .section-title h2 {
    font-size: 2.2rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .step-number {
    width: 75px;
    height: 75px;
    font-size: 2.2rem;
    margin-bottom: 25px;
  }

  .step-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .step-card p {
    font-size: 1.2rem;
    max-width: 100%;
  }
}

.show-pc {
  display: block;
}

.show-mobile {
  display: none;
}

@media (max-width: 768px) {
  .show-pc {
    display: none;
  }

  .show-mobile {
    display: block;
  }
}

/* back to top cssss */

.back-to-top {
  position: fixed;
  right: 25px;
  bottom: 25px;

  width: 55px;
  height: 55px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: none;
  border-radius: 50%;

  background: #4b5a3f;
  color: #fff;

  font-size: 28px;
  font-weight: 700;

  cursor: pointer;

  opacity: 0;
  visibility: hidden;

  transform: translateY(20px);

  transition: all 0.3s ease;

  z-index: 999;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: #c5ab83;
  color: #fff;

  transform: translateY(-5px);

  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.back-to-top:active {
  transform: translateY(-2px);
}

.back-to-top:focus {
  outline: none;
}

/* ==========================
   VIP LAUNCH OFFER
========================== */

.launch-offer-section {
  padding: 80px 0;
  background: #f6f6f4;
}

.launch-offer-card {
  max-width: 950px;
  margin: 0 auto;

  background: #ffffff;

  border-radius: 30px;

  padding: 60px 50px;

  text-align: center;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.offer-tag {
  display: inline-block;

  padding: 12px 24px;

  background: #4b5a3f;

  color: #fff;

  border-radius: 50px;

  font-size: 0.95rem;

  font-weight: 700;

  letter-spacing: 1px;

  margin-bottom: 30px;
}

.launch-offer-card h2 {
  color: #46513f;

  font-size: 3rem;

  font-weight: 800;

  line-height: 1.3;

  margin-bottom: 50px;
}

.launch-offer-card h2 span {
  color: #c5a06b;
}

.offer-benefits {
  display: flex;

  justify-content: center;

  align-items: center;

  gap: 30px;

  margin-bottom: 50px;
}

.benefit-item {
  flex: 1;
}

.benefit-item strong {
  display: block;

  color: #46513f;

  font-size: 2rem;

  font-weight: 800;

  margin-bottom: 10px;
}

.benefit-item small {
  display: block;

  color: #666;

  font-size: 1rem;

  text-transform: uppercase;

  letter-spacing: 0.5px;
}

.benefit-divider {
  width: 1px;

  height: 60px;

  background: #ddd;
}

.launch-cta {
  background: #4b5a3f;

  color: #fff;

  border: none;

  padding: 20px 50px;

  border-radius: 60px;

  font-size: 1.1rem;

  font-weight: 700;

  cursor: pointer;

  transition: all 0.3s ease;

  margin-bottom: 25px;
}

.launch-cta:hover {
  background: #394832;

  transform: translateY(-3px);
}

.offer-note {
  color: #888;

  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .launch-offer-section {
    padding: 60px 0;
  }

  .launch-offer-card {
    padding: 40px 25px;

    border-radius: 20px;
  }

  .launch-offer-card h2 {
    font-size: 2.2rem;

    margin-bottom: 35px;
  }

  .offer-benefits {
    flex-direction: column;

    gap: 25px;

    margin-bottom: 35px;
  }

  .benefit-divider {
    width: 60px;

    height: 1px;
  }

  .benefit-item strong {
    font-size: 1.7rem;
  }

  .launch-cta {
    width: 100%;

    padding: 18px 25px;

    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .launch-offer-section {
    padding: 50px 15px;
  }

  .launch-offer-card {
    position: relative;

    padding: 50px 25px 30px;

    border-radius: 24px;

    background: linear-gradient(180deg, #ffffff 0%, #faf8f4 100%);

    box-shadow:
      0 15px 40px rgba(0, 0, 0, 0.08),
      0 3px 10px rgba(0, 0, 0, 0.05);

    overflow: hidden;
  }

  /* Decorative top strip */
  .launch-offer-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 6px;

    background: linear-gradient(90deg, #4b5a3f, #c5a06b);
  }

  .offer-tag {
    font-size: 0.8rem;

    padding: 10px 20px;

    margin-bottom: 25px;
  }

  .launch-offer-card h2 {
    font-size: 1.5rem;

    line-height: 1.25;

    margin-bottom: 30px;
  }

  .launch-offer-card h2 span {
    display: inline-block;

    color: #4b5a3f;

    position: relative;
  }

  .launch-offer-card h2 span::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 5px;

    width: 100%;
    height: 8px;

    background: rgba(197, 160, 107, 0.35);

    z-index: -1;
  }

  .offer-benefits {
    flex-direction: column;

    gap: 18px;

    margin-bottom: 35px;
  }

  .benefit-divider {
    display: none;
  }

  .benefit-item {
    width: 100%;
    display: flex;

    align-items: center;

    gap: 15px;

    padding: 18px;
    padding: 5px 10px;

    text-align: left;

    border-radius: 16px;

    background: #fff;

    border: 1px solid #ececec;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
  }

  .benefit-item::before {
    content: "✓";

    width: 40px;
    height: 40px;

    min-width: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #4b5a3f;

    color: #fff;

    font-size: 1rem;
    font-weight: 700;
  }

  .benefit-item strong {
    font-size: 1rem;

    margin-bottom: 4px;
  }

  .benefit-item small {
    font-size: 0.85rem;

    line-height: 1.4;

    color: #666;
  }

  .launch-cta {
    width: 100%;

    padding: 18px 24px;

    border-radius: 60px;

    font-size: 1rem;

    letter-spacing: 0.5px;

    box-shadow: 0 10px 25px rgba(75, 90, 63, 0.25);
  }

  .launch-cta:hover {
    transform: none;
  }

  .offer-note {
    margin-top: 18px;

    font-size: 0.85rem;

    line-height: 1.5;
  }
}

.product-gallery-section .design-content {
  margin: 20px auto;
}

.product-gallery-section .design-content h2 {
  color: #46513f;
  font-size: 2.3rem;
  margin-bottom: 5px;
}

@media only screen and (max-width: 768px) {
  .hero-content h2 {
    font-size: 24px;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #27352e;
  }
  .hero-form {
    background: #45533b;
  }
  .hero-form h3 {
    font-size: 22px;
    margin-bottom: 30px;
    color: #fff;
    text-align: center;
  }

  .reserver-btn {
    background-color: #d9d9d9 !important;
    color: #45533b !important;
  }

  .showcase-content h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .showcase-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  .showcase-content p {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }

  /* .variant-card {
    display: flex;
    text-align: center;
    justify-content: center;
    gap: 20px;
    align-items: center;
  } */

  /* .variant-card img {
    margin-bottom: 25px;
    max-width: 300px;
  } */

  .design-content h2 {
    font-size: 2.2rem;
    line-height: 1.3;
  }

  .design-content p {
    font-size: 1.2rem;
  }

  #about p {
    font-size: 1.2rem;
    color: #fff;
  }

  .footer-form input {
    border: 2px solid #2b2b2b;
    padding: 10px;
  }

  .footer-logo {
    font-size: 2.8rem;
  }

  .showcase-content {
    padding: 25px 10px;
  }

  .hero-grid {
    gap: 0;
  }
  
      .offer-benefits {
        flex-direction: column;
        gap: 18px;
        margin-bottom: 35px;
        display: none !important;
    }
    
    .product-base {
        
        background: none !important;
    }

}


    .setup-steps-section {
        padding: 60px 0;
        display: none;
    }
    
    
    .product-showcase, .alignment-content {
  
    background: #45533b;
}




nav{
    display: none;
}
.offer-wrapper  {
    margin-bottom: 0;
}

.hero-content h2 {
    font-size: 42px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #27352e;
}
.hero-content p {
    font-size: 32px;
    font-weight: 800;
    color: #45533b;
        font-family: "Poppins", sans-serif;
        font-style: italic;
        
}


.popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.popup.show {
    display: flex;
}


@media (max-width: 767px) {
    .storage-hygiene-section {
        padding: 70px 0;
        padding-top: 20px;
    }
    
    .hero-content h2 {
    font-size: 32px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #27352e;
}
.hero-content p {
    font-size: 24px;
    font-weight: 800;
    color: #45533b;






line-height: 1.45;
}

}
