@import url(root.css);
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

.shadow-bottom-3 {
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2);
}
.navbar {
    padding: 0;
}
/* NEW */
.logo-brand img {
    height: 80px;
    object-fit: cover;
}
.logo-kata1,
.logo-kata2{
    font-family: "Roboto", sans-serif;
    color: rgba(var(--green),1);
}
.logo-kata1{
    font-size: 36px;
    font-weight: 600;
}
.logo-kata2{
    font-size: 16px;
    font-weight: 500;
}
.hero-images-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.hero-images {
    width: 100%;
    object-fit: cover;
}

/* OFF CANVAS */
.accordion-item {
    border: none !important;
    font-size: 1.1rem;
    padding: 5px 0;
}
.accordion-item span {
    margin-left: 5px;
}
/* END OF OFF CANVAS */
/* CARD */
.card-product {
    border: none !important;
    padding: 0 !important;
}
.card-product-body {
    padding: 10px 0 !important;
}
.container-images {
    position: relative;
    height: 450px;
    overflow: hidden;
}
.container-images img {
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.container-images video {
    height: 100%;
}
.preview-video {
    display: none;
    z-index: 2;
}
.preview-img {
    z-index: 1;
}
/* .wishlist-icon {
    position: absolute;
    font-size: 20px;
    top: 5px;
    right: 3px;
    padding: 10px;
    cursor: pointer;
}
.wishlist-icon a {
    text-decoration: none;
    color: black;
} */
.card-product-details {
    /* border: 1px solid black; */
    align-items: center;
    justify-content: center;
}
.card-product-details h6 {
    /* border: 1px solid black; */
    padding: 10px 0;
    margin: 0;
}
.card-product-details p {
    /* border: 1px solid black; */
    /* padding: 5px 0; */
    text-align: left;
    margin: 0;
}
.categories-badge {
    background-color: rgba(var(--green), 0.8);
    color: rgba(var(--white), 1);
    padding: 1px 7px;
    margin-right: 5px !important;
}
.new-arrival-badge {
    background-color: rgba(var(--btn-bg-theme), 1);
    color: rgba(var(--white), 1);
    padding: 1px 7px;
    margin-right: 5px !important;
}
.out-of-stock-badge {
    background-color: rgba(var(--maron), 1);
    color: rgba(var(--white), 1);
    padding: 1px 7px;
    margin-right: 5px !important;
}
.motives-badge,
.best-seller-badge {
    background-color: rgba(var(--grey), 1);
    color: rgba(var(--white), 1);
    padding: 1px 7px;
    margin-right: 5px !important;
}
/* END OF CARD */
/* FOOTER */
.logo-footer img {
    height: 300px;
    object-fit: cover;
}
.footer-icon  {
    display: flex;
}
.footer-icon a {
    margin: 0 15px 0 0;
    padding: 0 !important;
    font-size: 30px;
    transition: all 0.3s ease-in-out;
    color: rgba(var(--third-text), 1);
}

.footer-icon a img{
    width: 30px;
    margin-bottom: 10px;
}
.footer-icon a:hover {
    transform: scale(1.2);
    transition: all 0.3s ease-in-out;
    color: rgba(var(--main-text), 1);
}
.footer-address p {
    font-size: 18px;
}
.frame-custom iframe {
    width: 100%;
    height: 300px;
    border: none;
}

/* ABOUT */
.col-img {
    overflow: hidden;
}
.col-img img {
    border-radius: 8px;
}
.col-img img,
.col-img iframe {
    width: 100%;
    /* height: 100%; */
    /* object-fit: cover; */
    object-position: center;
}
.col-text p{
    font-size: 24px;
}
/* END OF ABOUT */


/* END OF NEW */
/* back-to-top */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 10px;
    border-radius: 50%;
    transition: all 0.2s ease-in-out;
    opacity: 0;
    transform: translateY(-50rem);
    border: none;
    z-index: 200;
}
.back-to-top.show {
    background-color: rgba(var(--sidebar-bg), 1);
    color: rgba(var(--white), 1);
    transition: all 0.2s ease-in-out;
    transform: translateY(0);
    opacity: 1;
    border: none;
}

.back-to-top:hover {
    background-color: rgba(var(--btn-bg-secondary), 1);
    color: rgba(var(--main-text), 1);
    border: 1px solid rgba(var(--main-text), 1);
    transition: all 0.2s ease-in-out;
}

