/**
 * =========================================================
 * HOME PAGE STYLES
 * =========================================================
 * Contains:
 * - Brands Showcase
 * - Featured Products Tabs
 * - Reviews Slider
 * - Main Hero Slider
 * - Manage Account
 * - Categories
 *
 * =========================================================
 */


/* =========================================================
 * BRANDS SHOWCASE
 * ========================================================= */
 
.brands-showcase {
	width: 100%;
	padding: 40px 0;
}
/* Desktop grid */
.brands-showcase .brands-track {
	display: grid;
	grid-template-columns: repeat(6, minmax(150px, 1fr));
	max-width: 900px;
	margin: 0 auto;
	justify-items: center;
	align-items: center;
}

.brands-showcase .brands-track .brand {
	display: flex;
	align-items: center;
	justify-content: center;
}

.brands-showcase .brands-track .brand img {
	width: 150px;
	height: auto;
	object-fit: contain;
}
/* Smaller desktop */
@media (max-width: 1200px) {
	.brands-showcase .brands-track {
		grid-template-columns: repeat(4, minmax(150px, 1fr));
	}
}

/* ===== Tablet & Mobile: Auto + Swipe ===== */
@media (max-width: 768px) {

	.brands-showcase {
		overflow-x: scroll;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}

	.brands-showcase::-webkit-scrollbar {
		display: none;
	}

	.brands-showcase .brands-track {
		display: flex;
		flex-wrap: nowrap;
		gap: 0;
		width: max-content;
		margin: 0;
		padding: 0 20px;
	}

	.brands-showcase .brands-track .brand {
		flex: 0 0 auto;
	}
}


/* =========================================================
 * FEATURED PRODUCTS TABS
 * ========================================================= */
 
 
.featured-product-tabs .fps-title {
	background: #080f5b;
	padding: 10px 15px;
}

.featured-product-tabs .fps-title h2 {
	font-size: 1em;
	color: #ffffff;
	text-transform: uppercase;
	margin: 0;
}
.featured-product-tabs .fps-products {
	padding: 15px;
}

/* Tabs container (mobile only) */
.featured-product-tabs .fps-tabs {
	display: none;
	gap: 10px;
	padding: 10px;
	/*overflow-x: auto;*/
}

/* Swatch-style buttons */
.featured-product-tabs .fps-tabs-columns {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
}
.featured-product-tabs .fps-tab {
	border: 1px solid #080f5b;
	background: #fff;
	color: #080f5b;
	padding: 8px 14px;
	font-size: 0.85em;
	text-transform: uppercase;
	/*white-space: nowrap;*/
	cursor: pointer;
	border-radius: 20px;
	transition: all 0.2s ease;
}

.featured-product-tabs .fps-tab.active {
	background: #080f5b;
	color: #fff;
}

/* Desktop visibility */
.featured-product-tabs .desktop-only {
	display: block;
}

/* MOBILE TABS MODE */
@media (max-width: 767px) {
	.featured-product-tabs .fps-tabs {
		display: flex;
	}

	.featured-product-tabs .desktop-only {
		display: none;
	}

	.featured-product-tabs .featured-product-section {
		display: none;
	}

	.featured-product-tabs .featured-product-section.active {
		display: block;
	}
}

 
 
 
 /* =========================================================
 * REVIEWS SLIDER
 * ========================================================= */
 

.reviews-slider {
	padding: 40px 0;
}
.reviews-slider a {
	text-decoration: none;
}
.reviews-slider p {
	padding: 0;
	margin: 0;
}
.reviews-slider .reviews-heading {
	margin-bottom: 30px;
	font-weight: 700;
	text-transform: uppercase;
	text-align: center;
	font-size: 1.4em;
}
.reviews-slider .reviews-slider-items {
	position: relative;
	padding: 0 30px;
}
.reviews-slider .reviews-slider-items .reviews-viewport {
	overflow: hidden;
	width: 100%;
}

/* Arrows */
.reviews-slider .reviews-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	border: none;
	font-size: 17px;
	cursor: pointer;
	z-index: 10;
	padding: 0;
	margin: 0;
	line-height: 1;
	background: transparent;
}
.reviews-slider .reviews-arrow i::before {
	padding: 0;
	margin: 0;
}
.reviews-slider .reviews-prev {
	left: 5px;
}
.reviews-slider .reviews-next {
	right: 5px;
}


/*------ SINGLE REVIEW CARD ------*/
.reviews-slider .review-single {
	padding: 5px;
	text-align: center;
	box-sizing: border-box;
}
.reviews-slider .review-single .rev-inwrap {
	padding: 25px 15px;
	height: 100%;
}

