/* YAVI shop header: logo left, centered main nav, icons right */

.navbar-top {
	padding-left: 0;
	padding-right: 0;
}

/* Hamburger toggler. aimeos.css ships NO .navbar-toggler-icon rule, and the
   <nav> carries no .navbar-light/.navbar-dark variant class (the only thing
   Bootstrap uses to paint the icon's background SVG) - so without this the
   button is a blank, invisible square and the shop appears to have no mobile
   menu at all. Same navy icon as the portal (see _yavi-header-footer.scss). */
.navbar-top .navbar-toggler {
	border: 1px solid rgba(9, 41, 65, .25);
	border-radius: .5rem;
	padding: .25rem .5rem;
}

.navbar-top .navbar-toggler:focus {
	outline: 0;
	box-shadow: 0 0 0 .2rem rgba(211, 138, 18, .25);
}

.navbar-top .navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(9, 41, 65, 0.85)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Stock theme's ".navbar.scroll" forces a dark navy background
   (var(--ai-primary)) with !important once the user scrolls. This site
   wants the navbar to stay white/light in both states. */
.navbar-top.scroll {
	background-color: var(--ai-bg) !important;
}

/* Stock theme's ".navbar-nav .active > .nav-link" forces white text
   (var(--ai-bg)) for the active item, meant for a dark nav context.
   On this light navbar-top it makes the active main-nav link invisible.
   Hardcoded hex (not var(--ai-primary)) to match the portal's own active
   color exactly - see _yavi-header-footer.scss for the portal side. */
.navbar-top .main-nav .nav-item.active > .nav-link {
	color: #fff !important;
	background-color: #d38a12;
}

/* Account dropdown: stock theme paints it dark navy
   (".navbar-nav .dropdown-menu { background-color: var(--ai-primary) }")
   with white text. Restyle as a plain white dropdown (Argon-style) with
   dark text/icons and a light hover, matching the portal's own dropdown. */
.navbar-top .navbar-nav .dropdown-menu {
	background-color: var(--ai-bg);
	border: 1px solid var(--ai-tertiary);
	color: var(--ai-primary);
	box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
}

/* Below the lg collapse breakpoint Bootstrap makes .navbar-nav .dropdown-menu
   position:static (dropdowns stack inline in a collapsed navbar). But this
   account dropdown sits in the always-visible .navbar-icons bar, not inside
   the collapse - a static menu there renders in-flow and stretches the
   header's height, misaligning every item. Force it to overlay (absolute),
   pinned to the right edge, at all widths. */
.navbar-top .navbar-icons .dropdown-menu {
	position: absolute;
	right: 0;
	left: auto;
}

/* Flex+gap for the icon/label spacing instead of relying on the literal
   whitespace character between them in the markup - that collapses to a
   single space whose rendered width depends on the current font (Roboto
   Condensed here vs Open Sans on the portal), so the gap looked different
   between domains. */
.navbar-top .navbar-nav .dropdown-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--ai-primary);
}

.navbar-top .navbar-nav .dropdown-item:hover,
.navbar-top .navbar-nav .dropdown-item:focus,
.navbar-top .navbar-nav .dropdown-item.active {
	background-color: var(--ai-tertiary-alt);
	color: var(--ai-primary);
}

/* Stock theme sets min-height: 10rem (160px) at >=992px; halve it.
   The stock theme also paints a dark "navbar background" band on body
   (sized to the old nav height) and pushes .content down by the same
   amount, so both must be halved too or a dark gap/overlap appears. */
@media (min-width: 992px) {
	.navbar-top {
		min-height: 5rem;
	}

	body {
		background-size: 100% 5rem;
	}

	body > .content,
	body .main-section {
		margin-top: 5rem;
	}
}

.navbar-top .navbar-collapse {
	flex: 1 1 auto;
	justify-content: center;
}

.navbar-top .main-nav {
	display: flex;
	align-items: center;
	gap: 2.5rem;
}

/* Button-style main nav links. Hardcoded hex (not var(--ai-primary)) so
   this matches the portal exactly - see _yavi-header-footer.scss. */
