/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/ClientSide/css.css to edit this template
*/
/* 
    Created on : Jan 9, 2026, 2:00:28 PM
    Author     : yehez
*/

/*start global*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');
@keyframes imgShake {
    0%   {
        transform: rotate(0deg) scale(1);
    }
    20%  {
        transform: rotate(-1.5deg) scale(1.03);
    }
    40%  {
        transform: rotate(1.5deg) scale(1.03);
    }
    60%  {
        transform: rotate(-1.5deg) scale(1.03);
    }
    80%  {
        transform: rotate(1.5deg) scale(1.03);
    }
    100% {
        transform: rotate(0deg) scale(1);
    }
}
body {
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: .2s;
}

.delay-2 {
    transition-delay: .4s;
}

.delay-3 {
    transition-delay: .6s;
}

.delay-4 {
    transition-delay: .8s;
}

.delay-5 {
    transition-delay: .10s;
}

.delay-6 {
    transition-delay: .12s;
}
.delay-7 {
    transition-delay: .14s;
}
.delay-8 {
    transition-delay: .16s;
}
.delay-9 {
    transition-delay: .18s;
}
.delay-10 {
    transition-delay: .20s;
}


.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-zoom {
    opacity: 0;
    transform: scale(.9);
}

.reveal-zoom.active {
    opacity: 1;
    transform: scale(1);
}

html,
body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

body {
    position: relative;
    overscroll-behavior-x: none;
}

.uppercase {
    text-transform: uppercase !important;
}

/*end global*/