.btn-contact-toggle {
    position: fixed;
    bottom: 15px;
    border-radius: 12px;
    right: 5px;
    z-index: 300;
    transition: all 0.2s ease-in-out;
    border: none;
}
.btn-contact-toggle i {
    background-color: rgba(var(--whatsapp), 1);
    color: rgba(var(--secondary-text), 1);
    border-radius: 50%;
    padding: 5px 12px;
}
.btn-contact-toggle:hover i {
    transition: all 0.2s ease-in-out;
    transform: scale(1.1);
}
.btn-contact-container {
    position: fixed;
    background-color: rgba(var(--secondary-bg), 1);
    bottom: 20px;
    border-radius: 12px;
    right: 5px;
    padding: 45px 15px 20px 15px;
    z-index: 300;
    transition: all 0.2s ease-in-out;
    border: none;
}
.btn-close {
    background-color: rgba(var(--secondary-text), 1);
    /* color: rgba(var(--secondary-text), 1); */
    border-radius: 50%;
    padding: 8px;
}
.btn-contact {
    background-color: rgba(var(--whatsapp), 1);
    color: rgba(var(--secondary-text), 1);
    border: 1px solid rgba(var(--white), 1);
    border-radius: 8px;
    align-items: center;
    transition: all 0.2s ease-in-out;
}
.btn-contact-toggle i,
.btn-contact i {
    font-size: 40px;
    margin-left: 10px;
}
.btn-contact:hover {
    transform: scale(1.1);
    background-color: rgba(var(--secondary-bg), 1);
    border: 1px solid rgba(var(--secondary-text), 1);
    transition: all 0.2s ease-in-out;
}
/* END OF back-to-top */

.btn-transparent {
    border : 1px solid rgba(var(--black), 0.5);
}
.btn-transparent:hover {
    border : 1px solid rgba(var(--black), 1);
}
.btn-transparent i {
    font-size: 20px;
}
.btn-transparent i:hover {
    font-size: 24px;
}

.btn-nav {
    background-color: rgba(var(--btn-bg-primary), 1);
    color: rgba(var(--btn-bg-secondary), 1);
    border: 1px solid rgba(var(--btn-bg-secondary), 1);
    transition: all 0.3s ease-in-out;
}
.btn-nav:hover {
    background-color: rgba(var(--btn-bg-secondary), 1);
    color: rgba(var(--btn-bg-primary), 1);
    border: 1px solid rgba(var(--btn-bg-primary), 1);
    transition: all 0.3s ease-in-out;
}
.btn-transparent, .btn-transparent i, .btn-transparent:hover, .btn-transparent i:hover, .btn-nav, .btn-nav:hover s{
    transition: all 0.3s ease-in-out;
}
.menu-thumbnail {
    width: 50px;
    height: 50px;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    overflow: hidden;
}

.btn-navbar {
    width: 300px;
    justify-content: end;
}

.navbar-background {
    /* background-color: rgba(var(--main-bg), 1); */
    transition: all 0.5s ease-in-out;
}

.nav-link {
    color: rgba(var(--navbar-text), 1);
}
.nav-link:hover {
    color: rgba(var(--hover-text), 1);
    transition: all 0.3s ease-in-out;
}

.navbar-nav .nav-link.show,
.navbar-nav,
.nav-link:focus {
    color: rgba(var(--active-text), 1) !important;
}
.nav-link.active.show {
    color: rgba(var(--white), 1) !important;
}
.nav-link.active {
    color: rgba(var(--secondary-text), 1) !important;
    padding: 5px 15px 6px 15px;
    background-color: rgba(var(--active-text), 1) !important;
}
/* .navbar-scrolled {
    background-color: rgba(var(--main-bg), 0.8);
    transition: all 0.5s ease-in-out;
} */

.dropdown a.show {
    color: rgba(var(--active-text), 1) !important;
}
.dropdown-menu-custom {
    max-height: 60vh;
    overflow-y: auto;
    overflow-x: hidden;
    margin-bottom: 10px;
    border: none;
}
/* Carousel HERO Image */

.carousel-indicators {
    bottom: 5px !important;
}
/* .carousel-caption { */
.carousel-item.carousel-container {
    max-height: 800px !important;
    /* overflow: hidden !important; */
    object-fit: cover;
    object-position: center;
}
.carousel-item.carousel-container img {
    width: 100% !important;
    /* height: 100% !important; */
    object-fit: cover;
    object-position: center;
}
.caption-1 {
    top: 30% !important;
    left: 35% !important;
    right: 35% !important;
    background-color: rgba(var(--main-bg), 0.8);
    color: rgba(var(--black), 0.6);
    height: fit-content;
    width: fit-content;
    border-radius: 8px;
}

.caption-1 h1 {
    font-size: 48px;
    font-weight: 700;
}

.caption-1 p {
    font-size: 20px;
    font-style: italic;
}