.navbar-top .main-nav .nav-link {
	color: #092941;
	font-weight: 500;
	white-space: nowrap;
	padding: .5rem 1.25rem;
	border-radius: .5rem;
	background-color: rgba(211, 138, 18, .08);
	transition: background-color .2s ease, color .2s ease;
}

.navbar-top .main-nav .nav-link:hover {
	color: #fff;
	background-color: #d38a12;
}

.navbar-top .navbar-icons {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

/* Bootstrap's .navbar-nav is flex-direction:column below the expand
   breakpoint (lg) - without this the basket and account icons stack
   vertically on mobile instead of sitting in one row next to CHF. */
.navbar-top .navbar-icons .navbar-nav {
	flex-direction: row;
	align-items: center;
}

/* Stock theme colors these icons var(--ai-bg) (white), which is invisible
   against the white, non-scrolled navbar background used on this site. */
.navbar-top .navbar-nav .login > .nav-link::before,
.navbar-top .navbar-nav .profile > .nav-link::before,
.navbar-top .navbar-nav .register > .nav-link::before {
	color: var(--ai-primary);
}

/* aimeos.css also has a generic ".navbar-nav .nav-link { color: var(--ai-bg) }"
   fallback with no icon-specific class required, which the shared header's
   plain <i> icon links (login/account) inherit from - !important to be safe
   regardless of stylesheet load order. */
.navbar-top .navbar-icons .nav-link {
	color: var(--ai-primary) !important;
	font-size: 1.2rem;
	display: flex;
	justify-content: center;
	align-items: center;
	align-content: center;
	height: 100%;
}

/* basket-mini's own CSS (basket-mini.css) is injected by the shared header
   component itself, in the body, so it loads AFTER this file and would
   otherwise win the ".menu:after" color tie at equal specificity. */
.navbar-top .basket-mini-main.menu::after {
	color: var(--ai-primary) !important;
}

/* Locale selector (language / currency): stock theme renders the closed
   trigger as var(--ai-bg) (white) text on the white navbar and stacks
   language/currency as separate blocks with a raw "» " prefix. */
.navbar-top .locale-select {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-inline-end: 0.75rem;
	padding-inline-end: 0.75rem;
	border-inline-end: 1px solid var(--ai-tertiary);
}

.navbar-top .locale-select-language,
.navbar-top .locale-select-currency {
	display: inline-block;
	min-width: 0;
}

/* Portal/shop only ever offer one language (EN) - no point showing a
   switcher for a choice that isn't one. Currency (CHF) stays selectable. */
.navbar-top .locale-select-language {
	display: none;
}

.navbar-top .locale-select ul.select-menu {
	font-size: 1rem;
	letter-spacing: 0.02em;
}

.navbar-top .locale-select li.select-dropdown > a::before {
	content: none;
}

/* Trigger link only ("EN" / "CHF"). Scoped with ">" so it never matches
   the dropdown panel's own links below. */
.navbar-top .locale-select ul.select-menu > li.select-dropdown > a {
	padding: 0.25rem 0.1rem;
	color: var(--ai-primary);
}

.navbar-top .locale-select ul.select-menu > li.select-dropdown > a:hover {
	color: var(--ai-warning) !important;
}

/* Dropdown panel - always sits on its own white background regardless of
   navbar scroll state, so its text must always stay dark. */
.navbar-top .locale-select ul.select-menu ul {
	background-color: #fff;
	border: 1px solid var(--ai-tertiary);
	box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
	border-radius: 0.5rem;
	min-width: 9rem;
	padding: 0.5rem 0;
}

.navbar-top .locale-select ul.select-menu ul li {
	padding: 0;
}

.navbar-top .locale-select ul.select-menu ul li a {
	display: block;
	padding: 0.5rem 1rem;
	font-size: 0.9rem;
	color: var(--ai-primary) !important;
}

.navbar-top .locale-select li.select-dropdown ul.select-dropdown li:hover {
	background-color: var(--ai-tertiary);
}

.navbar-top .locale-select li.select-dropdown ul.select-dropdown li:hover a {
	color: var(--ai-primary) !important;
}

@media (max-width: 991.98px) {
	.navbar-top .locale-select {
		border-inline-end: none;
		margin-inline-end: 0;
	}
}

/* Basket icon comes from the generic ".menu:after" rule (basket-mini.css),
   colored var(--ai-bg) (white) by default, invisible on the white navbar. */
.navbar-top .basket-mini-main {
	display: flex;
	align-items: center;
	justify-content: center;
	/* width: 2.5rem;
	height: 2.5rem; */
}

.navbar-top .basket-mini-main::after {
	color: var(--ai-primary);
}

@media (max-width: 991.98px) {
	/* Opened mobile menu: full-width stacked buttons with breathing room above
	   and below. align-items:stretch makes each .nav-item fill the row, and the
	   block .nav-link fills the item, so the button pills span the full width. */
	.navbar-top .main-nav {
		flex-direction: column;
		align-items: stretch;
		gap: 0.5rem;
		padding: 1rem 0;
	}
	.navbar-top .main-nav .nav-item { width: 100%; }
	.navbar-top .main-nav .nav-link { display: block; width: 100%; }

	/* Push icons + hamburger to the right of the logo; let the opened menu
	   (.navbar-collapse) drop onto its own full-width row underneath. Order
	   overrides the DOM sequence (toggler precedes .navbar-icons in markup so
	   it hides cleanly on desktop). Mirrors the portal - _yavi-header-footer.scss. */
	.navbar-top .navbar-brand { order: 1; margin-right: auto; }
	.navbar-top .navbar-icons { order: 2; gap: 0.25rem; }
	.navbar-top .navbar-toggler { order: 3; margin-left: 0.5rem; }
	.navbar-top .navbar-collapse { order: 4; flex-basis: 100%; }

	/* Full-width account dropdown on mobile, matching the portal. By default the
	   menu is absolute-anchored to its own narrow <li> (~34px), so it renders as
	   a compact box. Make the <li> position:static so the absolute menu instead
	   resolves against the .container-xxl (set relative here), then stretch it
	   edge to edge with left:0/right:0 - exactly how Argon does it on the portal
	   (there the NAV is the positioned ancestor). Desktop keeps the compact
	   dropdown (this only applies below the lg collapse breakpoint). */
	.navbar-top .container-xxl { position: relative; }
	.navbar-top .navbar-icons .dropdown { position: static; }
	.navbar-top .navbar-icons .dropdown-menu {
		left: 0;
		right: 0;
		width: auto;
	}
}

/* Homepage hero */

.shop-hero {
	background: linear-gradient(135deg, #e1bb76 0%, #d38a12 100%);
	padding: 4rem 0 3rem;
}

.shop-hero-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
}

.shop-hero-eyebrow {
	color: #092941;
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	margin-bottom: 1rem;
}

.shop-hero-headline {
	font-family: Georgia, 'Times New Roman', serif;
	color: #092941;
	font-size: 2.75rem;
	line-height: 1.2;
	margin-bottom: 1.25rem;
}

.shop-hero-text {
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.05rem;
	line-height: 1.5;
	max-width: 32rem;
	margin-bottom: 2rem;
}

.shop-hero-actions {
	display: flex;
	gap: 1rem;
}

.shop-hero-btn-primary,
.shop-hero-btn-outline {
	display: inline-block;
	padding: 0.75rem 1.5rem;
	border-radius: 0.4rem;
	font-weight: 600;
	text-decoration: none;
	transition: opacity 0.2s;
}

.shop-hero-btn-primary {
	background-color: var(--ai-primary);
	color: #fff;
	border: 1px solid var(--ai-primary);
}

.shop-hero-btn-outline {
	background-color: transparent;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.6);
}

