/*
Theme Name: Ball On Top WooCommerce V2
Theme URI: https://ballontop.com/
Author: Vic Willenpart
Author URI: mailto:vic.willenpart@gmail.com
Description: WooCommerce-ready theme for Ball On Top with bold playful styling.
Version: 0.1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bot-woo
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
Tags: woocommerce, e-commerce, blog
*/

/* Global typography: Poppins */
:root {
	--bs-font-sans-serif: 'Poppins', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

html,
body,
body * {
	font-family: 'Poppins', var(--bs-font-sans-serif) !important;
}

/* Basic reset and typography */
@import url('assets/css/variables.css');
@import url('https://fonts.googleapis.com/css2?family=Varela+Round&family=Archivo+Black&display=swap');

*,
*::before,
*::after {
	box-sizing: border-box;
}

html, body {
	margin: 0;
	padding: 0;
	overflow-x: hidden;
	overscroll-behavior: none;
	-webkit-overflow-scrolling: touch;
	-webkit-tap-highlight-color: transparent;
	tap-highlight-color: transparent;
}

/* Mobile touch target optimization */
@media (max-width: 768px) {
	.btn, .nav-link, .dropdown-toggle, a {
		min-height: 44px;
		min-width: 44px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
	}
	
	.navbar-nav .nav-link {
		padding: 12px 16px;
	}
	
	/* Improve mobile scrolling */
	body {
		-webkit-overflow-scrolling: touch;
		overscroll-behavior-y: contain;
	}
}

body {
	margin: 0;
	font-family: var(--font-sans);
	line-height: var(--line-height);
	color: var(--color-text);
	background: var(--color-bg);
	font-size: var(--font-size-base);
}

a {
	color: var(--color-primary);
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

img {
	max-width: 100%;
	height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Archivo Black', var(--font-sans);
	font-weight: 900;
	letter-spacing: -0.02em;
}

.lang-dropdown {
	margin-left: .25rem;
}

.lang-dropdown .dropdown-menu {
	min-width: 140px;
	border: 0;
	box-shadow: var(--shadow-md);
}

.lang-dropdown .dropdown-item.active {
	background: var(--color-accent);
	color: #000;
	font-weight: 900;
}

/* Icon+badge presentation for desktop language selector */
.lang-dropdown .lang-toggle {
	background: transparent;
	border: 0;
	padding: 0;
	line-height: 1;
}

.lang-dropdown .menu-icon {
	display: inline-flex;
	align-items: center;
	position: relative;
	color: var(--color-primary);
}

.lang-dropdown .menu-icon .bi {
	color: var(--color-primary);
	font-size: 1.2rem;
	line-height: 1;
}

.lang-dropdown .lang-badge {
	position: absolute;
	top: -6px;
	right: -10px;
	font-size: .65rem;
}

/* Make nested primary menu dropdowns look like the language selector */
.primary-nav .dropdown-menu {
	min-width: 140px;
	border: 0;
	box-shadow: var(--shadow-md);
	display: none;
}

.primary-nav .dropdown-menu.show {
	display: block;
	opacity: 1;
}

/* Fallback: if only the parent has .show (no Bootstrap JS), still display the menu */
.primary-nav .dropdown.show>.dropdown-menu {
	display: block;
}

.primary-nav .dropdown-item.active,
.primary-nav .dropdown-item:active {
	background: var(--color-accent);
	color: #000;
	font-weight: 900;
}

/* Hide legacy WP submenus until explicitly toggled via dropdown (avoid flashing) */
.primary-nav ul.sub-menu {
	display: none;
}

/* Also hide any immediate UL under a parent until the JS converts it to .dropdown-menu */
.primary-nav li.menu-item-has-children>ul:not(.dropdown-menu) {
	display: none;
}

/* When navbar is collapsed (mobile), ensure dropdown menus stay hidden unless expanded */
@media (max-width: 991.98px) {
	.navbar .navbar-collapse:not(.show) .dropdown-menu {
		display: none !important;
	}
}

.site-header {
	border-bottom: 3px solid var(--color-border);
	background: var(--color-secondary);
	position: sticky;
	top: 0;
	z-index: 50;
}

.site-header .bot-container {
	min-height: 74px; /* cgx */
}

.site-title {
	font-weight: 800;
	font-size: 1.2rem;
	color: #fff;
}

.site-header .custom-logo {
	max-height: 44px; /* cgx */  
	height: auto;
	width: auto;
	object-fit: contain;
}

.primary-nav ul {
	list-style: none;
	display: flex;
	gap: 1rem;
	margin: 0;
	padding: 0;
	padding-left: 20%; /* cgx */
}

.primary-nav li::before {
	content: "|";
	display: inline-block;
	width: 0;
	height: 2px;
	margin: 0 25px 0 5px; /* 0 2rem 0 0; */  /* cgx */
}

/* Hide pipe separators on mobile */
@media (max-width: 991.98px) {
	.primary-nav { margin : 0 auto !important; }
	.primary-nav li::before {
		display: none;
	}
	.primary-nav ul li.account-icon, 
	.primary-nav ul li.cart-icon {
		margin-left: 0 !important;
	}
}

.primary-nav li:first-child::before,
.primary-nav li.account-icon::before,
.primary-nav li.cart-icon::before,
.primary-nav .dropdown-menu li::before {
	content: "";
	width: 0;
	background: none;
	margin: 0;
	display: none;
}

.primary-nav li.account-icon,
.primary-nav li.cart-icon {
	margin: 0 0 0 0.6rem;
}

.primary-nav li.account-icon {
    margin-left: auto !important;
}


.primary-nav a {
	color: var(--color-primary);
	text-transform: uppercase;
	font-size: 18px; /* 1.2rem;*/ 
	font-weight: 600;
}

.primary-nav .menu-icon {
	display: inline-flex;
	align-items: center;
	position: relative;
}

.primary-nav .menu-icon .bi {
	color: var(--color-primary);
	font-size: 24px; /* 1.2rem; */  /* cgx */
	line-height: 1;
}

.primary-nav .menu-item.account-icon>a,
.primary-nav .menu-item.cart-icon>a {
	color: var(--color-primary) !important;
}

.primary-nav .menu-item.cart-icon .cart-badge {
	position: absolute;
	top: -6px;
	right: -10px;
	font-size: .65rem;
}

/* cgx - icons swap */

.bi-globe::before,
.bi-person-circle::before,
.bi-cart::before {
  content: "";
  display:inline-block;
  background-repeat: no-repeat;
  background-size: 100%;
}
.bi-globe::before {
  background: url(assets/img/i-lang.svg);
  width:25px;
  height:26px;
}
.bi-person-circle::before {
  background: url(assets/img/i-user.svg);
  width:26px;
  height:27px;
}
.bi-cart::before {
  background: url(assets/img/i-cart.svg);
  width:30px;
  height:25px;
}
.is-product-gradient .bi-globe::before {
  background: url(assets/img/i-lang-w.svg);
  }
  .is-product-gradient .bi-person-circle::before {
  background: url(assets/img/i-user-w.svg);
  }
  .is-product-gradient .bi-cart::before {
  background: url(assets/img/i-cart-w.svg);
  }


.header-right {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.header-actions {
	display: flex;
	align-items: center;
	gap: .75rem;
}

.header-link {
	color: #fff;
	font-weight: 700;
	text-decoration: none;
}

.header-link:hover,
.primary-nav a:hover {
	opacity: .85;
	text-decoration: none;
}

.site-footer {
	border-top: 3px solid var(--color-border);
	background: var(--color-surface);
	padding: 2rem 0;
	margin-top: 40px;
}

.site-footer .footer-menu a {
	color: #fff;
}

.site-footer .footer-menu a:hover {
	opacity: .8;
}

/* Footer menus stacked vertically */
.site-footer .footer-menu {
	display: block;
	margin: 0;
	padding: 0;
}

.site-footer .footer-menu li {
	margin: 0 0 .5rem 0;
}

.site-footer .footer-menu li:last-child {
	margin-bottom: 0;
}

.footer-nav {
	margin-bottom: .75rem;
}

.footer-menu {
	list-style: none;
	display: flex;
	gap: 1rem;
	margin: 0;
	padding: 0;
	justify-content: center;
	flex-wrap: wrap;
}

.footer-menu a {
	color: var(--color-text);
	text-decoration: none;
}

.footer-menu a:hover {
	opacity: .75;
	text-decoration: none;
}

/* Widgets */
.widget {
	margin-bottom: 2rem;
}

.widget-title {
	font-size: 1rem;
	margin: 0 0 .75rem;
}

/* WooCommerce light tweaks (structure in assets/css/woocommerce.css) */
.page-title {
	font-size: 1.75rem;
	margin: 0 0 1rem;
}

/* Hero utility (for front page) */
.hero {
	position: relative;
	padding: 0;
	background: var(--color-surface);
	color: var(--color-text);
}

.hero .heading {
	font-family: 'Archivo Black', var(--font-sans);
	font-size: clamp(2.2rem, 5vw, 3.4rem);
	line-height: 1.05;
	margin: 0 0 1rem;
	font-weight: 900;
	letter-spacing: -0.02em;
	text-shadow: none;
}

.hero-block {
	min-height: clamp(620px, calc(100vh - 74px), 980px); /* cgx */
	display: flex;
	align-items: center;
}

/* Parallax effects disabled */
/* [data-parallax] { ... } */

/* BLOCK SPLIT */
.block-split {
	padding: 0;
}

.block-split .row.g-0 {
	min-height: clamp(450px, 55vh, 880px);
}

.block-split .col-lg-6 {
	min-height: inherit;
}

@media (max-width: 991.98px) {
	.block-split .row.g-0 {
		min-height: clamp(120px, 20vh, 680px);
	}
}


/* Mobile: keep cover behavior for block-split images */
@media (max-width: 991.98px) {
	.block-split .position-absolute.top-0.start-0.w-100.h-100 {
		position: static !important;
		width: 100% !important;
		height: auto !important;
	}
}

/* Shop hero (archive-product) */
.shop-hero {
	display: flex;
	align-items: stretch;
	padding: 0;
	border-bottom: 20px solid #f4f4f4;
}

.shop-hero__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center center;
	filter: brightness(0.75) saturate(1.05);
	transform: scale(1.05);
}

.shop-hero__inner {
	padding: 5rem 0 4rem;
}

.shop-hero__title {
	text-shadow: 0 4px 22px rgba(0, 0, 0, .55), 0 0 2px rgba(0, 0, 0, .4);
	letter-spacing: -.03em;
}

.shop-hero__bottom-shadow {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 80px;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .55) 85%, rgba(0, 0, 0, .75) 100%);
	pointer-events: none;
}