.caption-1 h1,
.caption-1 p
{
    padding-left: 10px;
    padding-right: 10px;
}
.caption-2 {
    bottom: 20% !important;
    background-color: rgba(var(--main-bg), 0.8);
    color: rgba(var(--black), 0.6);
    height: fit-content;
    width: fit-content;
    border-radius: 8px;
    right: 10% !important;
    left: auto !important;
    text-align: right;
    transform: none !important;
}

.caption-2 h3 {
    font-size: 24px;
    font-weight: 500;
}

.caption-2 h3,
.caption-2 p {
    padding-left: 10px !important;
    padding-right: 10px !important;
}
.caption-2 a {
    margin-right: 20px;
}
.caption-2 p {
    font-size: 48px;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 0;
}
/* Catalogue */
.catalogue {
    position: relative;
    z-index: 100;
    margin-top: -60px;
    border-radius: 12px;
}
.card-catalogue {
    overflow: hidden;
    border: 2px solid rgba(var(--navbar-text), 0.5);
}
/* .card-img-top {
    height: 400px;
    overflow: hidden;
}
.card-img-top img {
    height: 100%;
    object-fit: cover;
    object-position: center;
} */
.card-banner img {
    position: absolute;
    top: 0;
    right: 0;
    width: 25%;
    z-index: 2;
    transition: all 0.5s ease-in-out;
}
.search-text {
    color: rgba(var(--active-text), 1);
}
.play-button {
    font-size: 24px;
    cursor: pointer;
}
.price-text {
    color: rgba(var(--grey), 1);
    font-weight: 500;
}
.cat-text {
    color: rgba(var(--badge-bg-primary), 1);
}
.mot-text {
    color: rgba(var(--badge-bg-secondary), 1);
}
.mot-text:hover,
.cat-text:hover {
    color: rgba(var(--active-text), 1);
}
.cat-badge,
.mot-badge {
    width: fit-content;
}
.cat-badge {
    background-color: rgba(var(--badge-bg-primary), 1);
    color: rgba(var(--white), 1);
}
.mot-badge {
    background-color: rgba(var(--badge-bg-secondary), 1);
    color: rgba(var(--white), 1);
}
/* End of Catalogue */

/* DETAILS */
.details-container {
    margin-top: 50px;
}
.image-container {
    width: 100%;
    border-radius: 12px;
    object-fit: contain;
    object-position: center;
}
.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* IMAGE CAROUSEL */
.thumbnail-container {
    display: flex;
    overflow-x: auto;
    padding: 0.5rem 2.5rem; /* beri ruang di kiri-kanan untuk tombol */
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: grab;
}