.reviews-slider .review-single .rev-stars {
	display: flex;
	justify-content: center;
	margin-bottom: 10px;
}
.reviews-slider .review-single .rev-stars img {
	width: 18px;
	height: auto
}
.reviews-slider .review-single .rev-text {
	font-size: 1em;
	margin-bottom: 10px;
}
.reviews-slider .review-single .rev-user {
	color: #797272;
}


/*------ COLUMNS LAYOUT ------*/
/* Track */
.reviews-slider .reviews-track {
	display: flex;
	transition: transform 0.4s ease;
}

/* Desktop */
@media (min-width: 800px) {
	.reviews-slider .review-single {
		flex: 0 0 25%;
	}
	.reviews-slider .reviews-arrow {
		opacity: 0;
	}
}
/* Tablet */
@media (min-width: 400px) and (max-width: 799px) {
	.reviews-slider .review-single {
		flex: 0 0 50%;
	}
}

/* Mobile */
@media (max-width: 399px) {
	.reviews-slider .review-single {
		flex: 0 0 100%;
	}
}
 
 
 
 /* =========================================================
 * MAIN HOME SLIDER
 * ========================================================= */

#home-slideshow .slideshow-container {
    max-width: 1200px;
    position: relative;
    margin: auto
}
#home-slideshow .sliderSlides {
    display: none;
}

#home-slideshow .sliderSlides:first-child {
    display: block;
}
#home-slideshow .prev,
#home-slideshow .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: #ffffff;
    font-weight: bold;
    font-size: 30px;
    transition: .6s ease;
}
#home-slideshow .next {
    right: 0px;
}
#home-slideshow .prev {
    left: 0px;
}
#home-slideshow .prev:hover,
#home-slideshow .next:hover {
    color: #ffffff;
    background: rgba(8, 15, 91, 1);
}
#home-slideshow .numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0
}
#home-slideshow .slideshow-dots {
	position: absolute;
	bottom: -30px;
	left: 0;
	width: 100%;
}
#home-slideshow .dot {
    cursor: pointer;
    height: 10px;
    width: 10px;
    margin: 0 2px;
    background-color: #b2bfd2;
    border-radius: 50%;
    display: inline-block;
    transition: background-color .6s ease
}
#home-slideshow .active,
#home-slideshow .dot:hover {
    background-color: #76ba19;
}
/* Fading animation */
#home-slideshow .fade {
  -webkit-animation-name: hsfade;
  -webkit-animation-duration: 1.5s;
  animation-name: hsfade;
  animation-duration: 1.5s;
}
@-webkit-keyframes hsfade {
  from {opacity: .4}
  to {opacity: 1}
}

@keyframes hsfade {
  from {opacity: .4}
  to {opacity: 1}
}
@media (min-width: 960px) {
	#home-slideshow {
		padding: 20px;
	}
}
@media (max-width: 959.99px) {
	#home-slideshow {
		padding: 0 0 40px 0;
	}
}


 /* =========================================================
 * MANAGE ACCOUNT
 * ========================================================= */

#home-manage-account {
    margin-top: 10px;
    margin-bottom: 10px;
}
#home-manage-account a {
	background: #8dc63f;
	color: #ffffff;
    text-decoration: none;
	text-align: center;
	display: block;
	padding: 10px;
}
#home-manage-account a:hover {
	background: #80b439;
}
#home-manage-account .manage-account-line1 {
	text-transform: uppercase;
	font-weight: bold;
}
#home-manage-account .manage-account-line2 {
	font-style: italic;
}

 
 
  /* =========================================================
 * CATEGORIES
 * ========================================================= */
 
 
 /*----------- Homepage Categories -----------*/
#home-categories {
	padding-top: 20px;
	padding-bottom: 20px;
}
#home-categories-list {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
#home-categories .home-categories-heading {
	margin-bottom: 30px;
	font-weight: 700;
	text-transform: uppercase;
	text-align: center;
	font-size: 1.4em;
	padding: 0;
	margin: 0;
}
#home-categories .home-cat {
	text-align: center;
	padding-bottom: 20px;
}
#home-categories .home-cat img {
	width: 100%;
	height: auto;
	max-width: 244px;
	display: block;
	margin: 0 auto 10px auto;
}
#home-categories .home-cat-title {
    font-weight: 700;
	text-decoration: none;
	text-transform: uppercase;
}
#home-categories .home-cat-title:hover {
    text-decoration: underline;
    text-decoration-color: #76ba22;
    text-underline-offset: 10px;
	text-decoration-thickness: 2px;
}

@media (min-width: 800px) {
	#home-categories .home-cat {flex-basis: 25%;}
}
@media (min-width: 400px) and (max-width: 800px) {
	#home-categories .home-cat {flex-basis: 50%;}
}
@media (max-width: 400px) {
	#home-categories .home-cat {flex-basis: 100%;}
}




