.elementor-750 .elementor-element.elementor-element-c8cc6d3{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-750 .elementor-element.elementor-element-9f7c634{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-750 .elementor-element.elementor-element-bb87b65{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-5de45ea *//* =========================
SECTION
========================= */

.page-hero-section{
    width:100%;
    padding:30px 20px 10px;
    background:#f5f0df;
}

/* =========================
CONTAINER
========================= */

.page-hero-container{
    max-width:1200px;
    margin:auto;

    text-align:center;
}

/* =========================
BREADCRUMB
========================= */

.page-breadcrumb{
    display:flex;
    align-items:center;
    justify-content:center;

    gap:14px;

    margin-bottom:34px;
}

/* LINKS */

.page-breadcrumb a{
    position:relative;

    text-decoration:none;

    font-size:15px;
    font-weight:500;

    color:#8b8b8b;

    transition:all 0.35s ease;
}

/* UNDERLINE EFFECT */

.page-breadcrumb a::after{
    content:"";

    position:absolute;

    left:0;
    bottom:-6px;

    width:0%;
    height:2px;

    background:#000000;

    transition:all 0.35s ease;
}

/* HOVER */

.page-breadcrumb a:hover{
    color:#000000;
}

.page-breadcrumb a:hover::after{
    width:100%;
}

/* SLASH */

.page-breadcrumb span{
    font-size:16px;

    color:#a1a1a1;
}

/* =========================
TITLE
========================= */

.page-hero-container h1{
    font-size:35px;
    line-height:1.1;
    font-weight:500;

    color:#1d2433;

    margin-bottom:28px;
}

/* =========================
YELLOW LINE
========================= */

.hero-line{
    width:135px;
    height:5px;

    background:#e2cb00; /* SAME LIGHT YELLOW */

    border-radius:50px;

    margin:auto;
    margin-bottom:34px;
}

/* =========================
TEXT
========================= */

.page-hero-container p{
    font-size:17px;
    line-height:1.8;

    color:#666666;

    margin:0;
}

/* =========================
TABLET
========================= */

@media(max-width:1100px){

    .page-hero-container h1{
        font-size:72px;
    }

}

/* =========================
MOBILE
========================= */

@media(max-width:767px){

    .page-hero-section{
        padding:65px 15px 75px;
    }

    .page-breadcrumb{
        gap:10px;

        margin-bottom:24px;
    }

    .page-breadcrumb a{
        font-size:15px;
    }

    .page-breadcrumb span{
        font-size:15px;
    }

    .page-hero-container h1{
        font-size:48px;
        line-height:1.2;

        margin-bottom:22px;
    }

    .hero-line{
        width:95px;
        height:4px;

        margin-bottom:24px;
    }

    .page-hero-container p{
        font-size:17px;
        line-height:1.7;
    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-e844266 *//* =========================
BATH LINENS SECTION
========================= */

.bath-linens-section{
    width:100%;
    padding:20px 6%;
    background:#ffffff;
    box-sizing:border-box;
}


/* TITLE */

.bath-title-wrap{
    text-align:center;
    margin-bottom:70px;
}

.bath-title{
    font-size:30px;
    color:#162033;
    margin:0;
    font-weight:700;
    line-height:1.1;
}

.bath-line{
    width:120px;
    height:5px;
    background:#e8d400;
    margin:22px auto 0;
    border-radius:50px;
}


/* GRID */

.bath-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
}


/* CARD */

.bath-card{
    background:#fff;
    border-radius:34px;
    overflow:hidden;
    position:relative;
    transition:0.45s ease;
    border:2px solid transparent;
    display:flex;
    flex-direction:column;
}


/* NORMAL BORDER */

.bath-card::after{
    content:"";
    position:absolute;
    inset:0;
    border:2px solid #e8d400;
    border-left:2px solid #e8d400;
    border-radius:34px;
    opacity:0;
    transition:0.45s ease;
    pointer-events:none;
}


/* LEFT THICK LINE */

.bath-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:8px;
    height:100%;
    background:#e8d400;
    border-radius:34px 0 0 34px;
    opacity:0;
    transition:0.45s ease;
    z-index:3;
}


/* HOVER */

.bath-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

.bath-card:hover::after{
    opacity:1;
}

.bath-card:hover::before{
    opacity:1;
}


/* IMAGE */

.bath-image{
    overflow:hidden;
}

.bath-image img{
    width:100%;
    height:390px;
    object-fit:cover;
    display:block;
    transition:0.6s ease;
}

.bath-card:hover img{
    transform:scale(1.05);
}


/* CONTENT */

.bath-content{
    background:#f8f3d9;
    padding:34px;
    display:flex;
    flex-direction:column;
    flex:1;
}

.bath-content-inner{
    flex:1;
}


/* HEADING */

.bath-content h3{
    font-size:28px;
    line-height:1.2;
    color:#162033;
    margin:0 0 16px;
    font-weight:700;
    min-height:90px;
}


/* DESCRIPTION */

.bath-desc{
    font-size:21px;
    color:#666;
    line-height:1.7;
    margin:0 0 26px;
    min-height:75px;
}


/* FEATURE BOX */

.bath-feature-box{
    background:#f0ead7;
    padding:18px 22px;
    border-radius:18px;
    font-size:18px;
    line-height:1.7;
    color:#444;
    margin-bottom:26px;
    min-height:84px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.bath-feature-box span{
    font-weight:700;
    color:#111;
}


/* QUERY */

.bath-query{
    font-size:18px;
    color:#6c7d95;
    line-height:1.7;
    margin-bottom:34px;
    min-height:60px;
}


/* BUTTON */

.bath-btn{
    width:100%;
    height:74px;
    background:#e8d400;
    border:2px solid #e8d400;
    border-radius:70px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:#111;
    font-size:20px;
    font-weight:700;
    transition:0.4s ease;
}


/* BUTTON HOVER */

.bath-btn:hover{
    background:transparent;
    border-color:#111;
    color:#111;
}


/* TABLET */

@media(max-width:1100px){

    .bath-grid{
        grid-template-columns:repeat(2,1fr);
    }

}


/* MOBILE */

@media(max-width:768px){

    .bath-linens-section{
        padding:70px 20px;
    }

    .bath-title{
        font-size:42px;
    }

    .bath-grid{
        grid-template-columns:1fr;
        gap:28px;
    }

    .bath-image img{
        height:290px;
    }

    .bath-content{
        padding:26px;
    }

    .bath-content h3{
        font-size:28px;
        min-height:auto;
    }

    .bath-desc{
        font-size:17px;
        min-height:auto;
    }

    .bath-feature-box{
        font-size:16px;
        min-height:auto;
    }

    .bath-query{
        font-size:16px;
        min-height:auto;
    }

    .bath-btn{
        height:64px;
        font-size:20px;
    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-b46368c */:root{
  --yellow:#F4E300;
}

/* SECTION */
.like-section{
  padding:70px 20px;
  background:#f5f0df;
}

.container{
  max-width:1100px;
  margin:auto;
}

/* TITLE */
.section-title{
  text-align:center;
  font-size:30px;
  margin-bottom:40px;
  position:relative;
}

.section-title::after{
  content:"";
  width:80px;
  height:3px;
  background:var(--yellow);
  display:block;
  margin:10px auto 0;
}

/* GRID */
.like-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

/* CARD */
.like-card{
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  text-decoration:none;
  border:1px solid #eee;
  transition:0.35s ease;
}

/* IMAGE */
.like-card img{
  width:100%;
  height:200px;
  object-fit:cover;
  transition:0.5s;
}

/* CONTENT */
.like-card .content{
  padding:18px;
}

.like-card h3{
  font-size:18px;
  margin-bottom:6px;
  color:#111;
}

.like-card span{
  font-size:13px;
  color:#666;
  position:relative;
}

/* UNDERLINE EFFECT */
.like-card span::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-2px;
  width:0%;
  height:1px;
  background:var(--yellow);
  transition:0.3s;
}

/* HOVER */
.like-card:hover{
  transform:translateY(-6px);
  box-shadow:0 15px 35px rgba(0,0,0,0.08);
}

.like-card:hover img{
  transform:scale(1.05);
}

.like-card:hover span{
  color:#000;
}

.like-card:hover span::after{
  width:100%;
}

/* MOBILE */
@media(max-width:900px){
  .like-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .like-grid{
    grid-template-columns:1fr;
  }

  .like-card img{
    height:180px;
  }
}/* End custom CSS */