/*start index*/
/*start header*/
.header {
    background: linear-gradient(90deg, #E6DECB, #CBAF87, #E7DFCA, #CBAF87);
    height: 50px;
}

header .container {
    height: 100%;
    align-items: center;
}

.active {
    font-weight: bolder;
    color: #3E3A39;
}

.nav-item {
    position: relative;
}

.nav-link-custom {
    text-decoration: none;
    color: #3E3A39;
    font-weight: 500;
    white-space: nowrap;
}

.active-menu {
    font-weight: 700;
}

.arrow {
    font-size: .7rem;
    transition: transform .3s ease;
}

.arrow {
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    user-select: none;
    padding: 10px 25px;
    color: #444;
    transition: 0.2s;
    margin-left: -30px;
}

.arrow:hover {
    color: #000;
    transform: scale(1.2);
}

.dropdown-menu-custom {
    position: absolute;
    top: 68%;
    left: 0;
    background: #fff;
    min-width: 180px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .25s ease;
    z-index: 999;
}

.dropdown-menu-custom a {
    display: block;
    padding: 10px 18px;
    color: #3E3A39;
    text-decoration: none;
    font-size: .95rem;
}

.dropdown-menu-custom a:hover {
    background: #f3efe6;
}

.dropdown-hover:hover .dropdown-menu-custom {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-hover:hover .arrow {
    transform: rotate(180deg);
}

.icon-dropdown {
    position: relative;
}

.icon-trigger {
    cursor: pointer;
}

.icon-dropdown-menu {
    position: absolute;
    top: 120%;
    right: 0;
    background: #fff;
    min-width: 200px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .25s ease;
    z-index: 999;
}

.icon-dropdown-menu a {
    display: block;
    padding: 10px 18px;
    text-decoration: none;
    color: #3E3A39;
}

.icon-dropdown-menu a:hover {
    background: #f3efe6;
}

@media (min-width: 992px) {
    .icon-dropdown:hover .icon-dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    nav {
        display: none !important;
    }
    .icons {
        margin-right: 20px;
    }
    .icon-trigger {
        display: block;
        width: 28px;
        height: 28px;
    }
    .header {
        height: 60px;

    }
    .icon-dropdown-menu {
        min-width: 260px;
        font-size: 0.95rem;
    }
    .icon-dropdown-menu a {
        padding: 12px 20px;
    }
}

.icon-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (max-width: 991px) {
    .icon-dropdown-menu {
        display: block;
    }
    .header {
        position: sticky;
        top: 0;
        z-index: 9999;
    }
    header .container {
        height: 100%;
        align-items: center;
        padding-left: 35px;
        padding-right: 35px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .icon-dropdown-menu.mobile {
        display: block !important;
    }
    .icon-dropdown-menu.d-md-block {
        display: none !important;
    }
    nav {
        display: none !important;
    }
}
/*end header*/


/*start banner 1*/
.hero-section {
    background: #ffffff;
    overflow: hidden;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    color: #3E3A39;
}

.hero-title span {
    color: #CBAF87;
}

.hero-desc {
    font-size: 1rem;
    color: #666;
    max-width: 420px;
}

.hero-btn {
    background: #3E3A39;
    color: #fff;
    border-radius: 25px;
    padding: 8px 28px;
    font-size: .9rem;
    text-transform: lowercase;
}

.hero-btn:hover {
    background: #2c2a29;
    color: #fff;
}

.hero-animation lottie-player {
    width: 420px;
    height: 420px;
    margin: auto;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-animation lottie-player {
        width: 300px;
        height: 300px;
    }
}

@media (width: 1024px) and (height: 1366px){
    .hero-title {
        font-size: 2rem;
    }

    .mission{
        margin-top: -13vh!important;
    }

    .main-product-img{
        margin-left:-40px!important;
    }
}

.title-banner-index{
    font-size: 2.2rem!important;
}
/*end banner */

/*start banner mobile*/
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    .hero-animation lottie-player {
        width: 260px;
        height: 260px;
        margin: auto;
    }
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 2.4rem;
    }

    .hero-animation lottie-player {
        width: 320px;
        height: 320px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .hero-title {
        font-size: 2.8rem;
    }
}
/*end banner mobile*/

/*start banner 2*/
.hero-wrapper {
    position: relative;
    /*margin-top: -10vh;*/
    z-index: 2;
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-content {
    position: absolute;
    top: 67%;
    left: 65%;
    transform: translate(-50%, -50%);
    color: white;
    width: 45%;
}

.title-banner{
    font-size: 1.7rem;
}

.my-line {
    border: 0;
    border-top: 2px solid rgba(255, 255, 255, 0.8);
    width: 100%;
    max-width: 100%;
    opacity: 1 !important;
}

@media (max-width: 768px) {
    .hero-wrapper {
        margin-top: -8vh;
    }
    .hero-content {
        left: 50%;
        top: 45%;
        width: 80%;
        transform: translate(-50%, -45%);
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-wrapper {
        margin-top: -5vh;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .hero-wrapper {
        margin-top: -5vh;
    }

    .hero-content {
        top: 70%;
        left: 55%;
        width: 60%;
        transform: translate(-50%, -50%);
        text-align: center;
    }

    .title-banner {
        font-size: 1.6rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .hero-wrapper {
        margin-top: -5vh;
    }

    .hero-content {
        top: 75%;
        left: 55%;
        width: 60%;
        transform: translate(-50%, -50%);
        text-align: center;
    }

    .title-banner {
        font-size: 13px;
    }

    .hero-content p {
        font-size: 0.55rem;
    }
}
/*
@media (max-width: 576px) {

.hero-wrapper {
margin-top: -5vh;
}

.title-banner {
font-size: 1.15rem;
}

.hero-content p {
font-size: 0.8rem;
}
}*/
/*end banner 2*/

/*start best product*/
.best-product-title {
    font-weight: bold;
    font-size: 50px;
    color: #3E3A39;
}

.best-product-subtitle {
    font-weight: bold;
    font-size: 32px;
    color: #3E3A39;
}

.product-wrapper {
    gap: 40px;
}

.product-card {
    width: 295px;
    height: 380px;
    border-radius: 22px;
    padding: 25px;
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

.center-card {
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(135deg, #886531, #D5BE93, #F1D895, #886531) border-box;
    border: 4px solid transparent;
    border-radius: 22px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.main-product-img {
    margin: 0 auto;
    display: block;
    margin-top: -20px !important;
    margin-left: -35px;
}

.stars {
    font-size: 20px;
    color: #000;
    margin-top: -10px !important;
    text-align: left;
}

.product-name {
    font-size: 20px;
    color: #3E3A39;
    margin: 0px 0 0 0;
    text-align: left;
}

.product-desc {
    color: #3E3A39;
    text-align: left;
    margin-top: 3px;
    font-size: 12px;
}

.side-card-left {
    width: 295px;
    height: 358px;
    background: #E9E9E9;
    opacity: 0.6;
    filter: blur(1px);
    transform: rotate(-6deg);
    border-radius: 20px;
    padding: 42px;
    z-index: 1;
    margin-left: -40px;
    margin-bottom: -42px;
    margin-right: -35px;
}

.side-card-left:last-child {
    transform: rotate(6deg);
}

.side-card-right {
    width: 295px;
    height: 358px;
    background: #E9E9E9;
    opacity: 0.6;
    filter: blur(1px);
    transform: rotate(8deg);
    border-radius: 20px;
    padding: 42px;
    z-index: 1;
    margin-left: -40px;
    margin-bottom: -42px;
}

.side-card-right:last-child {
    transform: rotate(1deg);
}

.side-img {
    height: auto;
    margin-left: -30px;
}

.stars {
    display: block;
}

@media (max-width: 768px) {
    .product-card {
        width: 460px;
        height: 230px;
        padding: 5px;
    }

    .main-product-img {
        width: 115%;
        height: auto;
        margin-top: 0px !important;
        margin-left: -2vh;
    }

    .stars {
        display: none;
    }

    .side-card-left {
        width: 150px;
        height: 200px;
        padding: 20px;
    }

    .side-card-right {
        width: 150px;
        height: 200px;
        padding: 20px;
        margin-right: -10px;
        margin-left: -45px;
    }

    .side-img {
        width: 90px;
        margin-top: 20px;
    }

    .arrow-right {
        margin-right: -30px;
    }
}

/* ipad mini / air */
@media (min-width: 768px) and (max-width: 820px) {
    .product-card {
        width: 218px;
        height: 245px;
        padding: 5px;
    }

    .main-product-img {
        width: 100%;
        height: 100%;
        margin-top: 0px !important;
        margin-left: 0px !important;
    }

    .stars {
        display: none;
    }

    .side-card-left {
        width: 150px;
        height: 200px;
        padding: 20px;
    }

    .side-card-right {
        width: 150px;
        height: 200px;
        padding: 20px;
        margin-right: -10px;
        margin-left: -45px;
    }

    .side-img {
        width: 90px;
        margin-left: 10px;
        margin-top: 20px;
    }

    .arrow-right {
        margin-right: -30px;
    }
}

/*surface pro7*/
@media (min-width: 900px) and (max-width: 950px) and (min-height: 1200px) {
    .main-product-img {
        margin-top: -45px !important;
        margin-left: -45px;
    }
    .center-card {
        width: 470px !important;
    }
    .side-img {
        width: 125%;
        margin-left: -12px;
        margin-top: 36px;
    }
}

/* Surface Pro 7 landscape (1368 x 912) */
@media (min-width: 1320px) and (max-width: 1400px) and (min-height: 880px) and (max-height: 960px) and (orientation: landscape) {
    .side-img {
        height: auto;
        margin-left: 15px;
        width: 80%;
        margin-top: 32px;
    }
}

/* iPhone SE landscape */
@media (min-width: 560px) and (max-width: 680px) and (max-height: 380px) and (orientation: landscape) {
    .main-product-img {
        margin-top: -32px !important;
        margin-left: -15px;

    }
    .center-card {
        width: 320px !important;

    }
    .side-img {
        width: 90px;
        margin-top: 20px;
        margin-left: -4px;
    }
}

/* iPhone XR landscape */
@media (min-width: 800px) and (max-width: 920px) and (max-height: 430px) and (orientation: landscape) {
    .main-product-img {
        margin-top: -25px !important;
        margin-left: -2px;
    }
    .center-card {
        width: 380px !important;

    }
    .side-img {
        width: 145px;
        margin-top: 20px;
        margin-left: -40px;
    }
    .side-card-left {
        width: 156px !important;
    }
    .side-card-right {
        width: 163px !important;
    }
}

/* Foldable / Surface Duo hard fix */
@media (min-width: 540px) and (max-width: 900px) and (min-height: 600px) and (max-height: 720px) {
    .main-product-img {
        margin-top: -45px !important;
        margin-left: -20px;
    }
    .center-card {
        width: 470px !important;
        height: 256px;
    }
    .side-img{
        margin-left: -5px;
    }

}

/*asus zenbook fold*/
@media (min-width: 840px) and (max-width: 870px) and (min-height: 1250px) and (max-height: 1320px) {
    .main-product-img {
        margin-top: -45px !important;
        margin-left: -40px;
    }
    .center-card {
        width: 435px;

    }
    .side-img {
        width: 125%;
        margin-left: -12px;
        margin-top: 36px;
    }

}

/* iPad mini landscape */
@media (min-width: 700px) and (max-width: 820px) and (min-height: 900px) and (orientation: landscape) {
    .main-product-img {
        margin-top: -35px !important;
        margin-left: -15px;
    }
    .center-card {
        width: 420px !important;
        height: 240px;
    }
}

/* iPhone 14 Pro Max landscape */
@media (min-width: 920px) and (max-width: 950px) and (max-height: 450px) and (orientation: landscape) {
    .main-product-img {
        margin-top: -30px !important;
        margin-left: 0px;
    }
    .center-card {
        width: 400px !important;
    }
    .side-img {
        width: 145px;
        margin-top: 20px;
        margin-left: -40px;
    }
    .side-card-left {
        width: 156px !important;
    }
    .side-card-right {
        width: 163px !important;
    }
}

/* Samsung Galaxy S8+ landscape */
@media (min-width: 700px) and (max-width: 780px) and (max-height: 380px) and (orientation: landscape) {
    .main-product-img {
        margin-top: -35px !important;
        margin-left: -22px;
    }
    .center-card {
        width: 360px !important;
        height: 245px;
    }
    .side-img {
        width: 90px;
        margin-top: 20px;
        margin-left: -4px;
    }
}

/* Surface Duo landscape */
@media (min-width: 600px) and (max-width: 900px) and (min-height: 520px) and (max-height: 580px) and (orientation: landscape) {
    .main-product-img {
        margin-top: -42px !important;
        margin-left: -18px;
        width: 108%;
    }
    .center-card {
        width: 420px !important;
        height: 230px;
    }
    .side-img{
        margin-left: -6px;
    }
}

.btn-meru {
    background: linear-gradient(90deg, #3E3A39, #614C39);
    border: none;
    color: #fff;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-meru:hover {
    opacity: 0.9;
    color: #fff;
}

.arrow-p {
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    user-select: none;
    padding: 10px 25px;
    color: #886531;
    transition: 0.2s;
    margin-left: -30px;
}

.arrow-p:hover {
    color: #F1D895;
    transform: scale(1.2);
}

@media (min-width: 768px) and (max-width: 991px) {
    .best-product-title {
        font-size: 38px;
    }

    .best-product-subtitle {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .best-product-title {
        font-size: 28px;
    }

    .best-product-subtitle {
        font-size: 18px;
    }
}
/*end best product*/

/*start best produk sweeper*/
.swiper {
    width: 100%;
    padding: 80px 0;
}

.swiper-slide {
    height: 460px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.slide-card {
    width: 275px;
    height: 335px;
    border: 3px solid #d6b37c;
    border-radius: 22px;
    padding: 35px 28px;
    box-sizing: border-box;
    background: linear-gradient(180deg,
        #f2f2f2 0%,
        #ffffff 45%,
        #ffffff 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    transition:
        transform 0.5s ease,
        opacity 0.5s ease;
}

.slide-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-bottom: 18px;
}

.slide-card p {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    margin: 12px 0 0;
}

.card-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.swiper-slide-active .slide-card {
    transform: scaleY(1.18);
}

.slide-card p {
    font-size: 15px;
    color: #333;
    margin: 0;
}

.swiper-slide-active .slide-card {
    transform: scaleY(1.18);
    opacity: 1;
}

.slide-card {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
    .swiper {
        padding: 40px 0;
    }
    .swiper-slide {
        height: 320px;
    }
    .slide-card {
        width: 200px;
        height: 190px;
        padding: 20px 16px;
    }
    .swiper-slide-active .slide-card {
        transform: none;
    }
    .slide-card img {
        width: 100%;
        height: auto;
        object-fit: contain;
        margin-bottom: 10px;
    }
    .slide-card p {
        font-size: 13px;
    }
}

/* ================= iPAD MINI / TABLET ================= */
@media (min-width: 600px) and (max-width: 1199px) {
    .swiper-slide {
        height: 400px;
    }
    .slide-card {
        width: 250px;
        height: 320px;
        padding: 28px 24px;
    }
    .slide-card img {
        height: 160px;
        width: 100%;
        object-fit: contain;
    }
    .swiper-slide-active .slide-card {
        transform: none;
    }
}

/* Foldable / Surface Duo hard fix */
@media (min-width: 540px) and (max-width: 900px) and (max-height: 900px) {
    .swiper-slide {
        height: 400px;
    }
    .slide-card {
        width: 250px;
        height: 350px;
        padding: 28px 24px;
    }
    .slide-card img {
        height: 160px;
        width: 100%;
        object-fit: contain;
    }
    .swiper-slide-active .slide-card {
        transform: none;
    }
}

.swiper-wrapper-mobile {
    display: block;
}

.product-wrapper-desktop {
    display: none;
}

@media (min-width: 1200px) {
    .swiper-wrapper-mobile {
        display: none;
    }

    .product-wrapper-desktop {
        display: block;
    }
}
/*end best product sweeper*/

/*start banner bottom*/
.banner-bottom {
    padding-left: 40px;
    padding-right: 40px;
}

.banner-bottom img {
    width: 100%;
    height: auto;
}

.banner-mobile {
    display: none;
}

@media (max-width: 767px) {
    .banner-desktop {
        display: none;
    }
    .banner-mobile {
        display: block;
    }
}

/*end banner bottom*/

/*start vision mision*/
.mission{
    margin-top:-20vh;
}

.vision-mission-section {
    padding-top: 0px;
    padding-bottom: 0px;

}

.vision-img {
    width: 100%;
    border-radius: 50% / 40%;
    object-fit: cover;
}

.mission-img {
    width: 100%;
    border-radius: 50% / 40%;
    object-fit: cover;
    display: block;
}

.vission-div{
    width:30%!important;
}


.vm-title {
    font-weight: 700;
    color: #3E3A39;
    margin-bottom: 12px;
}

.vm-text {
    font-size: 16px;
    color: #555;
    max-width: 467px;

}

@media (min-width: 768px) and (max-width: 991px) {
    .vision-img {
        width: 100%;
    }

    .vision-text-block {
        margin-left: 0vh;
        padding-left: 0;
    }

    .mission-img {
        width: 85%;
        margin-left: 0;
    }

    .mission-block {
        margin-top: -8vh;
    }

    .mission-text-block {
        text-align: right;
        padding-right: 0;
        margin-top: 3vh;
    }
    .vm-title{
        text-align: left;
    }
    .vm-text {
        font-size: 15px;
        max-width: 100%;
        text-align: left;
    }
}

@media (max-width: 767px) {
    .vision-img,
    .mission-img {
        width: 100%;
        margin: 0 auto 20px auto;
        display: block;
    }

    .vision-text-block {
        margin-left: 0;
        padding: 0;
        text-align: center;
    }

    .mission-block {
        margin-top: 40px;
    }

    .mission-text-block {
        text-align: center;
        padding: 0;
    }

    .vm-title {
        text-align: center;
    }

    .vm-text {
        text-align: center !important;
        float: none !important;
        font-size: 14px;
        max-width: 100%;
        margin: 0 auto;
        padding: 15px;
    }
}
/*end vision mision*/

/*start footer*/
.meru-footer {
    background: linear-gradient(to bottom, #F6E5B9F7, #D3BC91FB);
}

.meru-footer a {
    color: #3E3A39;
    text-decoration: none;
}

.footer-top {
    padding-left: 120px;
    padding-right: 120px;
}

@media (max-width: 767px) {
    .footer-top {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.footer-title {
    font-weight: 700;
    color: #3E3A39;
    margin-bottom: 12px;
}

.footer-line {
    border-top: 1px solid black;
    opacity: .7;
}

.footer-input {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.25);
    border-radius: 6px;
    padding: 10px 14px;
    color: #3E3A39;
    backdrop-filter: blur(2px);
}

.footer-input::placeholder {
    color: rgba(0, 0, 0, 0.45);
}

.footer-subscribe-btn {
    background: #6A5432;
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
}

.footer-icon {
    font-size: 26px;
    color: #3E3A39;
    cursor: pointer;
}

.footer-icon:hover {
    color: #000;
}

.footer-bottom {
    background: #3A3532;
}

.footer-logo {
    width: 170px;
    height: auto;
}

@media (min-width: 768px) and (max-width: 991px) {
    .footer-top {
        padding-left: 40px;
        padding-right: 40px;
    }

    .footer-top .col-md-3.ps-0 {
        padding-left: 0 !important;
        text-align: left;
    }

    .footer-title {
        font-size: 1rem;
    }

    .meru-footer p,
    .meru-footer a {
        font-size: 0.9rem;
    }

    .footer-top .col-md-6.ps-0 {
        padding-left: 0 !important;
    }

    .footer-top .d-flex.gap-2 {
        flex-wrap: wrap;
    }

    .footer-input {
        width: 100% !important;
    }

    .footer-subscribe-btn {
        width: 100%;
    }

    .footer-top .col-md-6.text-md-end {
        text-align: left !important;
        margin-top: 30px;
    }

    .footer-top .justify-content-md-end {
        justify-content: flex-start !important;
        gap: 20px !important;
    }
}

@media (max-width: 767px) {
    .footer-subscribe-btn {
        padding: 6px 14px;
        height: 36px;
        font-size: 0.85rem;
        width: auto;
    }

    .footer-input {
        height: 36px;
        width: auto;
    }

    .meru-footer .d-flex img {
        width: 22px;
        height: auto;
    }

    .meru-footer .d-flex {
        gap: 20px !important;
    }

    .footer-bottom {
        font-size: 0.75rem;
        line-height: 1.4;
    }

    .footer-logo {
        width: 120px;
        margin-left: 12px;
    }

    .footer-title {
        font-size: 16px !important;
    }

    .text-white {
        padding: 5px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .footer-subscribe-btn {
        padding: 7px 16px;
        height: 38px;
        font-size: 0.9rem;
        width: auto;
    }
    .footer-input {
        height: 38px;
        width: 500px;
    }
}
/*end footer*/
/*end index*/


/*start products*/
.product-img-wrap {
    display: block;
    overflow: hidden;
}

.product-img {
    transition: transform 0.6s ease;
}


.product-card-single:hover .product-img {
    animation: shakeZoom 0.6s ease-in-out;
}

@keyframes shakeZoom {
    0% {
        transform: scale(1) rotate(0deg);
    }
    20% {
        transform: scale(1.05) rotate(-1deg);
    }
    40% {
        transform: scale(1.05) rotate(1deg);
    }
    60% {
        transform: scale(1.05) rotate(-1deg);
    }
    80% {
        transform: scale(1.05) rotate(1deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
}
.check-all-text {
    font-size: 13px;
    cursor: pointer;
    color: #666;
    user-select: none;
}

.check-all-text:hover {
    color: #000;
    text-decoration: underline;
}
.product-list-section {
    background: #fff;
}

.filter-box {
    font-size: .9rem;
}

.filter-title {
    font-weight: 600;
}

.filter-group h6 {
    font-weight: 600;
    margin-bottom: .5rem;
}

.active-filter {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-chip {
    background: #c9a96a;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: .8rem;
}

.clear-all {
    font-size: .8rem;
    color: #c9a96a;
    text-decoration: underline;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.product-card-single {
    background: #fbf6eb;
    border-radius: 14px;
    height: 100%;
}

.product-card-single {
    width: 230px;
    height: 100%;
    border-radius: 22px;
    padding: 25px;
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

.product-card-single a {
    text-decoration: none;
    color: black;
}


.product-category {
    color: #999;
    font-size: 0.7rem;
    text-transform: capitalize!important;
}

.product-title {
    font-size: .95rem;
    font-weight: 600;
    margin: 5px 0;

}

.rating {
    font-size: .8rem;
    color: black;
    font-weight: bold;
}

.price {
    font-weight: 600;
    color: #c9a96a;
}

@media (max-width: 767.98px) {
    .filter-title {
        font-weight: 600!important;
        font-size: 18px!important;
    }

    .filter-box-outside {
        padding: 5vh !important;
        margin-top: -5vh !important;
    }

    body {
        overflow-x: hidden;
    }

    .product-list-section .row {
        margin-left: 0;
        margin-right: 0;
    }

    .product-list-section .col-lg-2,
    .product-list-section .col-lg-10,
    .product-list-section .col-sm-6 {
        padding-left: 12px;
        padding-right: 12px;
    }

    .filter-box {
        background: #fbf6eb;
        padding: 16px;
        border-radius: 12px;
        margin: 0 auto 20px auto;
        max-width: 100%;
    }

    .product-list-section .col-sm-6 {
        display: flex;
        justify-content: center;
    }

    .product-box-outside {
        padding: 5vh !important;
        margin-top: -8vh !important;
    }

    .product-card-single {
        width: 100%;
        max-width: 320px;
        padding: 14px;
    }

    .product-title {
        font-size: .85rem;
    }

    .product-category {
        font-size: .8rem;
    }

    .price {
        font-size: .9rem;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {

    .product-list-section .row {
        margin-left: 0;
        margin-right: 0;
    }

    .product-list-section .col-lg-2,
    .product-list-section .col-lg-10,
    .product-list-section .col-sm-6 {
        padding-left: 12px;
        padding-right: 12px;
    }

    .product-list-section .col-lg-2 {
        width: 100%;
    }

    .filter-box {
        max-width: 100%;
        margin: 0 auto 24px auto;
        padding: 18px;
    }

    .product-list-section .col-lg-10 {
        width: 100%;
    }

    .product-list-section .col-sm-6 {
        display: flex;
        justify-content: center;
    }

    .product-card-single {
        width: 100%;
        max-width: 300px;
        padding: 16px;
    }

    .product-title {
        font-size: .9rem;
    }

    .product-category {
        font-size: .85rem;
    }

    .price {
        font-size: .95rem;
    }

    body {
        overflow-x: hidden;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .product-list-section .col-lg-2,
    .product-list-section .col-lg-10 {
        width: 100%;
    }

    .filter-box {
        max-width: 100%;
        margin-bottom: 24px;
    }


    .product-card-single {
        width: 100%;
        max-width: 100%;
        height: 100%;
    }

    .side-card-left,
    .side-card-right,
    .mission-text-block {
        margin-left: 0 !important;
        margin-right: 0 !important;

    }

    body {
        overflow-x: hidden;
    }
}


.filter-header {
    cursor: pointer;
}

.filter-toggle i {
    font-size: 18px;
    transition: transform .3s ease;
}


.filter-content {
    overflow: hidden;
}

@media (max-width: 1199.98px) {

    .filter-content {
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: all .35s ease;
    }

    .filter-box.active .filter-content {
        max-height: 600px;
        opacity: 1;
        margin-top: 10px;
    }

    .filter-box.active svg,
    .filter-box.active .filter-toggle i {
        transform: rotate(180deg);
    }
}


@media (max-width: 991.98px) {
    .filter-content {
        max-height: 0;
        opacity: 0;
        transition: all .35s ease;
    }

    .filter-box.active .filter-content {
        max-height: 600px;

        opacity: 1;
        margin-top: 10px;
    }

    .filter-box.active .filter-toggle i {
        transform: rotate(180deg);
    }
}

/*end products*/

/*start product detail sox*/
/*banner*/
.banner-sox img {
    width: 100%;
    height: auto;
    display: block;
}

/*quote box*/
.quote-box {
    max-width: 880px;
    background: #F1E7CD;
    padding: 40px 70px;
    position: relative;
}


.quote-mark {

    font-size: 35px;
    line-height: 1;
    font-weight: 700;
    color: #222;
}
.quote-box p {
    margin: 0;
    font-size: 17px;
    line-height: 1.7;
    padding-left: 60px;
}

@media (max-width: 991px) {

    .quote-box {
        padding: 24px 20px;
    }

    .quote-box p {
        font-size: 14px;
        line-height: 1.6;
        padding-left: 0;
        text-align: justify;
    }

    .quote-mark {
        font-size: 26px;
    }

}
/*start three product*/
/*three images*/
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

.outer-three-images {
    margin-top: -100px;
    max-width: 1237px;
}

.three-images {
    width: 50% !important;
}


.product-editorial {
    padding-top: 50px;
    padding-bottom: 50px;
}

.editorial-images-grid {
    display: grid;
    grid-template-columns: 0.75fr 0.42fr 0.42fr;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
    height: 460px;
}

.img-main {
    grid-row: 1 / span 2;
    grid-column: 1;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff;
    border-radius: 26px;
}

.img-side {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff;
    border-radius: 20px;
}

.img-side-top {
    grid-column: 2;
    grid-row: 1;
}

.img-side-bottom {
    grid-column: 3;
    grid-row: 2;
}

/* TEXT */
.feature-list {
    max-width: 1002px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 13px;
    padding-top: 101px;
}

.feature-item {
    gap: 20px;
}


@media (max-width: 991px) {
    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: block;
    }
}

@media (max-width: 991px) {


    .col-lg-6.d-flex.align-items-center {
        padding-left: 20px;
        padding-right: 20px;
        margin-top: 0 !important;
    }

    .feature-item p {
        font-size: 14px;
        line-height: 1.6;
    }

    .feature-list {
        width: 100%;
        padding: 25px;
    }

}

.img-mobile {
    width: 100%;
    max-height: 420px;
    object-fit: contain;
    background: #fff;
    border-radius: 24px;
}

/*start benefict section*/
.benefit-section {
    background: #fff;
    padding: 10px 20px;
}

.benefit-inner {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.benefit-subtitle {
    font-size: 24px;
    color: #777;
    margin-bottom: 6px;
}

.benefit-title {
    font-size: 50px;
    font-weight: 600;
    color: #3e3a39;
    margin-bottom: 60px;
}

.benefit-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    margin-top: -50px;
}

.product-image img {
    width: 100%;
    height: auto;
}

.product-info {
    text-align: left;
    font-size: 50px;
}

.product-info h3 {
    font-size: 30px;
    font-weight: 600;
    color: #3e3a39;
    margin-bottom: 18px;
}

.product-info span {
    font-weight: 400;
    font-size: 16px;
}

@media (max-width: 991px) {


    .product-image img {
        width: 180px;
    }

    .product-box img {
        width: 140px;
    }
}

@media (max-width: 991px) {
    .benefit-content {
        flex-direction: column;

        gap: 0px;
    }

    .product-info {
        text-align: center;
        margin-top: -45px;
    }

    .benefit-title {
        font-size: 28px;
    }

    .product-image img {
        width: 100%;
        height: auto;
    }
    .last-info{
        margin-top: 0px!important;
    }

}
@media (max-width: 991px) {
    .triple-image {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .image-card {
        height: auto;
    }
}

/*3 box images composition*/
/*3 box image*/
.triple-image-section {
    width: 100%;
    margin: 0;
}

.triple-image-section-intimate {
    width: 100%;
    margin: 0;
}

@media (min-width: 992px) {
    .triple-image-section-intimate {
        margin-top: -160px;
    }
}

.triple-image {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    width: 100vw;
}

.image-card {
    position: relative;
    overflow: hidden;
}

.image-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

@media (max-width: 991px) {
    .triple-image {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .image-card {
        height: auto;
    }
}

.btn-gradient {
    background: linear-gradient(90deg, #3E3A39, #614C39);
    color: #fff;
    border: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-gradient:hover {
    background: linear-gradient(90deg, #614C39, #3E3A39);
    color: #fff;
}
/*end product detail sox*/

/*start product detail wear intimate*/
.quote-box-intimate {
    max-width: 1100px;
    background: #F1E7CD;
    padding: 40px 70px;
    position: relative;
    text-align: center;
}

.three-in-one-image{
    display: block;
    max-width: 100%;
    height: auto;
}
/*end product detail wear intimate*/


/*start product flex dekker*/
/*three images*/
.triple-image-section-top {
    width: 100%;
    margin: 0;
    margin-top: -90px;
}
.triple-image-section img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* LEFT IMAGE */
.left-image {
    height: 520px;
    border-radius: 24px;
    overflow: hidden;

    display: flex;
    justify-content: center;
    align-items: center;
}


/* RIGHT IMAGE & TEXT SHIFT (DESKTOP ONLY) */
@media (min-width: 992px) {

    .right-top-image,
    .right-text {
        transform: translateX(-80px);
        margin-left: -50px;
    }
}



/* RIGHT TOP IMAGE */
.right-top-image {
    height: 240px;
    border-radius: 24px;
    overflow: hidden;
}

/* TEXT AREA */
.right-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* default = desktop */
.right-text {
    padding: 0;
}

/* mobile only */
@media (max-width: 991.98px) {
    .right-text {
        padding: 16px 18px;
    }
}

.right-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #111;
}

.right-text span {
    font-size: 14px;
    color: #777;
    font-weight: 500;
}

/* DESKTOP HEIGHT MATCHING */
@media (min-width: 992px) {
    .triple-image-section .row {
        min-height: 520px;
    }

    .left-image {
        height: auto;
    }

    .right-top-image {
        height: auto;
    }
}

.right-top-image {
    height: auto;

}

.right-text {
    margin-top: 20px;
}


/* default = mobile & tablet */
.right-col-shift {
    margin-left: 0;
}

/* desktop only */
@media (min-width: 992px) {
    .right-col-shift {
        margin-left: 0px;
    }
}

/* ipad mini / air */
@media (min-width: 768px) and (max-width: 820px) {
    .right-top-image {
        height: auto;
        margin-left: 102px;
    }
}

@media (width: 1024px) and (height: 1366px) and (orientation: portrait) {
    .right-col-shift {
        margin-left: 0px;
    }

    .left-image {
        height: auto;
        margin-left: -55px;
    }

}

@media (width: 912px) and (height: 1368px) and (orientation: portrait) {
    .right-top-image {
        height: auto;
        margin-left: 100px;
    }
}

@media (width: 853px) and (height:1280px) and (orientation: portrait) {
    .right-top-image {
        height: auto;
        margin-left: 85px;
    }
}

/* Nest Hub Max */
@media (min-width: 1000px) and (max-width: 1030px) and (min-height: 580px) and (max-height: 620px) {
    .left-image {
        height: auto;
        margin-left: -60px;
    }

    .right-col-shift {
        margin-left: 0px;
    }
}

/* Nest Hub Max */
@media (min-width: 1200px) and (max-width: 1280px) and (max-height: 800px) {
    .right-col-shift {
        margin-left: 0px;
    }

}

/* DEFAULT = MOBILE */
.left-image,
.right-top-image {
    margin-left: auto;
    margin-right: auto;
}

.right-text {
    text-align: left;
}

/* DESKTOP ONLY */
@media (min-width: 992px) {
    .left-image {
        margin-left: 0;
    }

    .right-top-image {
        margin-left: 0;
    }
}


/* =====================
MOBILE (DEFAULT)
===================== */
.left-image,
.right-top-image {
    margin-left: auto;
    margin-right: auto;
}

.right-text {
    text-align: center;
}

/* =====================
DESKTOP ONLY
===================== */
@media (min-width: 992px) {

    .left-image,
    .right-top-image {
        margin-left: 0;
        margin-right: 0;
    }

    .right-text {
        text-align: left;
        margin-left: 0px;
    }
}
.product-info-dekker h3 {
    font-size: 30px;
    font-weight: 600;
    color: #3e3a39;
    margin-bottom: 18px;
}
@media (max-width: 991px) {
    .product-info-dekker {
        text-align: center;
        margin-top: -10px;
        font-size: 50px;
    }
}
/*end product flex dekker*/

/*start product belt*/
.product-feature-section {
    margin-top: 50px;
}
/*three images*/
/* IMAGE COMMON */
.feature-image,
.feature-image-large {
    border-radius: 28px;
    overflow: hidden;
}

.feature-image img,
.feature-image-large img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* RIGHT IMAGE (HEIGHT MASTER) */
.feature-image-large {
    height: 595px;
    max-width: 460px;
    padding: 10px;
}

/* LEFT COLUMN WRAPPER */
.left-col-inner {
    height: auto;
    max-width: 420px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* LEFT IMAGE */
.feature-image {
    height: auto;
}

/* TEXT */
.feature-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 14px;
}

.feature-text span {
    font-size: 14px;
    color: #777;
}

/* default = desktop */
.feature-text {
    padding: 0;
}

/* mobile only */
@media (max-width: 991.98px) {
    .feature-text {
        padding: 16px 18px;
    }
}

/* default = mobile */
.justify-desktop-right {
    justify-content: center !important;
}

.justify-desktop-left {
    justify-content: center !important;
}

/* desktop only */
@media (min-width: 992px) {
    .justify-desktop-right {
        justify-content: flex-end !important;
    }


    .justify-desktop-left {
        justify-content: flex-start !important;
    }
}

.benefit-section-belt {
    background: #fff;
    padding: 10px 20px;
    margin-top: 50px;
}
/*end product belt*/

/*start product nano can*/
/*animation*/
.hero-section-nano {
    height: 530px;
    background: linear-gradient(90deg,
        #F6E5B9 0%,
        #D5BE93 50%,
        #B1946A 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-inner {
    position: relative;
    width: 100%;
    max-width: 1600px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    display: flex;
    justify-content: center;
    pointer-events: none;
    z-index: 3;
}

.hero-animation-nano {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: flex-end;
    margin-bottom: -47px;
}

.hero-content-nano {
    flex: 1;
    max-width: 1020px;
    text-align: left;
}

.hero-content-nano h1 {
    font-size: clamp(32px, 5vw, 6rem);
    font-style: italic;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.08;
}

.hero-subtitle {
    margin-top: 18px;
    font-size: 1.05rem;
    color: #2f2f2f;
}

.hero-content-nano p {
    margin-top: 18px;
    font-size: 1.05rem;
    color: #2f2f2f;
}

.hero-product {
    right: 41%;
    top: 43px;
    height: 134%;
    z-index: 2;
    width: 20%;
}

@media (min-width: 991px) and (min-height: 700px) {
    #lottieAnim {
        width: 100%;
        max-width: 520px;
    }
}

@media (max-width: 768px) {
    .hero-section-nano {
        height: 375px;
    }

    .hero-animation-nano {
        margin-bottom: -34px !important;
    }

    .hero-text {
        width: 85%;
    }

    .hero-content-nano h1 {
        font-size: 30px;
        font-style: italic;
        font-weight: 500;
        color: #ffffff;
        line-height: 1.08;
    }

    .hero-subtitle {
        margin-top: 18px;
        font-size: 1.05rem;
        color: #2f2f2f;
    }
}

@media (max-width: 991px) {
    .hero-animation-nano {
        margin-top: 62px;
        margin-left: 43px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {

    #lottieAnim {
        width: clamp(300px, 42vw, 500px);
        max-height: 360px;
    }

    .hero-section-nano {
        overflow: hidden;
        height: 350px;
    }

    .hero-text {
        justify-content: center;
        padding: 0 24px;
    }

    .hero-content-nano {
        max-width: 720px;
        text-align: center;
    }

    .hero-content-nano h1 {
        font-size: 35px;
        font-style: italic;
        font-weight: 500;
        color: #ffffff;
        line-height: 1.08;
    }

    .hero-subtitle {
        margin-top: 18px;
        font-size: 1.05rem;
        color: #2f2f2f;
    }
}

/* iPad Pro (11" & 12.9") */
@media (min-width: 1024px) and (max-width: 1366px) and (max-height: 1024px) {

    .hero-content-nano h1 {
        font-size: 30px;
    }

    .hero-content-nano {
        text-align: center;
        max-width: 800px;
    }
}

/* Foldable / Surface Duo hard fix */
@media (min-width: 540px) and (max-width: 900px) and (max-height: 900px) {

    #lottieAnim {
        width: 70% !important;
    }

    .hero-animation-nano {
        margin-bottom: -30px !important;
    }

    .hero-section-nano {
        height: 400px;
        overflow: hidden;
    }
}

/* Google Nest Hub */
@media (min-width: 960px) and (max-width: 1100px) and (max-height: 650px) {

    #lottieAnim {
        width: clamp(260px, 40vw, 360px);
        max-height: 375px;
    }

    .hero-section-nano {
        height: 420px;
        overflow: hidden;
    }

    .hero-animation-nano {
        margin-bottom: 0 !important;
    }

    .hero-content-nano h1 {
        font-size: 32px;
        text-align: center;
    }

    .hero-content-nano {
        text-align: center;
    }
}
/*start percentage*/
.percentage {
    background-color: #F1E7CD;
    border-radius: 10px;
}


.stat-inner {
    position: relative;
    display: inline-block;
    padding-left: 14px;
}


.stat-inner::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 2px;
    height: 50px;
    background-color: #B1946A;
}

/*start information*/


.btn-gradient {
    background: linear-gradient(90deg, #3E3A39, #614C39);
    color: #fff;
    border: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-gradient:hover {
    background: linear-gradient(90deg, #614C39, #3E3A39);
    color: #fff;
}


/*end product nano can*/


/*start product ionic*/
.image-card22 {
    max-width: 320px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
}

.twobox-image{
    margin-top:-8vh;
}
/*end product ionic*/

/*start deals*/
/*banner*/
.banner-deals img {
    width: 100%;
    height: auto;
    display: block;
}

/*end deals*/


/*start updates*/
.main-news-card:hover img {
    animation: imgShake 0.6s ease-in-out;
}
.side-news-item:hover .side-thumb {
    animation: imgShake 0.5s ease-in-out;
}
.event-card:hover img {
    animation: imgShake 0.5s ease-in-out;
}
.hall-item:hover img {
    animation: imgShake 0.5s ease-in-out;
}
.main-news-card img,
.event-card img,
.hall-thumb img {
    transform-origin: center center;
    will-change: transform;
}

/*breadcumb*/
@media (max-width: 767.98px) {

    .filter-title-updates {
        font-weight: 600 !important;
        font-size: 13px !important;
    }

    .filter-box-outside-updates {
        padding: 5vh !important;
        margin-top: -5vh !important;
        margin-bottom: -5vh !important;
    }

    .filter-box-updates {
        background: #fbf6eb;
        padding: 16px;
        border-radius: 12px;
    }

    .filter-content-updates a {
        font-size: 15px;
        padding: 6px 0;
    }

}

.filter-toggle-updates i {
    transition: transform .3s ease;
}

.filter-toggle-updates i.rotate {
    transform: rotate(180deg);
}

/*news*/
.section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.section-header span {
    font-weight: 600;
    white-space: nowrap;
}

.section-header::before {
    content: "";
    height: 2px;
    flex-shrink: 0;
}

.section-header::after {
    content: "";
    height: 2px;
    flex-grow: 1;
}

.section-header.left::before {
    width: 40px;
    background: #b58b45;
}

.section-header.left::after {
    background: #ddd;
}

.section-header.right::before {
    width: 40px;
    background: #b58b45;
}

.section-header.right::after {
    background: #ddd;
}

.section-title {
    border-bottom: 2px solid #d2b48c;
    padding-bottom: 6px;
    margin-bottom: 20px;
}

.news-thumb,
.event-thumb,
.hall-thumb {
    border-radius: 6px;
}

.side-news-item {
    display: flex;
    gap: 12px;
    background: #fff;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 12px;
}

.side-news-item .thumb {
    width: 80px;
    height: 80px;
    background: #ddd;
    border-radius: 4px;
}

.side-news-item .number {
    background: #a86f1c;
    color: #fff;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 50%;
    display: inline-block;
    margin-bottom: 6px;
}

@media (max-width: 768px) {
    .news-thumb.big {
    }
    .main-news-card {
    }
}

/*news left*/
.main-news-card {
    border-radius: 6px;
    overflow: hidden;
}

.news-thumb.big {
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.news-thumb.big img {
    width: 100%;
    height: auto;
}

.main-news-content {
    padding: 20px;
}

.main-news-content h3 {
    margin-bottom: 6px;
}

.main-news-content-overlay {
    position: absolute;
    bottom: 25px;
    left: 0;
    right: 0;
    padding: 20px;
    color: black;
}

.main-news-content-overlay h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 4px;
}

.main-news-content-overlay span {
    font-size: 14px;
    opacity: 0.9;
}

@media (max-width: 768px) {

    .left-header {
        height: 250px;
    }

    .news-thumb.big img {
        width: 100%;
        height: auto;
    }

    .news-thumb.big {
        height: 351px !important;
        align-items: flex-start;
    }

    .main-news-content-overlay {
        top: 20vh;
    }

    .right-news-header {
        margin-top: 9vh;
    }

    .section-header {
        margin-bottom: 2vh;

    }
}

/* ipad mini / air */
@media (min-width: 768px) and (max-width: 820px) {
    .right-news-header {
        margin-top: 15vh;
    }

}

/* Nest Hub Max */
@media (min-width: 1200px) and (max-width: 1280px) and (max-height: 800px) {
    .main-news-content-overlay{
        bottom:66px;
    }
}
/* Google Nest Hub */
@media (min-width: 960px) and (max-width: 1100px) and (max-height: 650px) {
    .main-news-content-overlay{
        bottom:140px;
    }
}

/* Surface Pro 7 landscape (1368 x 912) */
@media (min-width: 1320px) and (max-width: 1400px) and (min-height: 880px) and (max-height: 960px) and (orientation: landscape) {
    .main-news-content-overlay{
        bottom:66px;
    }
}

@media only screen
and (min-width: 340px)
and (max-width: 360px)
and (orientation: portrait) {

    .main-news-content-overlay {
        top: 13vh;
    }
}

@media (min-width: 820px) and (max-width: 1180px) {
    .right-news-header {
        margin-top: 3vh;
    }
}
/* Foldable / Surface Duo hard fix */
@media (min-width: 540px) and (max-width: 900px) and (min-height: 600px) and (max-height: 720px) {
    .right-news-header {
        margin-top: 13vh;
    }

}


/* Surface Duo landscape */
@media (min-width: 600px) and (orientation: landscape) {
  .main-news-content-overlay {
    bottom: 8px;
  }
  .side-news-item
{
    height: 102px;
}
}
/*news right*/
.side-news-item {
    display: flex;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .08);
    overflow: hidden;
    margin-bottom: 16px;
    padding: 0;
    height: 147px;
}


.side-thumb {
    aspect-ratio: 4 / 3;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    flex-shrink: 0;
}

.side-number {
    position: absolute;
    bottom: 8px;
    left: 25px;
    width: 22px;
    height: 22px;
    background: #a86f1c;
    color: #fff;
    font-size: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.side-content {
    padding: 16px;
    display: flex;
    align-items: center;
    font-weight: bold;
}

@media (max-width: 767.98px) {
    .side-news-item {
        flex-direction: column;
        height: auto;
    }

    .side-thumb {
        width: 100%;
        height: auto;
        background-size: contain;
    }

    .side-content {
        padding: 12px 16px;
        align-items: flex-start;
    }

    .side-content p {
        margin: 0;
        font-size: 14px;
    }

    .side-thumb {
        border-radius: 6px 6px 0 0;
    }
}

/*ipad air -landscape*/
@media (min-width: 1024px) and (max-width: 1180px) and (orientation: landscape) {
    .side-content {
        padding: 0px;
        flex-wrap: wrap;
        margin-left: -1vh;
    }
}


/* iPad Air - Landscape */
@media screen
and (min-width: 1024px)
and (orientation: landscape) {

    .main-product-img{
        /*margin-left: -51px !important;*/
    }
    .hero-title{
        font-size: 2rem !important;
    }
}
/* iPad Mini - landscape */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .main-product-img{
        /* margin-left: -51px !important;*/
    }
    .hero-title{
        font-size: 2rem !important;
    }
}



/* ipad pro 11 */
@media (min-width: 821px) and (max-width: 900px) {
    .side-content {
        padding: 10px;
        margin-left: -17px;
    }

    .p-3 {
        margin-top: -2vh !important;
    }
}

/* ipad pro 12.9 */
@media (min-width: 901px) and (max-width: 1024px) {
    .side-content {
        padding: 10px;
        margin-left: -17px;
    }

    .p-3 {
        margin-top: -2vh !important;
    }
}

/*event*/
.event-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

/* thumbnail box */
.event-thumb {
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* image behavior */
.event-thumb img {
    width: 100%;
    height: auto;
}

.p-3 {
    margin-top: 0vh;
}

/* iPad Air */
@media (min-width: 820px) and (max-width: 1180px) {
    .p-3 {
        margin-top: 0vh !important;
    }
}

/* ipad mini / air */
@media (min-width: 768px) and (max-width: 820px) {
    .p-3 {
        margin-top: 0vh !important;
    }
}

/*hof*/
.hall-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    margin-bottom: 20px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #eee;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .06);
}

.hall-thumb {
    width: 400px;
    height: auto;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    overflow: hidden;
    margin: -20px;
}

.hall-thumb img {
    width: 100%;
    height: 100%;
}

.category {
    color: #a86f1c;
    font-size: 14px;
}

.page-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #ccc;
    background: transparent;
}

.page-btn.active {
    background: #a86f1c;
    color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

.hof-content {
    margin-left: 5vh;
    margin-top: 8vh
}

@media (max-width: 576px) {
    .hall-item {
        flex-direction: column;
    }

    .hall-thumb {
        width: 100%;
        height: 180px;
    }
}

@media (max-width: 768px) {
    .hall-item {
        flex-direction: column;
        padding: 0;
        overflow: hidden;
    }

    .hall-thumb {
        width: 100%;
        height: auto;
        margin: 0;
        border-radius: 0;
    }

    .hall-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hof-content {
        margin: 0;
        padding: 16px;
    }
}


/*end updates*/


/*start updates detail*/


.updates-title {
    font-size: 128px;
    font-weight: 400;
    font-family: 'Matchmaker', cursive !important;
}

.updates-subtitle {
    font-size: 36px;

}


/* IMAGE */
.article-image img {
    width: 100%;
    height: auto;
    border-radius: 0;
    margin-bottom: 40px;
}

/* CONTENT TEXT */
.article-content p {
    font-size: 15px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* SHARE ICONS */
.social-share {
    margin-top: 50px;
    margin-bottom: 40px;
}

.social-share a img {
    width: 32px;
    margin-right: 8px;
}

/* PREV NEXT */
.article-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin: 60px 0;
    font-size: 14px;
    font-weight: 500;
}

.article-nav span {
    cursor: pointer;
    color: #7a5328;
}

.article-nav .prev-btn,
.article-nav .next-btn {
    font-size: 16px;
}

.news-meta {
    font-weight: 300;
    font-size: 20px;
    color: #9F6B17 !important;
}


.article-title {
    font-weight: 600;
    font-size: 40px;
    color: #9F6B17 !important;
}

.posted-date {
    position: relative;
    padding-top: 25px;
}

.posted-date::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 4px;
    background: #C8C8C8;
    border-radius: 10px;
}



.prev-btn {
    color: #9F6B17 !important;
}

.space {
    display: inline-block;
    width: 50px;
}


.article-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
}


.article-social a img {
    width: 32px;
    margin-right: 8px;
}

.article-social a:last-child img {
    margin-right: 0;
}


.article-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
    font-weight: 500;
}

.article-nav span {
    cursor: pointer;
    color: #7a5328;
}

.prev-btn {
    color: #9F6B17 !important;
}


/* MOBILE & TABLET */
@media (max-width: 1024px) {

    .article-image,
    .article-content {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .article-image img {
        width: 100%;
        height: auto;
        display: block;
    }
}

@media (max-width: 576px) {
    .article-title {
        font-size: 28px;
    }

    .news-meta {
        font-size: 14px;
    }

    .posted-date {
        font-size: 13px;
    }
}



@media (min-width: 1025px) {
    .desktop-padding {
        padding-left: 125px !important;
        padding-right: 180px !important;
    }
}

@media (max-width: 768px) {
    .desktop-padding {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .article-bottom {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }


    .article-nav {
        order: 2;
        width: 100%;
        display: flex;

    }


    .article-social {
        order: 1;
        width: 100%;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
    }
}

/*end updates detail*/

/*start news*/
.img-responsive {
    width: 100%;
}
.img-zoom img {
    width: 100%;
    max-width: 300px;
    border-radius: 12px;
    cursor: zoom-in;
    transition: transform .3s ease;
}

.img-zoom img:hover {
    transform: scale(1.05);
}
.news-detail-card:hover .news-thumb img {
    animation: shake 0.6s ease-in-out;
    transform: scale(1.05);
}
.news-thumb {
    overflow: hidden;
}

.news-thumb img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}


.news-detail-card:hover .news-thumb img {
    animation: shake 0.6s ease-in-out;
}
.news-detail-card {
    transition: transform 0.3s ease;
}

.news-detail-card:hover img {
    animation: hoverShake 0.6s ease-in-out;
}

.news-title a {
    display: inline-block;
    transition: color 0.3s ease;
}

.news-title a:hover {
    animation: hoverShake 0.5s ease-in-out;
    color: #000;
}

.news-detail-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-detail-card .news-thumb {
    height: 220px;

}

.news-content {
    padding: 20px;
}

.news-date {
    font-size: 13px;
    color: #a86f1c;
}

.news-title {
    font-weight: 600;
    margin: 8px 0;
}

.news-desc {
    font-size: 14px;
    color: #555;
    margin-bottom: 0;
}


.news-title a {
    color: inherit;
    text-decoration: none;
}

.news-title a:hover {
    opacity: .85;
}

.page-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #ccc;
    background: transparent;
}

.page-btn.active {
    background: #a86f1c;
    color: #fff;
}

.news-detail-card .news-thumb {
    height: auto;
    overflow: hidden;
}

.news-detail-card .news-thumb img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

@media (max-width: 768px) {
    .news-detail-card .news-thumb img {
        object-fit: contain;
        height: auto;

    }

    .news-detail-card .news-thumb {
        height: auto;
    }
}


.news-detail-card .news-thumb img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/*end news*/


/*start contact*/
/*banner*/
.banner-contact img {
    width: 100%;
    height: auto;
    display: block;
}



/*tabs*/
.contact-btn {
    border: 1px solid #C9C9C9;
    padding: 8px 28px;
    border-radius: 30px;
    background: #ffffff;
    color: #000000;
    font-size: 15px;
    font-weight: 500;
    transition: 0.2s;
    width: 255px;
}
/* MOBILE */
@media (max-width: 576px) {
    .contact-btn {
        width: 100px;
        padding: 6px 10px;
        font-size: 12px;
        border-radius: 18px;
    }
}
.contact-btn:hover {
    background: #f6f6f6;
}

.contact-btn.active {
    background: linear-gradient(90deg, #3E3A39, #614C39);
    border: none;
    color: #fff;
}

.contact-tabs {
    margin-top: 10px;
}

.contact-indicator {
    width: 100px;
    height: 3px;
    background: #e3e3e3;
    border-radius: 10px;
    margin-top: 6px;
}

@media (max-width: 576px) {
    .contact-tabs {
        gap: 6px;
    }

    .contact-btn {
        padding: 5px 10px;
        font-size: 11px;
        border-radius: 16px;
        white-space: nowrap;
    }
}




/*contact*/
/* ICON */
.icon-box {
    width: 32px;
    height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-shrink: 0;
}

.icon-box img {
    width: 18px;
    height: auto;
}

/* TEXT */
.text-box strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #3E3A39;
    margin-bottom: 4px;
}

.text-box span {
    font-size: 14px;
    line-height: 1.5;
    color: #3E3A39;
}


.contact-plain {
    gap: 12px;
}

/* LOCATION BOX */
.contact-info-box {
    border: 1px solid #3E3A39;
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    gap: 16px;
    align-items: center;

    background: #fff;
}

/* MOBILE */
@media (max-width: 767.98px) {
    .contact-plain {
        justify-content: flex-start;
    }

    .text-box span {
        font-size: 13px;
    }
}

.contact-plain {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: fit-content;
}

.contact-plain {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #3E3A39;
}

.contact-plain:hover {
    text-decoration: none;
    opacity: 0.85;
}

/* pastiin text ikut warna */
.contact-plain strong,
.contact-plain span {
    color: inherit;
}

/*maps*/
.map-wrapper {
    border-radius: 24px;
    overflow: hidden;
    height: 500px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/*form*/

.contact-form-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px;


    box-shadow:
        0 2px 6px rgba(62, 58, 57, 0.25),
        0 8px 20px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.9),
        0 12px 30px rgba(246, 229, 185, 0.45);
}

.contact-form-card label {
    font-weight: 500;
    margin-bottom: 6px;
}

.contact-form-card .form-control {
    border-radius: 999px;
    padding: 12px 20px;
}



.contact-form-card textarea {
    border-radius: 20px;
}

.contact-form-card .btn {
    border-radius: 999px;
    padding: 14px 36px;
    font-weight: 600;
    letter-spacing: 0.3px;
}


@media (max-width: 768px) {
    .contact-title {
        font-size: 32px;
    }

    .contact-info-box {
        justify-content: flex-start;
    }
}



/*end contact*/