@media (max-width: 767.98px) {
	.shop-hero__inner {
		padding: 3rem 0 2.5rem;
	}

	.shop-hero__title {
		font-size: clamp(2.2rem, 8vw, 3.2rem);
	}
}

/* Shop product list adjustments */
.woocommerce ul.products li.product.bot-woo-product {
	align-items: stretch;
	text-align: start;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .6rem;
	padding: .9rem 1.35rem;
	border-radius: var(--radius-pill);
	font-weight: 800;
	letter-spacing: .2px;
	box-shadow: var(--shadow-md);
	border: 0;
	/* transform: translateY(0);
	transition: transform .15s ease, box-shadow .15s ease, filter .15s ease; */
	transition: all .2s linear;
	text-decoration: none;
	background-image: none !important;
	border-color: transparent !important;
	
}

.btn:hover {
	/* transform: translateY(-2px); */  /* cgx */
	box-shadow: var(--shadow-lg);
	text-decoration: none;
	transition: all .2s linear;
}

.btn:active {
	transform: translateY(0);
	box-shadow: var(--shadow-md);
}

.btn:focus-visible {
	outline: 3px solid var(--color-accent);
	outline-offset: 2px;
	box-shadow: var(--shadow-md) !important;
}

.btn:disabled,
.btn.disabled {
	opacity: .7;
	box-shadow: var(--shadow-sm);
	transform: none;
	pointer-events: none;
	transition: all .2s linear;
}

