.fh {
    display: flex;
    flex-direction: row;
}

.fv {
    display: flex;
    flex-direction: column;
}

.p8 {
    padding: 8px;
}

.gap8 {
    gap: 8px;
}
.gap20 {
    gap: 20px;
}
.gap40 {
    gap: 40px;
}

.row20 {
	--bs-gutter-x: 20px;
	--bs-gutter-y: 20px;
}


.button-look {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 10px;
    background-color: #ffffff;
    border: 1px solid #CBAA64;
    border-radius: 50rem;
    text-transform: uppercase;
    color: #CBAA64 !important;
    transition: all 0.3s linear;
    overflow: hidden;
}
.button-look > img {
    width: 26px;
    height: 26px;
}
.button-look > span {
    display: none;
    font-size: 14px;
    text-wrap: nowrap;
}
.button-look:hover,
.button-look.show {
    width: 200px;
    background-color: #F9F9F9;
    border-color: #F9F9F9;
}
.button-look:hover span,
.button-look.show span {
    display: block;
}


.lookbook-card .dropdown-menu.show {
    display: flex;
    width: 320px;
    max-height: 360px;
    background-color: #fff;
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    border-radius: 8px;
}
.lookbook-card .dropdown-menu > div {
    overflow-y: auto;
    width: 100%;
}

.lookbook-product {
    display: flex;
    flex-direction: row;
    gap: 8px;
    width: 100%;
    padding: 8px;
}
.lookbook-product:hover {
    background-color: #F9F9F9;
}
.lookbook-product img {
    width: 78px;
    height: auto;
}
.lookbook-product .product_content > * {
    padding: 0;
    margin: 0;
}
.lookbook-product .product_content h3::before {
    display: none;
}
.lookbook-product-divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, #EBEBEB 30%, rgba(118, 118, 118, 0.5) 85%, rgba(0, 0, 0, 0) 100%);
}
.lookbook-card-carousel,
.lookbooks-card {
    position: relative;
    display: block;
    
}
.lookbook-card-carousel .card-title,
.lookbooks-card .card-title {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 8px;
    margin: 0;
    text-align: center;
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    color: #ffffff;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
}



.swiper-pagination {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}
.swiper-pagination-bullet {
    width: 9px !important;
    height: 9px !important;
    margin: 3px !important;
    border-radius: 50rem !important;
    border: 1px solid #CBAA64;
    background-color: #fff !important;
    overflow: hidden;
    opacity: 1 !important;
}
.swiper-pagination-bullet-active {
    width: 13px !important;
    height: 13px !important;
    margin: 1px !important;
    background-color: #CBAA64 !important;
}

.swiper-carousel-prev,
.swiper-carousel-next {
	width: 35px !important;
	height: 60px !important;
	opacity: 1 !important;
	padding: 0;
    transition: all 0.3s linear;
    background-position: center;
    background-color: #fff !important;
    opacity: 0.4 !important;
    color: #595959 !important;
    margin-top: -48px !important;
}
.swiper-carousel-prev{
	left: 0 !important;
	background-image: url('/img/arrow-left-60px.svg');
}
.swiper-carousel-next {
	right: 0 !important;
	background-image: url('/img/arrow-right-60px.svg');
}
.swiper-button-disabled {
    cursor: not-allowed !important;
    pointer-events: all !important;
}
.swiper-navigation-icon {
    display: none !important;
}