.product-card__thumb img { transition: transform 0.8s cubic-bezier(0.075, 0.82, 0.165, 1); }
.product-items:hover .product-card__thumb img { transform: scale(1.04); }

.container-fluid {
  width: 100%;
  padding-inline: 60px;
  margin: 0 auto;
}

.section--herobanner {
    min-height: 100vh;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    padding-bottom: 60px;
}

.section--herobanner .container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}
.subtitle, .section-title, .btn--primary {
    color: #fff;
}
.subtitle {font-size: 16px; }
.section-title { font-size: 20px; }

.subtitle, .section-title {
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.btn {
	 text-transform: uppercase;
	 padding: 15px 30px;
	line-height:1;
	font-size: 16px;
}

.btn--primary{
    color: #000;
    background-color: #fff;
	
	&:hover {
		background-color: #000;
		color: #fff;
	}
}

/* product slider section header */
.section-header {
    padding: 12px;
}
.section--product-slider {
	.section-header {
		margin: 40px 0 40px;
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	
	.slick-arrow {
		color: #fff;
	}
} 

.section-header__arrows {
    display: flex;
    align-items: center;
    gap: 24px;
}   
.product-items {
    width: calc((100% - 30px) / 3);
    min-width: 0;
	margin-inline: 10px;
}
.section-header__arrows h2 {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.section-header__arrows button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: #333;
}

.btn--link {
    text-decoration: underline;
    color: #c36479;
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: none;
    border: none;
}


/* section main */
.product-slider {
    justify-content: space-between;
    display: flex;
    gap: 20px;
    overflow-x: auto;
}

.product-listing{
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 60px 20px;
	
	.product-items {
		 width: calc(25% - 40px);
	}
}

.product-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.product-card__thumb {
	margin-bottom: 10px;
	overflow: hidden;
	
	img {
		width: 100%;
		aspect-ratio: 3 / 4;
		object-fit: cover;
		display: block;
	}
}

.product-card__title h3 {
    font-size: 14px;
    font-weight: 400;
    margin: 0;
}

.product-card__title p {
    font-size: 14px;
    margin: 4px 0 0;
}

/*section product category*/
.section--product-lists {
	--product-listing-heading-size: 50px;
}
.section .section--product-categories{
    display: flex;
    flex-direction: column;
}
.section-header{
    display: flex;
    justify-content: center;
}
.section-header h2{
    padding: 8px;
    font-size: var(--product-listing-heading-size, 22px);
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.product-category-lists{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
	
	.product-category-item {
		width: calc((100% / 4) - 30px);
	}
}
.product-title {
    opacity: 60%;
    padding: 10px 0 40px;
    display: flex;
    justify-content: center;
    text-transform: uppercase;
}
.product
.product-category-item{
    width: calc((100% - 20px) / 3);
}
.product-category-item img{
    width: 100%;
	aspect-ratio: 2 / 3;
    object-fit: cover;
}

/* cta video section */

.section--ctavideo{
    position: relative;
    margin: 50px 0;
	h2, h3, p {
		text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
	}
	
	h2 { font-size: 14px; text-transform: uppercase; }
	h3 { font-size: 80px; font-weight: 300; letter-spacing: 0.1em;  text-transform: uppercase; line-height: 1; padding-block: 16px; }
	h3 + p { font-size: 20px; margin-bottom: 20px; }
}
.section-videobg{
    width: 100%;
    height: 580px;
    overflow: hidden;
	position: relative;
	
	&::before{
		content: '';
		position: absolute;
		inset: 0;
		background-color: #D22BE8;
		opacity: 0.25;
	}
}
.section--ctavideo .container {
    color: #fff;
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.section--ctavideo{
    font-size: 20px;
}
.section-videobg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
/* testimonials section */
.section--testimonials{
    margin: 50px 0;
}
.testimonail-stage{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.testimonial-content{
    margin-top: 60px;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    gap: 20px;
}
.testimonial-content h2{
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.1em;
}

.testimonial-content .ratings{ display: flex; }
.testimonial-thumbnails { width: 50%; padding-left: 100px; }
.testimonial-thumb-item img { aspect-ratio: 4 / 5; object-fit: cover;  width: 100%; }

.ratings svg{
    width: 20px;
    height: 20px;
    color: #000;
}
.container .testimonail-stage{
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}
.testimonial-copy p{
    font-size: 24px;
    line-height: 1.5;
	
	&.author {
		font-size: 16px;
		margin-top: 24px;
	}
}
.testimonial-slider-controller{
    margin-top: 70px;
}
.testimonial-slider-controller svg{
    opacity: 90%;
    width: 40px;
    height: 40px;
}

/* section-main responsive */
@media (max-width: 1024px) {
    .product-items {
        width: calc((100% - 20px) / 2);
    }
    .product-category-item {
        width: calc((100% - 10px) / 2);
    }
}

@media (max-width: 991px) {
	.section--product-lists {
		--product-listing-heading-size: 32px;
	}
	.product-listing .product-items { width: calc(33.333% - 40px); }
}

@media (max-width: 767px) {
    .container {
        padding-inline: 20px;
    }
    .section-main {
        width: 100%;
    }
    .product-slider {
        flex-wrap: wrap;
    }
	.product-category-lists {
		.product-category-item {
			width: calc(50% - 10px);
		}
	}
	.testimonial-content,
	.testimonial-thumbnails { width: 100%; }
	.testimonial-thumbnails {padding-left: 0; margin-top: 30px; }
	.testimonial-slider-controller { display: none; }
	.testimonial-content { margin-top: 0; }
	.section--product-slider {
		.section-header { margin-block: 0; }
	}
	
	.product-listing .product-items { width: calc(50% - 40px); }
}

@media (max-width: 575px) {
	.product-listing .product-items { width: 100%; }
}
