/**
 * Homepage Styles - Bare Biology
 *
 * Custom styles for homepage sections.
 * Uses Kahunam framework as base - only add overrides here.
 */

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.bb-hero {
	position: relative;
}

.bb-hero__content {
	position: relative;
	z-index: 1;
}

/* Hero with background image variant */
.bb-hero--with-image {
	background-size: cover;
	background-position: center;
	min-height: 70vh;
	display: flex;
	align-items: center;
}

.bb-hero--with-image::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, 0.85);
}


/* ==========================================================================
   BRAND SECTION
   ========================================================================== */

.bb-brand__certifications {
	flex-wrap: wrap;
}

.bb-certification {
	padding: var(--k-space-3) var(--k-space-4);
	border: var(--k-border-width) solid var(--k-border-color);
	border-radius: var(--k-border-radius);
}

.bb-certification img {
	max-height: 40px;
	width: auto;
}


/* ==========================================================================
   PRODUCT CARDS
   ========================================================================== */

.bb-product-card {
	height: 100%;
	display: flex;
	flex-direction: column;
}

.bb-product-card__body {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.bb-product-card__footer {
	margin-top: auto;
}

.bb-product-card__price {
	font-size: var(--k-text-lg);
}


/* ==========================================================================
   BENEFIT CARDS
   ========================================================================== */

.bb-benefit-card {
	text-decoration: none;
	transition: border-color var(--k-transition-base);
}

.bb-benefit-card:hover {
	border-color: var(--k-border-color-hover);
}


/* ==========================================================================
   HOMEPAGE BESTSELLERS (WooCommerce [products] shortcode)
   ========================================================================== */

.gb-element-best002 ul.products {
	display: grid;
	gap: 2rem 1.5rem;
	grid-template-columns: repeat(2, 1fr);
	list-style: none;
	margin: 0;
	padding: 0;
}

@media (min-width: 768px) {
	.gb-element-best002 ul.products {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (min-width: 1100px) {
	.gb-element-best002 ul.products {
		grid-template-columns: repeat(6, 1fr);
	}
}

/* Override WooCommerce default float/width layout */
.gb-element-best002 ul.products li.product {
	float: none;
	margin: 0;
	width: 100%;
}

.gb-element-best002 ul.products::before,
.gb-element-best002 ul.products::after {
	content: none;
	display: none;
}
