@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');
*,
:after,
:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box
}



/*
body,
html {
	font-size: 100%;
	padding: 0;
	margin: 0;
	overflow-x: hidden;
	background-color: #fff;
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
	-o-font-smoothing: antialiased;


}*/



      body,
html {
    font-size: 100%;
	padding: 0;
	margin: 0;
            background-color: var(--editorial-bg);
            -webkit-font-smoothing: antialiased;
     font-family: "Lexend", sans-serif;
  font-optical-sizing: auto;
  line-height: 1.6;
  color: #333; 
    background-color: #f4f6f9; /* Light gray */
    
      padding-top: 80px;
        }






a {
    text-decoration: none;
}


.content-wrapper {
	max-width: 1440px;
	margin: 0 auto;
	padding: 1em;
}





/* WHITE NAVBAR */
.navbar-custom {
  background: #ffffff;
    padding-top: 1em;
    padding-bottom: 1em;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* Nav links */
.navbar-custom .nav-link {
  color: #333;
  font-weight: 400;
}

.navbar-custom .nav-link:hover {
  color: #000;
}

/* Dropdown */
.dropdown-menu {
  border-radius: 12px;
  border: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Buy button */
.btn-buy {
  border-radius: 50px;
  padding: 6px 18px;
}

/* Toggler icon fix (dark icon for white bg) */
.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}


.navbar-toggler-icon {
  filter: invert(0); /* makes it black */
}










/* =========================
   LARGE DEVICES (Default)
   ========================= */
h1 { font-size: 5.5em; font-weight: 600; line-height: 1.2; }
h2 { font-size: 4.5em; font-weight: 600; line-height: 1.25; }
h3 { font-size: 3.4em; font-weight: 600; line-height: 1.3; }
h4 { font-size: 26px; font-weight: 500; line-height: 1.35; }
h5 { font-size: 20px; font-weight: 500; line-height: 1.4; }
h6 { font-size: 16px; font-weight: 500; line-height: 1.4; }
p  { font-size: 16px; font-weight: 400; line-height: 1.7; }



 
 .banner {
     
      background-image: url(../images/banner-large.jpg);
   -webkit-background-size:cover;
    -moz-background-size:cover;
    -o-background-size:cover;
    background-size:cover;
     
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      min-height: 450px;
      display: flex;
      align-items: center;
      padding: 40px;
      color: #fff;
    }

    .banner::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.6); /* dark overlay */
      z-index: 1;
    }

    .banner-content {
      position: relative;
      z-index: 2;
      max-width: 65%;
        text-align: center;
        margin: 0 auto;
    }

    .banner h1 {
      /*font-size: 40px;*/
      font-weight: 700;
      margin-bottom: 15px;
    }

    .banner p {
      font-size: 15px;
      line-height: 1.7;
      color: rgba(255,255,255,0.85);
    }

   




    .card-custom {
      background-color: #ffffff;
      border-radius: 12px;
      padding: 20px 30px;
      height: 100%; /* KEY */
    }


    .card-custom-2 {
      background-color: #133149;
      border-radius: 12px;
      padding: 20px 30px;
      height: 100%; /* KEY */
        color:#fff;
    }





    .image-wrapper {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100%;
    }

    .product-image {
      max-width: 500px;
      height: auto;
    }

    .label {
      letter-spacing: 1px;
      color: rgba(255,255,255,0.9);
      text-transform: uppercase;
    }

    .title {
      font-size: 32px;
      font-weight: 600;
      margin: 15px 0;
    }

    .desc {
      color: rgba(255,255,255,0.8);
      font-size: 15px;
      line-height: 1.6;
    }

    .link {
      color: #0d6efd;
      text-decoration: none;
      font-weight: 500;
    }

    .link:hover {
      text-decoration: underline;
    }


.glass-btn {
  padding: 12px 28px;
  border-radius: 999px; /* fully rounded */
  border: 1px solid rgba(255, 255, 255, 0.2);

  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  color: #ffffff;
  font-weight: 500;
  letter-spacing: 0.3px;

  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Glass shine layer */
.glass-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;

  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.4),
    rgba(255, 255, 255, 0.05)
  );

  transform: skewX(-20deg);
  transition: 0.6s;
}

/* Hover effect */
.glass-btn:hover::before {
  left: 130%;
}

.glass-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}


.glass-btn a {
    color:#fff;
    text-decoration: none;
}


.glass-btn a:hover {
    color:#fff;
    text-decoration: none;
}



.btn-success  {
    
     padding: 12px 28px!important;
  border-radius: 999px!important; /* fully rounded */
  background: #133149!important;
  color: #ffffff!important;
  font-weight: 500;
  letter-spacing: 0.3px;
    border:none!important;
}

input {
    padding: 12px 28px!important;
  border-radius: 999px!important; /* fully rounded */
}


textarea {
      padding: 12px 28px!important;
  border-radius: 999px!important;
}


.quote-send2 input{
     padding: 12px 28px!important;
  border-radius: 999px!important; /* fully rounded */
  background: #133149!important;
  color: #ffffff!important;
  font-weight: 500;
  letter-spacing: 0.3px;
    border:none!important;
    width: 100%;
}


/******TOWEL HANGER******/

.nav-title {
    margin-top:1em;
}


.nav-title a {
    text-decoration: none;
    color: #E94560;
    opacity: 1!important;
}


.nav-title h6 {
    opacity: 1;
    font-weight: 400;
}

.nav-title  h5 {
    font-weight: 600;
    color:white;
    text-align: center;
}



