/* End custom CSS */

.elementor-kit-27 {
	--e-global-color-primary: #6ec1e4;
	--e-global-color-secondary: #54595f;
	--e-global-color-text: #7a7a7a;
	--e-global-color-accent: #61ce70;
	--e-global-typography-primary-font-family: "Roboto";
	--e-global-typography-primary-font-weight: 600;
	--e-global-typography-secondary-font-family: "Roboto Slab";
	--e-global-typography-secondary-font-weight: 400;
	--e-global-typography-text-font-family: "Roboto";
	--e-global-typography-text-font-weight: 400;
	--e-global-typography-accent-font-family: "Roboto";
	--e-global-typography-accent-font-weight: 500;
}

.elementor-kit-27 e-page-transition {
	background-color: #ffbc7d;
}

.elementor-section.elementor-section-boxed > .elementor-container {
	max-width: 1410px;
}

.e-con {
	--container-max-width: 1410px;
}

.elementor-widget:not(:last-child) {
	--kit-widget-spacing: 20px;
}

.elementor-element {
	--widgets-spacing: 20px 20px;
	--widgets-spacing-row: 20px;
	--widgets-spacing-column: 20px;
}

@media (max-width:1024px) {
	.elementor-section.elementor-section-boxed > .elementor-container {
		max-width: 1024px;
	}
	
	.e-con {
		--container-max-width: 1024px;
	}
}

@media (max-width:767px) {
	.elementor-section.elementor-section-boxed > .elementor-container {
		max-width: 767px;
	}
	
	.e-con {
		--container-max-width: 767px;
	}
}

/* Start custom CSS */

/* department descriptions  */

/* ===========================
   HerVibrators — Universal Department Styling
   Scope: .hv-dept-content (works for ALL departments)
=========================== */
.hv-dept-content {
	--hv-font: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	--hv-teal: #00b0b6;
	--hv-teal-600: #029aa0;
	--hv-pink: #f90572;
	--hv-ink: #1b1b1b;
	--hv-ink-soft: #4a4a4a;
	--hv-bg: #fff;
	--hv-bg-soft: #f7fbfc;
	--hv-card: #fff;
	--hv-border: #e8eef0;
	--hv-focus: #002f31;
	font-family: var(--hv-font);
	color: var(--hv-ink);
	background: var(--hv-bg);
	line-height: 1.65;
	letter-spacing: .1px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	border: 1px solid var(--hv-border);
	border-radius: 16px;
	padding: clamp(18px, 2.4vw, 28px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
}

/* Headings */
.hv-dept-content h2 {
	font-weight: 800;
	font-size: clamp(22px, 3vw, 30px);
	line-height: 1.2;
	margin: 0 0 12px;
	color: var(--hv-teal);
	letter-spacing: .2px;
}

.hv-dept-content h3 {
	font-weight: 800;
	font-size: clamp(18px, 2.4vw, 22px);
	margin: 22px 0 8px;
	color: var(--hv-ink);
}

.hv-dept-content h4 {
	font-weight: 700;
	font-size: clamp(16px, 2vw, 18px);
	margin: 18px 0 8px;
	color: var(--hv-ink);
}

/* Text & Lists */
.hv-dept-content p {
	margin: 10px 0 14px;
}

.hv-dept-content ul, .hv-dept-content ol {
	margin: 8px 0 14px 1.25em;
	padding: 0;
}

.hv-dept-content li {
	margin: 6px 0;
}

/* Blockquote highlight */
.hv-dept-content blockquote {
	background: var(--hv-bg-soft);
	border-left: 4px solid var(--hv-teal);
	padding: 12px 14px;
	margin: 16px 0;
	border-radius: 8px;
	color: var(--hv-ink-soft);
}

/* FAQ (definition list) */
.hv-dept-content dl {
	background: var(--hv-card);
	border: 1px solid var(--hv-border);
	border-radius: 12px;
	padding: 12px 14px;
}

.hv-dept-content dt {
	font-weight: 800;
	margin-top: 12px;
}

.hv-dept-content dd {
	margin: 6px 0 10px 0;
	color: var(--hv-ink-soft);
}

/* Links */
.hv-dept-content a {
	color: var(--hv-teal);
	text-underline-offset: 3px;
	transition: color .15s ease, background-color .15s ease, box-shadow .15s ease;
}

.hv-dept-content a:hover, .hv-dept-content a:focus {
	color: var(--hv-teal-600);
}

/* Section flow + decorative divider before first content after h3 */
.hv-dept-content article > * + * {
	margin-top: 8px;
}

.hv-dept-content h3 + p, .hv-dept-content h3 + ul, .hv-dept-content h3 + ol, .hv-dept-content h3 + blockquote {
	position: relative;
}

.hv-dept-content h3 + p::before, .hv-dept-content h3 + ul::before, .hv-dept-content h3 + ol::before, .hv-dept-content h3 + blockquote::before {
	content: "";
	position: absolute;
	top: -12px;
	left: 0;
	width: 48px;
	height: 3px;
	border-radius: 3px;
	background: linear-gradient(90deg, var(--hv-teal), var(--hv-pink));
}

/* CTA button system (universal) */
.hv-dept-content .hv-cta {
	display: grid;
	gap: 10px;
	margin: 12px 0 18px;
}

@media (min-width: 640px) {
	.hv-dept-content .hv-cta {
		grid-auto-flow: column;
		grid-auto-columns: max-content;
		justify-content: start;
		gap: 12px;
	}
}

.hv-dept-content .hv-cta--end {
	margin-top: 18px;
}

.hv-dept-content .hv-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 16px;
	border-radius: 999px;
	font-weight: 800;
	font-size: .96rem;
	text-decoration: none;
	line-height: 1;
	transition: transform .06s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease;
	box-shadow: 0 2px 0 rgba(0, 0, 0, .05);
	border: 2px solid transparent;
}