.thumbnail-container::-webkit-scrollbar {
    display: none;
}
.img-thumbnail {
    height: 140px;
    cursor: pointer;
}
.video-thumbnail {
    min-width: 120px;
    background-color: rgba(var(--secondary-bg), 1);
    border: 3px solid rgba(var(--main-bg), 1);
    border-radius: 8px;
    margin-right: 1px;
    align-content: center;
    text-align: center;
    cursor: pointer;
    object-fit: cover;
    object-position: center;
}
.video-thumbnail i {
    width: 100px;
    color: rgba(var(--secondary-text), 1);
    font-size: 40px;
}
.btn-thumbnail {
    background-color: rgba(var(--btn-bg-primary), 1) !important;
    color: rgba(var(--white), 1);
    padding: 5px 10px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
.btn-thumbnail:hover {
    background-color: rgba(var(--btn-bg-secondary), 1) !important;
    color: rgba(var(--active-text), 1);
    border: 1px solid rgba(var(--btn-bg-primary), 1);
    transform: scale(1.1);
    transition: all 0.3s ease-in-out;
}
.price-text-detail {
    color: rgba(var(--active-text), 1);
    font-size: 20px;
    font-weight: 600;
    font-style: italic;

    /* pricetag */
    /* display: inline-block;

    width: auto;
	height: 38px;

	background-color: rgba(128, 128, 128, 0.3);
	-webkit-border-radius: 3px 4px 4px 3px;
	-moz-border-radius: 3px 4px 4px 3px;
	border-radius: 3px 4px 4px 3px; */

    /* This makes room for the triangle */
	/* margin-left: 19px;
	position: relative;
	font-weight: 300;
	line-height: 38px;
	padding: 0 10px 0 10px; */
}
/* .price-text-detail::before {
    content: "";
	position: absolute;
	display: block;
	left: -19px;
	width: 0;
	height: 0;
	border-top: 19px solid transparent;
	border-bottom: 19px solid transparent;
	border-right: 19px solid rgba(128, 128, 128, 0.3);
}

.price-text-detail::after {
    content: "";
	background-color: white;
	border-radius: 50%;
	width: 4px;
	height: 4px;
	display: block;
	position: absolute;
	left: -9px;
	top: 17px;
} */
/* END OF IMAGE CAROUSEL */
/* END OF DETAILS */


@media (min-width: 1920px) {
    .caption-1 {
        left: 40% !important;
        right: 35% !important;
    }
    .caption-2 {
        right: 15% !important;
    }
    .container-images {
        height: 600px;
    }
    .carousel-item.carousel-container {
        max-height: 1200px !important;
    }
}
@media (max-width: 1180px) {

    .location-media {
        padding-left: 0px !important;
        padding-right: 10px !important;
    }
    .container-images {
        height: 450px;
    }
    }

@media (max-width: 1024px) {
    .caption-1 {
        left: 28% !important;
        right: 25% !important;
    }
    .caption-1 h1 {
        font-size: 30px;
    }
    .caption-1 p {
        font-size: 20px;
    }
    .search-navbar {
        margin-bottom: 10px;
    }
    /* ABOUT */
    .col-text p{
        font-size: 18px;
    }
    /* END OF ABOUT */
}
@media (min-width: 992px) {
    .dropdown {
        position: static !important;
    }

    .dropdown-menu {
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
        margin-top: 0px !important;
        width: 100% !important;
    }
    .dropdown-menu.show {
        margin-top: 10px !important;
        padding: 10px;
        border: none !important;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .dropdown-item {
        color: rgba(var(--title-text), 0.5);
    }
    .dropdown-item:hover {
        color: rgba(var(--active-text), 1) !important;
    }
}

@media (max-width: 1496px) {
    .caption-1 {
        left: 35% !important;
        right: 30% !important;
    }
}

@media (max-width: 992px) {
    /* custom print */
    .custom-print-text h4 {
        font-size: 24px;
    }
    .custom-print-text h3 {
        font-size: 20px;
    }
    .custom-print-text p {
        font-size: 16px;
    }
    /* end of custom print */
    .btn-navbar {
        justify-content: start;
        margin-bottom: 20px;
    }
    .location-card {
        margin-top: 50px;
    }
}
@media (min-width: 768px) {
    .location-media {
        flex-direction: column;
        padding-bottom: 20px;
    }
    .container-images {
        height: 550px;
    }
}

@media (max-width: 768px) {
    /* carousel hero-image */
    .carousel-item.carousel-container {
        max-height: 400px !important;
    }
    .caption-1 {
        top: 25% !important;
        left: 25% !important;
        right: 25% !important;
        padding: 8px !important;
    }
    .caption-1 h1 {
        font-size: 24px;
    }
    .caption-1 p {
        font-size: 16px;
    }
    .caption-2 {
        bottom: 20% !important;
        right: 10% !important;
        padding: 10px !important;
    }
    .caption-2 h3 {
        font-size: 14px;
    }
    .caption-2 p {
        font-size: 28px;
    }
    .caption-2 a {
        margin-right: 10px;
    }
    .carousel-indicators button {
        width: 8px !important;
    }
    /* custom print */
    .custom-print {
        padding: 20px 16px 0px 16px;
    }
    /* location */
    .location-text {
        font-size: 20px;
    }
    .location-media {
        padding-bottom: 20px;
    }
    .location-media a {
        font-size: 16px;
    }
    .location-media i {
        font-size: 28px;
    }
    /* ABOUT */
    .col-text {
        margin-top: 20px;
    }
    .footer-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .footer-address {
        margin-top: 20px;
    }
    .footer-icon {
        display: flex;
        justify-content: space-between;
    }

    .frame-custom iframe {
        margin-top: 30px;
    }

    .container-images {
        height: 400px;
    }
}

@media (max-width: 540px) {
    .container-images {
        height: 650px;
    }
}
@media (max-width: 480px) {
    /* carousel hero-image */
    .carousel-item.carousel-container {
        max-height: 300px !important;
    }
    .carousel-item.carousel-container img {
        max-height: 300px !important;
    }
    .caption-1 {
        left: 28% !important;
        right: 25% !important;
        display: block !important;
        padding: 8px !important;
    }
    .caption-1 h1 {
        font-size: 18px;
        padding: 0px !important;
    }
    .caption-1 p {
        font-size: 8px;
        padding: 0px !important;
        margin: 0px !important;
    }
    .caption-2 {
        display: block !important;
        bottom: 25% !important;
        padding: 8px !important;
    }
    .caption-2 h3 {
        font-size: 10px;
        padding: 0px !important;
        margin: 0px !important;
    }
    .caption-2 p {
        font-size: 20px;
        padding: 0px !important;
        margin: 0px !important;
    }
    .caption-2 a {
        font-size: 10px;
        margin-right: 0 !important;
        padding: 2px 4px !important;
    }
    .container-images {
        height: 550px;
    }
    .location-media {
        flex-direction: row;
    }
}