.whatsapp-btn {
  background-color: #25D366;
  color: #fff;
  border-radius: 50em;
  padding: 12px 24px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.whatsapp-btn:hover {
  background-color: #1ebe5d;
  color: #fff;
  transform: translateY(-2px);
}

.email-btn {
  background-color: #133149;
  color: #fff;
  border-radius: 50em;
  padding: 12px 24px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.email-btn:hover {
  background-color: #0f2538;
  color: #fff;
  transform: translateY(-2px);
}

/* Icon size */
.btn i {
  font-size: 18px;
}


.product-description h2{
   color:#133149; 
}

.product-description h3{
color:#E94560;
}

.product-description p{
  opacity: 0.6;
}






   .product-carousel {
      max-width: 500px;
      margin:;
    }

    /* Square container */
    .carousel-inner {
      aspect-ratio: 1 / 1;
      border-radius: 16px;
      overflow: hidden;
      background: #000;
    }

    /* Media wrapper */
    .media-wrapper {
      position: relative;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* Image */
    .media-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* Video */
    .media-wrapper video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: relative;
      z-index: 2;
    }

    /* Only active slide is interactive */
    .carousel-item {
      pointer-events: none;
    }

    .carousel-item.active {
      pointer-events: auto;
    }

    /* Custom arrows */
    .custom-control {
      width: 50px;
      height: 50px;
      background: rgba(0,0,0,0.5);
      border-radius: 50%;
      top: 50%;
      transform: translateY(-50%);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 10;
    }

    .carousel-control-prev {
      left: 10px;
    }

    .carousel-control-next {
      right: 10px;
    }

    .arrow-icon {
      color: #fff;
      font-size: 22px;
    }

    /* Indicators */
    .carousel-indicators button {
      background-color: rgba(255,255,255,0.6);
    }

    .carousel-indicators .active {
      background-color: #fff;
    }

    /* Responsive */
    @media (max-width: 576px) {
      .custom-control {
        width: 40px;
        height: 40px;
      }

      .arrow-icon {
        font-size: 18px;
      }
    }




/* Play button overlay 
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  
  width: 70px;
  height: 70px;
  border-radius: 50%;
  
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  
  display: flex;
  align-items: center;
  justify-content: center;
  
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  
  z-index: 5;
  transition: all 0.3s ease;
}

.play-button:hover {
  background: rgba(0, 0, 0, 0.7);
  transform: translate(-50%, -50%) scale(1.1);
}

*/



.main-video-wrapper {
    margin: 1em auto;
    max-width: 600px;
    height: auto;
}



.video-wrapper {
  border-radius: 20px;
  overflow: hidden;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: none;
  color: #fff;
  font-size: 30px;
  padding: 20px 25px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.play-btn:hover {
  box-shadow: 0 0 20px rgba(255,255,255,0.4);
}




.other-product {
    padding: 1.3em;
    margin-bottom: 0.6em;
}


.other-product:hover {
    padding: 1.3em;
    background-color: #fff;
    border-radius: 1.1em;
    transition: 1s;
}


.other-product a {
    text-decoration: none;
}

.other-product img {
    border-radius: 0.5em;
    margin-bottom: 1em;
}


.other-product h6 {
   color:#0f2538;
   opacity: 0.8;
    font-weight: 500;
}


.other-product h4 {
    color:#E94560!important;
}




/* =========================
   < 1200px (Laptops/Tablets)
   ========================= */
@media (max-width: 1199.98px) {
  h1 { font-size:5.3em; }
  h2 { font-size: 4.3em; }
  h3 { font-size: 3.8em; }
  h4 { font-size: 24px; }
  h5 { font-size: 18px; }
  h6 { font-size: 15px; }
  p  { font-size: 15px; }
    
    
    .banner-content {
      position: relative;
      z-index: 2;
      max-width: 85%;
        text-align: center;
        margin: 0 auto;
    } 
    
    
    .banner {
        padding: 20px;
        text-align: center;
      }
    
    
    .product-image {
      max-width: 100%;
      height: auto;
    }
    
    
}




/* =========================
   < 769px (Tablets/Mobile)
   ========================= */
@media (max-width: 769px) {
  h1 { font-size: 5em; }
  h2 { font-size: 4em; }
  h3 { font-size: 3.4em; }
  h4 { font-size: 20px; }
  h5 { font-size: 17px; }
  h6 { font-size: 14px; }
  p  { font-size: 14px; }
    
    
   .banner {
        padding: 15px;
        text-align: center;
      }

    
   .banner {
      background-image: url(../images/banner.jpg);
   -webkit-background-size:cover;
    -moz-background-size:cover;
    -o-background-size:cover;
    background-size:cover;
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      min-height: auto;
      display: flex;
      align-items: center;
      padding: 25px;
      color: #fff;
    } 
    
    
      .card-custom-2 {
      background-color: #133149;
      border-radius: 16px;
      padding:2em 1em;
      height: 100%; /* KEY */
        color:#fff;
    }
    
}


/* =========================
   < 469px (Small Phones)
   ========================= */
@media (max-width: 469px) {
  h1 { font-size: 2.8em; }
  h2 { font-size:  2.6em; }
  h3 { font-size: 2.4em; }
  h4 { font-size: 18px; }
  h5 { font-size: 16px; }
  h6 { font-size: 13px; }
  p  { font-size: 13px; }
    
    
   .banner {
        padding: 4em 1.5em;
        text-align: center;
      }  
    
     .banner-content {
      position: relative;
      z-index: 2;
      max-width: 98%;
        text-align: center;
        margin: 0 auto;
    } 
    
}