.shop-hero-btn-primary:hover,
.shop-hero-btn-outline:hover {
	opacity: 0.85;
	color: #fff;
}

.shop-hero-image {
	border-radius: 1rem;
	overflow: hidden;
	box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.15);
}

.shop-hero-image img {
	display: block;
	width: 100%;
	height: 100%;
	max-height: 26rem;
	object-fit: cover;
}

.shop-hero-image-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 22rem;
	background-color: rgba(255, 255, 255, 0.35);
	color: rgba(255, 255, 255, 0.8);
	text-align: center;
	font-weight: 600;
	padding: 2rem;
}

.shop-hero-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.25rem;
	margin-top: 3rem;
}

.shop-stat-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: #fff;
	border-radius: 0.75rem;
	padding: 1.25rem 1.5rem;
	box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.08);
}

.shop-stat-label {
	color: var(--ai-secondary);
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 0.35rem;
}

.shop-stat-value {
	color: var(--ai-primary);
	font-size: 1.5rem;
	font-weight: 700;
}

.shop-stat-icon {
	width: 2.5rem;
	height: 2.5rem;
	min-width: 2.5rem;
	border-radius: 0.6rem;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
}

.shop-stat-icon::before {
	font: normal normal normal 17px/1 bootstrap-icons;
}

.shop-stat-icon-green {
	background-color: #16a34a;
}