/* Bootstrap variant overrides */
.btn-primary,
.btn-secondary:hover {
	background: var(--bs-primary, #6c757d);
	color: #fff;
	border-color: var(--bs-primary, #6c757d);
	transition: all .2s linear;
}

/* Ensure secondary variant matches theme button look */
.btn-secondary,
.btn-primary:hover {
	background: var(--bs-secondary, #6c757d);
	color: #000;
	border-color: var(--bs-secondary, #6c757d);
	transition: all .2s linear;
}

.btn-tertiary {
	background: #fff;/* var(--color-accent);*/
	color: #000;
	border-color: #000;/* var(--color-accent);*/
	transition: all .2s linear;
	border: 1px solid #000!important;
}

.btn-tertiary:hover {
	background: #000;
	color: var(--color-accent);
	border-color: #000;
}

/* Sizes */
.btn-lg { 
	padding: 0.825rem 1.5rem; /* 1rem 1.5rem; */
	font-size: 1.5rem;
}

.btn-sm {
	padding: .6rem .9rem;
	font-size: .95rem;
}

/* Woo buttons override to use .btn look */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce .single_add_to_cart_button,
.woocommerce a.add_to_cart_button,
.woocommerce button.single_add_to_cart_button,
.woocommerce input#submit.add_to_cart_button,
.woocommerce .cart button.button,
.woocommerce .cart input.button,
.woocommerce-page .single_add_to_cart_button {
	background: #000;
	color: var(--color-accent);
	border-color: #000;
	border: 0;
	box-shadow: var(--shadow-md);
	font-weight: 800;
	padding: .825rem 1.35rem;
	border-radius: var(--radius-pill);
	font-weight: 800;
	letter-spacing: .2px;
	box-shadow: var(--shadow-md);
	border: 0;
	transform: translateY(0);
	transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
	text-decoration: none;
}

/* Remove alt inversion to keep buttons primary-only */
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce .single_add_to_cart_button:hover,
.woocommerce a.add_to_cart_button:hover,
.woocommerce button.single_add_to_cart_button:hover,
.woocommerce input#submit.add_to_cart_button:hover,
.woocommerce .cart button.button:hover,
.woocommerce .cart input.button:hover,
.woocommerce-page .single_add_to_cart_button:hover {
	/* transform: translateY(-2px); */
	box-shadow: var(--shadow-lg);
	filter: none;
	background: var(--color-accent);
	color: #000;
}

/* Quantity wrapper alignment */
.woocommerce form.cart,
.woocommerce div.product form.cart {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	gap: .75rem;
}

/* Keep variations or other elements from breaking layout */
.woocommerce form.cart table.variations {
	width: 100%;
}

.woocommerce form.cart table.variations td {
	padding: .25rem .25rem;
}

/* Quantity input styled to same height as button */
.woocommerce .quantity,
.woocommerce .quantity .qty {
	height: 2.75rem;
}

.woocommerce .quantity {
	display: inline-flex;
	align-items: stretch;
	border: 1px solid #ced4da;
	border-radius: .375rem;
	overflow: hidden;
	background: #fff;
}

/* Playful blocks */
.block {
	padding: 4.5rem 0; /* cgx mod 3 x 4*/
}

/* Removed unused .block.alt variant */
.block .heading {
	font-family: 'Archivo Black', var(--font-sans);
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	margin: 0 0 1rem;
	font-weight: 900;
	letter-spacing: -0.02em;
}

.team-strong-block strong {
	display: block;
	font-weight: 800;
	margin-bottom: .35rem;
}

/* Brand logo larger (50% increase from 40px -> 60px) */
.team-brand-logo {
	height: 120px !important;
	width: auto;
}

/* Split block with background image cards */
.block-split {
	padding: 0;
}

.block-card {
	position: relative;
	min-height: clamp(420px, 62vh, 780px);
	width: 100%;
	overflow: hidden;
	text-decoration: none !important;
}

.block-card-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 1;
	transition: transform .5s ease, filter .5s ease;
}

.block-card::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 45%;
	background: linear-gradient(to top, rgba(0, 0, 0, .65), rgba(0, 0, 0, 0));
	pointer-events: none;
}

.block-card-inner {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	text-align: center;
	margin-top: auto;
}

.block-card-inner strong {
	display: block;
}

.block-card:hover .block-card-bg {
	transform: scale(1.05);
	filter: saturate(1.06) brightness(1.03);
}

@media (max-width: 991.98px) {
	.block-card {
		min-height: 420px;
	}
}

/* Tertiary utilities (theme-defined) */
.bg-tertiary {
	background-color: var(--color-tertiary, #adb5bd) !important;
}

.text-tertiary {
	color: var(--color-tertiary, #adb5bd) !important;
}

.border-tertiary {
	border-color: var(--color-tertiary, #adb5bd) !important;
}

/* Removed generic .carousel overrides to avoid conflicts with Bootstrap */
.card {
	background: #fff;
	border: 0;
	border-radius: var(--radius);
	box-shadow: var(--shadow-sm);
	padding: 1rem;
}

.card .title {
	font-weight: 800;
}

.card .price {
	font-weight: 900;
}

/* Text highlight utility (inline highlighter, not full box) */
.highlight-black {
	display: inline;
	background: #000;
	/* marker-like highlight */
	color: #fff;
	/* ensure contrast */
	padding: .02em .2em;
	/* small vertical and horizontal padding to look like a highlighter */
	-webkit-box-decoration-break: clone;
	box-decoration-break: clone;
	/* keep highlight on each wrapped line */
	line-height: 1.5;
}


/* Desktop-only: hide topbar/header on home until scrolled */
@media (min-width: 992px) {

	.home .site-header,
	.front-page .site-header {
		position: fixed;
		left: 0;
		right: 0;
		top: 0;
		z-index: 999;
		transition: transform .3s ease, opacity .2s ease;
		will-change: transform;
	}

	/* Hidden state until scroll */
	.home:not(.show-head) .site-header,
	.front-page:not(.show-head) .site-header {
		transform: translateY(-120%);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
	}

	/* Visible state after scroll */
	.home.show-head .site-header,
	.front-page.show-head .site-header {
		transform: translateY(0);
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}

	/* Ensure content isn’t hidden once header appears */
	.home.show-head main,
	.front-page.show-head main {
		padding-top: var(--header-total, 0px);
	}
}

/* Header/menu: always visible on Home and Front Page (override previous hide-on-scroll) */
@media (min-width: 992px) {

	.home .site-header,
	.front-page .site-header {
		position: sticky;
		/* instead of fixed+hidden */
		top: 0;
		transform: none !important;
		opacity: 1 !important;
		visibility: visible !important;
		pointer-events: auto !important;
	}

	.home main,
	.front-page main {
		padding-top: 0 !important;
	}
}

/* 3D Product Slider */
.product-3d-slider {
	position: relative;
	width: 100%;
	/* overflow: hidden; */
}

.product-3d-slider .slider-stage {
	position: relative;
	width: 100%;
	min-height: clamp(420px, 58vh, 550px); /* old_ 620px*/
	perspective: 900px;
	transform-style: preserve-3d;
	display: block;
	overflow: visible;
	/* allow side items to hang out */
}

.product-3d-slider .slider-item {
	position: absolute;
	top: 0;
	left: 50%;
	will-change: transform, opacity;
	transition: transform .35s ease, opacity .25s ease;
	transform-origin: 50% 50%;
	opacity: .35;
}

.product-3d-slider .slider-item.is-active {
	opacity: 1;
}

.product-3d-slider .slider-img {
	display: block;
	width: auto;
	max-width: var(--slider-img-max-width, min(78vw, 600px));
	height: auto;
	max-height: var(--slider-img-max-height, clamp(260px, 48vh, 560px));
	object-fit: contain;
	filter: none;
	box-shadow: none;
	border: 0;
}

.product-3d-slider .slider-meta {
	display: none;
}

.product-3d-slider .slider-item.is-active .slider-meta {
	display: block;
}

.product-3d-slider .slider-meta .btn {
	vertical-align: baseline;
	box-shadow: none !important;
	border: 0 !important;
}

.product-3d-slider .slider-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(0, 0, 0, .5);
	color: #fff;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 10;
	transition: background .2s ease, transform .15s ease;
}

.product-3d-slider .slider-arrow:hover {
	background: rgba(0, 0, 0, .65);
}

.product-3d-slider .slider-arrow:active {
	transform: translateY(-50%) scale(.96);
}

.product-3d-slider .slider-arrow-left {
	left: -50px; /* cgx */
}

.product-3d-slider .slider-arrow-right {
	right: -50px; /* cgx */
}

/* Centering and drag feedback for product slider */
#latest-products-slider {
	transition: opacity .4s ease;
}
#latest-products-slider.block {
	padding-top:2.5rem!important;
	padding-bottom:0!important;
}

.product-3d-slider {
	cursor: grab;
}

.product-3d-slider.is-dragging {
	cursor: grabbing;
}

.product-3d-slider .slider-stage {
	margin-left: auto;
	margin-right: auto;
}

@media (max-width: 575.98px) {
	.product-3d-slider .slider-img {
		max-width: var(--slider-img-max-width-mobile, 92vw);
	}

	.product-3d-slider .slider-arrow {
		width: 38px;
		height: 38px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.product-3d-slider .slider-item {
		transition: none !important;
	}
}

.woocommerce .quantity .qty {
	width: 70px;
	padding: .5rem .5rem;
	margin: 0;
	font-weight: 600;
	border: 0;
	border-radius: 0;
	text-align: center;
	line-height: 1.5;
	box-shadow: none !important;
}


/* Overrides */

.h6, h6 {
  font-size: 20px!important;
  font-weight:700;
  text-transform:none!important;
}
.small, small {
  font-size: 14px;
  font-weight: 300;
}
.border-top {
  border-top: 10px solid #f4f4f4 !important;
}
.mb-3 {
  margin-bottom: 1.5rem !important;
}
.site-footer .footer-menu li {
  margin: 0;
  font-size: 14px;
  font-weight: 300;
}
.social {
 
}
.small strong {
  font-weight: 600;
}

/* WC customizations */

/* fix WC gallery */

.woocommerce div.product div.images .flex-control-thumbs {
  order: -1;
}
.woocommerce div.product div.images .woocommerce-product-gallery__trigger {
  left: calc(100% - 36px);
}

.woocommerce div.product div.images img {
  width: 93%!important;
  height: auto !important;
}

/* WC product desc area */

.product-brand-header .product-brand-name {
  font-weight: 700!important;
  letter-spacing: 0!important;
  font-size: 30px!important;
}
.woocommerce-product-details__short-description {
  float: left;
  width: 72%;
  margin-bottom: 0!important;  
}
.product-brand-image {
  width: 24.99%;
  padding-top: 2.5rem;
}
.woocommerce div.product .woocommerce-product-details__short-description p strong {
  font-size: 24px;
  padding-bottom: 1rem;
  display: inline-block;
}
.woocommerce div.product .woocommerce-product-details__short-description p {
  font-size: 16px;
}

.product-price {
  width: 100%!important;
}
div.product p.price,
div.product span.price {
  font-size: 30px!important;
}
.clr {
  display: table;
  width:100%;
}
/* fix alignment of cap depending on text large */
.slider-img-link.d-block.mx-auto {
  margin: auto;
  width: fit-content;
}
/* WooCommerce inline add to cart button -shortcode- */
.product.woocommerce.add_to_cart_inline {
  border: 0 !important;
  padding: 0 !important;
}
/* .slider-meta */

.slider-meta .product.woocommerce.add_to_cart_inline .amount {
  display: none!important;
}
.slider-meta .btn.btn-primary.btn-lg {
  font-weight: 800;
  letter-spacing: .2px;
  padding: 1rem 1.5rem!important;
  font-size: 1.5rem !important;
  text-decoration: none;
  line-height: 1 !important;
  margin-right:5px;
  display: inline-block !important;
  max-height: 56px;
}

.product.woocommerce.add_to_cart_inline .amount,
.product.woocommerce.add_to_cart_inline .add_to_cart_button {
  font-weight: 800;
  letter-spacing: .2px;
  padding: 1rem 1.5rem!important;
  font-size: 1.5rem!important;
  text-decoration: none;
  margin-right: 5px;
  line-height:1!important;
  display:inline-block!important; 
}
.product.woocommerce.add_to_cart_inline .amount {
  background-color: #000000;
  color: #FFFFFF;
}
.product.woocommerce.add_to_cart_inline .add_to_cart_button {
  background-color: #efd702;
  color: #000000;
  transition: all .2s linear;
}

.product.woocommerce.add_to_cart_inline .amount:hover,
.product.woocommerce.add_to_cart_inline .add_to_cart_button:hover {
  transform: translateY(0)!important;
}
.product.woocommerce.add_to_cart_inline .add_to_cart_button:hover {
  background-color: #000000;
  color: #FFFFFF;
  transition: all .2s linear;
}
/* utility grey background */
.greybg {
  background: #FBFBFB;
}
#product-main .lead {
  background: #fbfbfb;
  padding: 60px;
}
#product-main .lead h3 {
  font-size:34px;
  font-weight:800;
  text-align: center;
  margin-bottom:2rem;
}
#product-main .lead p {
font-size: 17px;
}
.feature-text.small.mt-2 {
  font-size: 12px !important;
}
/* Single Product - Inner card H4 titles */
.block-card-inner .h4.text-white.fw-bold.m-0 {
  font-size: 30px;
  text-align: center;
  display: inline-block;
  width: 100%;
}
.howitworks-right {
  background: #fbfbfb;
}