.hv-dept-content .hv-btn--primary {
	background: var(--hv-teal);
	color: #fff;
}

.hv-dept-content .hv-btn--primary:hover {
	background: var(--hv-teal-600);
	transform: translateY(-1px);
	box-shadow: 0 8px 20px rgba(0, 176, 182, .24);
}

.hv-dept-content .hv-btn--secondary {
	background: linear-gradient(90deg, var(--hv-teal), var(--hv-pink));
	color: #fff;
}

.hv-dept-content .hv-btn--secondary:hover {
	filter: brightness(1.05);
	transform: translateY(-1px);
	box-shadow: 0 8px 24px rgba(249, 5, 114, .22);
}

.hv-dept-content .hv-btn--outline {
	background: #fff;
	color: var(--hv-teal);
	border-color: var(--hv-border);
}

.hv-dept-content .hv-btn--outline:hover {
	border-color: var(--hv-teal);
	transform: translateY(-1px);
	box-shadow: 0 6px 18px rgba(0, 176, 182, .18);
}

/* Focus & accessibility */
.hv-dept-content a:focus-visible, .hv-dept-content .hv-btn:focus-visible {
	outline: 3px solid var(--hv-focus);
	outline-offset: 2px;
}

/* Responsive container padding */
@media (min-width: 768px) {
	.hv-dept-content {
		padding: 28px 32px;
	}
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
	.hv-dept-content {
		--hv-ink: #f5f7f8;
		--hv-ink-soft: #cad6d8;
		--hv-bg: #0c1213;
		--hv-bg-soft: #0f1a1b;
		--hv-card: #0f1617;
		--hv-border: #1e2a2c;
		--hv-focus: #8cf7fc;
		box-shadow: 0 10px 28px rgba(0, 0, 0, .5);
	}
	
	.hv-dept-content blockquote {
		background: var(--hv-bg-soft);
	}
	
	.hv-dept-content .hv-btn--outline {
		background: rgba(255, 255, 255, .06);
		color: #e8feff;
		border-color: rgba(255, 255, 255, .12);
	}
	
	.hv-dept-content .hv-btn--outline:hover {
		border-color: #00b0b6;
		background: rgba(255, 255, 255, .1);
	}
}

/* Off Canvas Cart Tab */
.rtsb-notice .wc-block-components-notice-banner:last-child {
	background: #333 !important;
}

.rtsb-notice .wc-block-components-notice-banner.is-success {
	background-color: #333 !important;
	border-color: #fff;
	font-size: 1em;
	font-family: "Poppins";
	padding: 1em !important;
	margin: 1em !important;
}

#rtsb-cart-float-menu .rtsb-cart-icon-total bdi {
	align-items: center;
	display: flex;
	justify-content: center;
	font-weight: 700 !important;
}

#rtsb-cart-float-menu .cart-icon .cart-icon-svg {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width=\'27\' height=\'27\' fill=\'none\' …Z\' stroke=\'%23fff\' stroke-width=\'1.5\' stroke-linecap=\'round\'/%3E%3C/svg%3E");
	display: none !important;
}

#rtsb-cart-float-menu .cart-icon .cart-icon-svg.nitro-lazy {
	background-image: none !important;
}

#rtsb-cart-float-menu .cart-icon .cart-number-wrapper .item-label {
	text-transform: capitalize;
	font-family: "Poppins" !important;
	font-size: 1.2em !important;
	font-weight: 700 !important;
}

#rtsb-cart-float-menu .cart-icon .rtsb-cart-icon-num {
	color: var(--rtsb-float-color);
	font-size: 1.5em !important;
	font-weight: 700 !important;
	text-transform: uppercase !important;
	font-family: "Poppins" !important;
}

#rtsb-cart-float-menu .cart-icon .rtsb-cart-icon-total bdi {
	font-weight: 800 !important;
	align-items: center !important;
	display: flex !important;
	justify-content: center !important;
}

/* off canvas cart coupon space */
.style3 #rtsb-side-content-area-id #rtsb-mini-coupon-form input {
	border: 1px solid #333;
	border-radius: 5px;
	flex: 1;
	margin: 0;
	padding: 0 15px;
	font-weight: 300;
}

#rtsb-side-content-area-id .woocommerce-mini-cart__buttons.buttons a {
	align-items: center;
	background: transparent;
	border: 0px solid #dbdbdb !important;
	border-radius: 5px;
	color: #111;
	display: flex;
	flex: 1;
	font-weight: 900 !important;
	height: 44px;
	justify-content: center;
	margin-top: 0;
	padding: .6rem 1rem;
	position: relative;
	transition: .4s;
}

/* stronger, site-wide, safe for live DOM */
.eael-product-grid.grid .eael-product-wrap .icons-wrap li {
	border-style: solid !important;
	border-width: 5px 1px 5px 1px !important;
	border-color: #000 !important;
	font-size: .85em !important;
	color: #fff !important;
	letter-spacing: -.3px !important;
}

/* Checkout Page*/
.select2-container--default .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-results__option--highlighted[data-selected] {
	background-color: #00b0b6;
	color: #fff !important;
	font-weight: 700;
}

.select2-container--default .select2-results__option[aria-selected=true], .select2-container--default .select2-results__option[data-selected=true] {
	background-color: #00b0b6;
	color: #fff !important;
	font-weight: 500;
}

.select2-results__option[aria-selected], .select2-results__option[data-selected] {
	cursor: pointer;
	font-weight: 500;
}

/* mini cart off canvas cart */
#rtsb-side-content-area-id #rtsb-mini-coupon-form [type=text] {
	font-size: 1em;
	color: #000 !important;
	font-weight: 500;
}