.shop-stat-icon-green::before {
	content: "\f272"; /* check2 */
}

.shop-stat-icon-orange {
	background-color: #e1541a;
}

.shop-stat-icon-orange::before {
	content: "\f2ef"; /* diamond-fill */
}

.shop-stat-icon-pink {
	background-color: #ec0455;
}

.shop-stat-icon-pink::before {
	content: "\f586"; /* star-fill */
}

.shop-stat-icon-blue {
	background-color: #2563eb;
}

.shop-stat-icon-blue::before {
	content: "\f148"; /* arrow-up */
}

@media (max-width: 991.98px) {
	.shop-hero-inner {
		grid-template-columns: 1fr;
	}

	.shop-hero-headline {
		font-size: 2rem;
	}

	.shop-hero-stats {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 575.98px) {
	.shop-hero-stats {
		grid-template-columns: 1fr;
	}

	.shop-hero-actions {
		flex-direction: column;
	}
}

/* Footer */

.shop-footer-top {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr;
	gap: 2.5rem;
	padding-bottom: 2.5rem;
}

.shop-footer-logo img {
	display: block;
}

.shop-footer-tagline {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.9rem;
	line-height: 1.5;
	margin-top: 1rem;
	max-width: 18rem;
}

.shop-footer-heading {
	color: var(--bs-primary);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-bottom: 1.25rem;
}

.shop-footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.shop-footer-links li + li {
	margin-top: 0.85rem;
}

.shop-footer-links a {
	color: rgba(255, 255, 255, 0.85);
	text-decoration: none;
	font-size: 0.9rem;
}

.shop-footer-links a:hover {
	color: var(--bs-primary);
}

.shop-footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 1rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 1.5rem 0;
}

.shop-footer-copyright {
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.85rem;
	margin: 0;
}

.shop-footer-legal {
	list-style: none;
	display: flex;
	gap: 1.5rem;
	padding: 0;
	margin: 0;
}

.shop-footer-legal a {
	color: rgba(255, 255, 255, 0.5);
	text-decoration: none;
	font-size: 0.85rem;
}

.shop-footer-legal a:hover {
	color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 767.98px) {
	.shop-footer-top {
		grid-template-columns: 1fr 1fr;
		row-gap: 2rem;
	}

	.shop-footer-brand {
		grid-column: 1 / -1;
	}
}

@media (max-width: 575.98px) {
	.shop-footer-top {
		grid-template-columns: 1fr;
	}

	.shop-footer-bottom {
		flex-direction: column;
		align-items: flex-start;
	}
}

/* Product list cards: 2 per row */

.catalog-list-items.product-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
}

/* !important needed: stock rule ".aimeos:not(.cms-page) .product-list .product"
   sets width:48%/31%/23% at various breakpoints with higher specificity
   (the ":not()" pseudo-class counts towards specificity). */
.catalog-list-items.product-list .product {
	width: auto !important;
	margin: 0 !important;
	background-color: #fff;
	border-radius: 1rem;
	overflow: hidden;
	box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.06);
	text-align: start !important;
}