/* bootstrap overrides */
.accordion-item {
  border: 0;
  border-bottom: 1px solid #000000!important;
  border-radius: 0 !important;
}
.accordion-button {
  padding: 12px 0!important;
}
.accordion-body {
  border-radius: 0 !important;
  padding: 12px 0!important;
}

/* custom layouts */

h3.custom-title {
  color: #fff!important;
  background: #000!important;
  padding: 4px!important;
  /*text-align: center;*/
}
.page .fw-bold.m-0.highlight-black {
  padding-left: 12%;
  padding-right: 12%;
}
.contact-lead-text {
	padding: 20px 20% 0 20%;
	text-align: center;
}
/* wholesale form */
.page-wholesale-partners form .row.g-4 {
  background: #dfdfdf;
  padding: 0 10%;
  padding-bottom: 30px;
}
.page-wholesale-partners .display-5.fw-bold.m-0 {
  font-size: 36px;
}

/* reset borders*/
.form-control {
  border: 1px solid #555555 !important;
  border-radius: 0!important;
}
.wpcf7-spinner {
  display: block;
}

h3.highlight-black {
	display:inline-block;
}
/* custom page contact & faq styles */

.page-contact .wpcf7-form,
.page-contacte .wpcf7-form,
.page-contacto-2 .wpcf7-form, /*es*/
.page-contacto-3 .wpcf7-form /*pt*/ {
  background: #dfdfdf;
  padding: 0 10%;
  padding-bottom: 30px;
}

