.elementor-705 .elementor-element.elementor-element-d0b2659{--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-705 .elementor-element.elementor-element-22fbef7{--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-705 .elementor-element.elementor-element-d018d7d{--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-2d09af7 *//* =========================
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-ddf13e7 *//* =========================
PLAIN FABRIC PRODUCTS
========================= */

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


/* TITLE */

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

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

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


/* GRID */

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


/* CARD */

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


/* NORMAL BORDER */

.plain-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 */

.plain-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 */

.plain-card:hover{
    transform:translateY(-10px);
    box-shadow:0 22px 55px rgba(0,0,0,0.08);
}

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

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


/* IMAGE */

.plain-image{
    width:100%;
    overflow:hidden;
}

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

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


/* CONTENT */

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

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


/* HEADING */

.plain-content h3{
    font-size:25px;
    line-height:1.2;
    color:#162033;
    margin:0 0 16px;
    font-weight:700;
    min-height:96px;
}


/* DESCRIPTION */

.plain-desc{
    font-size:20px;
    color:#666;
    line-height:1.7;
    margin:0 0 30px;
    min-height:72px;
}


/* FEATURES */

.plain-features{
    display:flex;
    flex-direction:column;
    gap:14px;
    margin-bottom:32px;
}

.plain-features span{
    background:#f0ead7;
    padding:16px 20px;
    border-radius:18px;
    font-size:18px;
    line-height:1.6;
    color:#555;
}


/* QUERY */

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


/* BUTTON */

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


/* BUTTON HOVER */

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


/* TABLET */

@media(max-width:1100px){

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

}


/* MOBILE */

@media(max-width:768px){

    .plain-fabric-section{
        padding:70px 20px;
    }

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

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

    .plain-image img{
        height:280px;
    }

    .plain-content{
        padding:26px;
    }

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

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

    .plain-features span{
        font-size:15px;
        padding:13px 16px;
    }

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

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

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-3f0b488 */:root{
  --yellow:#F4E300;
}

/* SECTION */
.recommend-section{
  padding:60px 20px;
  background:#f5f0df;
}

.container{
  max-width:1100px;
  margin:auto;
}

/* BOX */
.recommend-box{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:30px 40px;
  border-radius:18px;
  background:#fafafa;
  border:1px solid #eee;
  position:relative;
  transition:0.3s;
}

/* YELLOW ACCENT LINE */
.recommend-box::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:4px;
  height:100%;
  background:var(--yellow);
  border-radius:4px 0 0 4px;
}

/* TEXT */
.recommend-content h2{
  font-size:20px;
  margin-bottom:5px;
}

.recommend-content h3{
  font-size:24px;
  margin-bottom:8px;
}

.recommend-content p{
  font-size:14px;
  color:#666;
  max-width:500px;
}

/* BUTTON */
.recommend-btn{
  padding:12px 26px;
  border:1px solid #000;
  border-radius:30px;
  text-decoration:none;
  color:#000;
  font-size:14px;
  transition:0.25s ease;
  position:relative;
}

/* UNDERLINE */
.recommend-btn::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:7px;
  transform:translateX(-50%);
  width:0%;
  height:1px;
  background:var(--yellow);
  transition:0.3s;
}

/* HOVER */
.recommend-btn:hover{
  border-color:var(--yellow);
  color:var(--yellow);
  transform:translateY(-2px);
}

.recommend-btn:hover::after{
  width:60%;
}

/* CLICK EFFECT */
.recommend-btn:active{
  transform:translateY(1px) scale(0.97);
}

/* BOX HOVER */
.recommend-box:hover{
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

/* MOBILE */
@media(max-width:768px){

  .recommend-box{
    flex-direction:column;
    gap:20px;
    text-align:center;
    padding:25px;
  }

  .recommend-content p{
    margin:auto;
  }

}/* End custom CSS */