.catalog-list-items.product-list .list-column {
	padding: 0 1.25rem;
}

.catalog-list-items.product-list .list-column:first-of-type {
	padding: 0;
}

.catalog-list-items.product-list .media-list {
	background-color: #ece5d8;
	padding-top: 75% !important;
}

.catalog-list-items.product-list .media-item > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.catalog-list-items.product-list .badges {
	top: 1rem;
	left: 1rem;
}

.catalog-list-items.product-list .badge-item {
	border-radius: var(--ai-radius-round);
	padding: 0.35rem 0.9rem;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: normal;
	color: #fff;
}

.catalog-list-items.product-list .product.new .badge-item.new {
	background-color: #ec0455;
}

.catalog-list-items.product-list .product-info {
	display: none;
}

.catalog-list-items.product-list .text-list {
	margin-top: 1rem;
}

.catalog-list-items.product-list .text-list .name {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--ai-primary);
	white-space: normal;
}

.catalog-list-items.product-list .text-list .text-item {
	color: var(--ai-secondary);
	font-size: 0.9rem;
	margin: 0.25rem 0 0;
}

.catalog-list-items.product-list .offer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1rem;
	padding-bottom: 1.25rem;
}

.catalog-list-items.product-list .stock-list {
	display: none;
}

.catalog-list-items.product-list .price-item.default .value {
	color: var(--bs-primary);
	font-size: 1.3rem;
	white-space: nowrap;
}

.catalog-list-items.product-list form.basket {
	flex: 0 0 auto;
}

.catalog-list-items.product-list .addbasket {
	margin-top: 0;
}

.catalog-list-items.product-list .addbasket .input-group input[type="number"],
.catalog-list-items.product-list .addbasket .btn-pin {
	display: none;
}

.catalog-list-items.product-list .addbasket .btn-primary {
	width: 2.75rem !important;
	height: 2.75rem;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--bs-primary);
	border-color: var(--bs-primary);
	border-radius: 0.5rem;
	padding: 0;
	color: #fff;
}

.catalog-list-items.product-list .addbasket .input-group {
	display: inline-block;
	flex-shrink: 0;
	margin: 0 !important;
}

.catalog-list-items.product-list .addbasket,
.catalog-list-items.product-list form.basket {
	flex-shrink: 0;
}

.catalog-list-items.product-list .addbasket .btn-primary::before {
	font: normal normal normal 18px/1 bootstrap-icons;
	content: "\f179"; /* bag */
}

.catalog-list-items.product-list .addbasket .btn-primary:hover {
	background-color: var(--ai-primary) !important;
	border-color: var(--ai-primary) !important;
}

@media (max-width: 575.98px) {
	.catalog-list-items.product-list {
		grid-template-columns: 1fr;
	}
}

/* Homepage product teaser section */

.shop-products {
	padding: 4rem 0;
}

.shop-products-header {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	margin-bottom: 2rem;
}

.shop-products-heading {
	font-family: Georgia, 'Times New Roman', serif;
	color: var(--ai-primary);
	font-size: 2rem;
	margin: 0;
}

.shop-products-all {
	color: var(--bs-primary);
	font-weight: 600;
	text-decoration: none;
	white-space: nowrap;
}

.shop-products-all:hover {
	color: var(--ai-primary);
}

@media (max-width: 575.98px) {
	.shop-products-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.5rem;
	}
}

/* Product detail page (catalog/detail) - reskin the stock Aimeos markup
   (article.product.row, .catalog-detail-basic/-basket/-actions, the social
   partial, the swiffy-slider gallery) to match the design mockup. No custom
   blade/PHP override is used here - only CSS on top of Aimeos' own output,
   so basket, stock, pin/watch/favorite and social sharing all keep working
   as shipped. */

.catalog-stage,
.catalog-detail {
	/* background-color: #F5F6F8; */
}

.catalog-stage {
	padding-top: 0;
}