.page-faq h1.display-3,
.page-preguntas-frecuentes h1.display-3,
.page-pmf h1.display-3,
.page-perguntas-frequentes h1.display-3,
.page-contact h1.display-3,
.page-contacte h1.display-3,
.page-contacto-2 h1.display-3, /*es*/
.page-contacto-3 h1.display-3 {
	display:none;
}

.page-faq section.container.my-5,
.page-preguntas-frecuentes section.container.my-5,
.page-pmf section.container.my-5,
.page-perguntas-frequentes section.container.my-5,
.page-contact section.container.my-5
.page-contacte section.container.my-5,
.page-contacto-2 section.container.my-5, /*es*/
.page-contacto-3 section.container.my-5  {
	display:none;
}

.wp-block-heading.has-background {
  border-top: 10px solid #f4f4f4 !important;
}

.page-faq h2 strong {
  text-align: center;
  display: block;
  color: #FFF;
  width: fit-content;
  margin: auto;
  background: #000;
  text-transform: uppercase;
  font-size: 28px;
  padding: 5px 20px;
}
/* fix-accordion on FAQ */

.page-faq .accordion-item__heading {
  font-weight: 400 !important;
  font-size: 21px;
  padding: 6px 0;
}
.page-faq .accordion-item__heading strong {
  font-weight: 400 !important;
}
.page-faq .wp-block-heading.has-background {
  margin: 40px 0;
}

/* video hero */

.shop-hero {
	height: calc(100vh - 74px);
	overflow: hidden;

}
.shop-hero video {
  position: absolute;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  transform: translateX(calc((100% - 100vw) / 2));
}
.video-hero-title {
	position: absolute;
	z-index:5;
	bottom:12vh;
}
del bdi {
  opacity: 0.5;
  text-decoration: line-through;
}


/* cart */
h1.display-3.fw-bold.m-0.highlight-black {
  display: block;
  text-align: center;
  text-transform: uppercase;
  font-size: 1.75rem;
}