.catalog-stage-breadcrumb nav.breadcrumb {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.85rem;
	font-weight: 500;
	color: #8A8F98;
}

.catalog-stage-breadcrumb nav.breadcrumb .title {
	white-space: nowrap;
}

.catalog-stage-breadcrumb nav.breadcrumb ol {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.catalog-stage-breadcrumb nav.breadcrumb ol li a,
.catalog-stage-breadcrumb nav.breadcrumb ol li a.back {
	color: #C2790E;
	font-weight: 600;
	text-decoration: none;
}

.catalog-stage-breadcrumb nav.breadcrumb ol li a:hover {
	text-decoration: underline;
}

.catalog-detail {
	padding-bottom: 6rem;
}

.catalog-detail article.product.row {
	--bs-gutter-x: 4rem;
	align-items: flex-start;
	padding-top: 1.5rem;
}

/* Gallery */

.catalog-detail-image {
	margin-bottom: 0;
}

.catalog-detail-image .image-single {
	--swiffy-slider-item-ratio: 16/11;
	background-color: #0B1626;
	border-radius: 0.6rem;
	overflow: hidden;
}

.catalog-detail-image .image-single img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.catalog-detail-image .swiffy-slider {
	--swiffy-slider-nav-light: rgba(255, 255, 255, 0.9);
	--swiffy-slider-nav-dark: rgba(255, 255, 255, 0.15);
}

.catalog-detail-image .slider-nav {
	background-color: rgba(255, 255, 255, 0.15);
}

.catalog-detail-image .thumbs {
	--swiffy-slider-item-ratio: 1/1;
}

.catalog-detail-image .thumbs .thumbnail {
	border-radius: 0.4rem;
	overflow: hidden;
}

/* Basic info */

.catalog-detail-basic {
	margin-top: 0.25rem;
}

.catalog-detail-basic h1.name {
	font-size: 1.7rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	color: var(--ai-primary);
}

.catalog-detail-basic .code {
	color: #8A8F98;
	font-size: 0.85rem;
}

/* Price, stock, add to basket */

.catalog-detail-basket .price-list {
	margin-top: 1.25rem;
}

.catalog-detail-basket .price-item.price-actual {
	font-size: 1.9rem;
	font-weight: 700;
	color: var(--ai-primary);
}

.catalog-detail-basket .stock-list {
	text-align: start;
	padding: 0.75rem 0 0;
	width: auto;
}

.catalog-detail-basket .stock-list .stocktext {
	display: inline-block !important;
	font-weight: 600;
	font-size: 0.85rem;
}

.catalog-detail-basket .stock-list .stock-unlimited,
.catalog-detail-basket .stock-list .stock-high {
	color: var(--ai-success);
}

.catalog-detail-basket .stock-list .stock-low {
	color: var(--ai-warning);
}

.catalog-detail-basket .stock-list .stock-out {
	color: var(--ai-danger);
}

.catalog-detail-basket .addbasket .input-group {
	max-width: 24rem;
}

.catalog-detail-basket .addbasket input[type="number"] {
	border-color: #DDD9D1;
}

.catalog-detail-basket .addbasket .btn-action {
	background-color: #16223A;
	border-color: #16223A;
	font-weight: 700;
}

.catalog-detail-basket .addbasket .btn-action:hover {
	background-color: var(--ai-primary);
	border-color: var(--ai-primary);
}

/* Pin / watch / favorite + social share icons */

.catalog-detail-actions {
	margin-top: 1.5rem;
	align-items: center;
}

.catalog-actions .actions-button:before {
	color: var(--ai-primary);
}

.catalog-actions .actions-button-pin:before {
	content: "\f589"; /* bi-stars, matches the mockup's sparkle icon */
}

.catalog-social {
	gap: 0.6rem;
}

.catalog-social .social-button {
	width: 2.2rem;
	height: 2.2rem;
	border-radius: 50%;
	background-color: #16223A;
	font-size: 100% !important;
}

.catalog-social .social-button:before {
	color: #fff;
	padding: 0 !important;
}

.catalog-social .social-button:hover {
	background-color: var(--ai-primary);
}

@media (max-width: 767.98px) {
	.catalog-detail article.product.row > [class*="col-"] {
		margin-bottom: 2rem;
	}
}

/* ==========================================================================
   Account page (Shop Addresses / Reviews / Saved Baskets / Order history) -
   renders inside the portal sidebar layout (see resources/views/vendor/shop/
   base.blade.php), so restyle Aimeos' plain default markup to match the
   portal's Argon-based cards instead of looking like a separate app.
   ========================================================================== */

.page-account-index .konto-content > .content {
	padding: 1.5rem 0;
}

/* Scoped to .konto-content (not just the body class) so this never touches
   the header's own "section aimeos" widgets (locale-select, basket-mini). */
.page-account-index .konto-content .section.aimeos {
	background-color: #fff;
	border: 1px solid rgba(0, 0, 0, .05);
	border-radius: .75rem;
	box-shadow: 0 0 2rem 0 rgba(136, 152, 170, .15);
	margin-bottom: 1.5rem;
	padding: 1.5rem;
}

.page-account-index .konto-content .section.aimeos > .container-xxl {
	padding: 0;
	max-width: none;
}

.page-account-index .konto-content h2.header,
.page-account-index .konto-content h3.header {
	font-size: 1.0625rem;
	font-weight: 600;
	color: #32325d;
	text-transform: none;
	letter-spacing: normal;
	border-bottom: 1px solid rgba(0, 0, 0, .05);
	padding-bottom: .75rem;
	margin-bottom: 1.25rem;
}

.page-account-index .konto-content .accordion-item,
.page-account-index .konto-content .basket-item,
.page-account-index .konto-content .history-item {
	border: 1px solid rgba(0, 0, 0, .05);
	border-radius: .5rem;
	margin-bottom: 1rem;
	padding: 1rem;
}

.page-account-index .konto-content .accordion-item .header {
	cursor: pointer;
	margin-bottom: 0;
	border-bottom: none;
	padding-bottom: 0;
}

.page-account-index .konto-content .accordion-item .address.collapse.show,
.page-account-index .konto-content .accordion-item .address.collapsing {
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(0, 0, 0, .05);
}

.page-account-index .konto-content .btn-primary {
	background-color: #d38a12;
	border-color: #d38a12;
	color: #fff;
}

.page-account-index .konto-content .btn-primary:hover {
	background-color: #b8790f;
	border-color: #b8790f;
}

.page-account-index .konto-content .btn-secondary {
	background-color: #fff;
	border-color: #dee2e6;
	color: #32325d;
}

.page-account-index .konto-content .btn-secondary:hover {
	background-color: #f7fafc;
	border-color: #dee2e6;
}

/* Stack delivery address below billing address instead of side-by-side. */
.page-account-index .konto-content .account-profile-address .payment.col-md-6,
.page-account-index .konto-content .account-profile-address .delivery.col-md-6 {
	flex: 0 0 100%;
	max-width: 100%;
	width: 100%;
}

.page-account-index .konto-content .account-profile-address .delivery.col-md-6 {
	margin-top: 1.5rem;
}

/* Matches the portal's <body> background/font (see _custom-style.scss). */
body.page-account-index {
	background-color: #f8f9fe;
	font-family: "Open Sans", sans-serif;
}

/* ...except the header itself: yavi.css deliberately keeps
   "#yavi-header, .yavi-footer" on "Roboto Condensed" (brand typography),
   distinct from the Open Sans body copy. Restore that here too, since the
   shop theme's own default for #yavi-header (inherited from body) would
   otherwise become Open Sans along with everything else above. */
.page-account-index #yavi-header {
	font-family: "Roboto Condensed", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

/* yavi.css nudges ".ni" icons down (top:2px/4px) to optically align them
   with Open Sans' baseline on the portal; re-zero that here since it
   throws off vertical centering in the sidebar/breadcrumb on this page. */
.page-account-index i.ni {
	position: relative;
	top: 1px;
}

/* Matches the portal's own ".nav-link i.ni" rule (see _nav.scss). */
.page-account-index .nav-link i.ni {
	position: relative;
	top: 0px;
}

/* Ported from yavi.css (portal-only stylesheet, not loaded on the shop
   domain) so the sidebar/breadcrumb components render correctly here too,
   without pulling in the whole portal stylesheet and risking a clash with
   the shop's own Bootstrap build. */
.page-account-index .konto-container {
	/* aimeos.css makes ".navbar" (incl. our shared <x-yavi.header>) fixed
	   at the top with min-height 4rem on this domain only - the portal
	   itself doesn't fix its header, so this offset only needs to exist
	   here, not in yavi.css. */
	padding-top: 5rem;
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
	max-width: 1320px;
}

.page-account-index .konto-layout {
	display: flex;
	align-items: flex-start;
}

.page-account-index .konto-sidebar {
	flex: 0 0 220px;
	width: 220px;
	box-shadow: 0 0 2rem 0 rgba(136,152,170,.15);
	border-radius: .75rem;
	background-color: #fff;
	margin-top: 1.5rem !important;
}

.page-account-index .konto-sidebar .nav-link {
	display: flex;
	align-items: center;
	gap: .75rem;
	padding: .65rem 1.5rem .65rem 0rem;
	color: #525f7f;
	font-weight: 600;
	min-width: 100%;

}

.page-account-index .konto-sidebar .nav-link i {
	font-size: 1rem;
}

.page-account-index .konto-sidebar .nav-link.active,
.page-account-index .konto-sidebar .nav-link:hover {
	color: #d38a12;
}

.page-account-index .konto-content {
	/* Aimeos' Bootstrap bundle doesn't include the "flex-grow-1"/"min-w-0"
	   utility classes used in the markup, so set them explicitly or this
	   column shrinks to its content instead of filling the row. */
	flex: 1 1 auto;
	min-width: 0;
}

.page-account-index .konto-content .bg-gradient-primary {
	background: linear-gradient(87deg, #523cec 0, #700069 100%) !important;
}

/* Aimeos' Bootstrap bundle doesn't include these spacing/utility classes at
   all, so the breadcrumb header (built from them) rendered paper-thin
   instead of matching the portal's Licences/Orders/... header size. */
.page-account-index .konto-content .mt-4 {
	margin-top: 1.5rem !important;
}

.page-account-index .konto-content .pb-4 {
	padding-bottom: 1.5rem !important;
}

.page-account-index .konto-content .py-4 {
	padding-top: 1.5rem !important;
	padding-bottom: 1.5rem !important;
}

.page-account-index .konto-content .p-3 {
	padding: 1rem !important;
}

.page-account-index .konto-content .rounded {
	border-radius: .375rem !important;
}

.page-account-index .breadcrumb-dark .breadcrumb-item {
	font-weight: 600;
}

.page-account-index .breadcrumb-dark .breadcrumb-item a {
	color: #f6f9fc;
}

.page-account-index .breadcrumb-dark .breadcrumb-item a:hover {
	color: #fff;
}

.page-account-index .breadcrumb-dark .breadcrumb-item + .breadcrumb-item::before {
	color: #adb5bd;
}

.page-account-index .breadcrumb-dark .breadcrumb-item.active {
	color: #dee2e6;
}

.page-account-index .breadcrumb-links {
	padding: 0;
	margin: 0;
	background: transparent;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
}

.page-account-index .breadcrumb-links .breadcrumb-item + .breadcrumb-item {
	padding-left: .5rem;
}

.page-account-index .breadcrumb-links .breadcrumb-item + .breadcrumb-item::before {
	display: inline-block;
	padding-right: .5rem;
	color: #adb5bd;
	content: "-";
}

.page-account-index .konto-sidebar .nav {
	list-style: none;
	padding: 10px;
	margin-bottom: 0;
}

@media (max-width: 991.98px) {
	.page-account-index .konto-layout {
		flex-direction: column;
	}

	.page-account-index .konto-sidebar {
		width: 100%;
		flex: 0 0 auto;
		padding: .5rem 0;
	}
}
