/**
* Theme Name: Bikys Child
* Description: This is a child theme of Bikys, generated by Merlin WP.
* Author: <a href="https://wpopal.com/">Opalthemes</a>
* Template: bikys
* Version: 1.8.1
*/

/* =====================================================================
   Eigenes Warenkorb-Template (woocommerce/cart/cart.php, cart-item-data.php,
   cart-totals.php) mit eigenständigen Klassen (aero-cart-*), damit hier nichts
   mit Theme-/Elementor-Kaskade kollidiert.
   ===================================================================== */

.aero-cart {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	align-items: flex-start;
	font-family: var(--e-global-typography-text-font-family);
	color: var(--text);
}

.aero-cart-form {
	flex: 1 1 600px;
	min-width: 0;
}

/* ---------- Artikel-Liste ---------- */

.aero-cart-items__head {
	display: grid;
	grid-template-columns: 32px 90px 1fr 130px 120px 130px;
	gap: 16px;
	align-items: center;
	padding: 0 0 16px;
	border-bottom: 1px solid var(--border);
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	color: var(--light);
}

.aero-cart-item {
	display: grid;
	grid-template-columns: 32px 90px 1fr 130px 120px 130px;
	gap: 16px;
	align-items: flex-start;
	padding: 24px 0;
	border-bottom: 1px solid var(--border);
}

.aero-cart-items__col--subtotal {
	text-align: right;
}

.aero-cart-item__remove-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	color: var(--light);
	font-size: 18px;
	line-height: 1;
	text-decoration: none;
}

.aero-cart-item__remove-link:hover {
	color: var(--highlight);
	background: var(--background_light);
}

.aero-cart-item__thumbnail img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 6px;
	border: 1px solid var(--border);
}

.aero-cart-item__name {
	font-weight: 600;
	color: var(--accent);
	margin-bottom: 8px;
}

.aero-cart-item__name a {
	color: inherit;
}

.aero-cart-item__mobile-price {
	display: none;
	margin-top: 8px;
	font-weight: 600;
}

.aero-cart-item__price,
.aero-cart-item__subtotal {
	font-weight: 600;
}

.aero-cart-item__subtotal {
	text-align: right;
}

/* Kompakter Mengen-Stepper, 1:1 portiert von "table.cart .product-quantity .quantity"
   (bikys/assets/css/woocommerce/woocommerce.css:4215-4279) auf unsere Klassen — sonst
   fallen die Plus/Minus-Buttons auf den generischen großen gelben Button-Style zurück. */
.aero-cart-item__qty .quantity {
	position: relative;
	overflow: hidden;
	width: 110px;
	height: 48px;
	border: 1px solid var(--border);
	display: inline-flex;
	justify-content: center;
	align-items: center;
}

.aero-cart-item__qty .quantity button {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0;
	margin: 0;
	text-align: center;
	border: none;
	width: 30%;
	height: 48px;
	font-size: 18px;
	border-radius: 0;
	color: #000000;
	background-color: #ffffff;
	box-shadow: none;
}

.aero-cart-item__qty .quantity button:hover {
	background-color: var(--primary);
	outline: none;
}

.aero-cart-item__qty .quantity .qty {
	width: 40%;
	padding: 10px 0;
	margin: 0;
	border: none;
	-moz-appearance: textfield;
	text-align: center;
	color: #000000;
	flex: 1;
	font-weight: 700;
	background: transparent;
}

.aero-cart-item__qty .quantity .qty::-webkit-outer-spin-button,
.aero-cart-item__qty .quantity .qty::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* ---------- Konfigurator-Attribute (cart-item-data.php) ---------- */

.aero-cart-item-data {
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.aero-cart-item-data__row {
	display: flex;
	gap: 6px;
	font-size: 14px;
	line-height: 1.5;
}

.aero-cart-item-data__key {
	color: var(--light);
	font-weight: 400;
	white-space: nowrap;
}

.aero-cart-item-data__key::after {
	content: ":";
}

.aero-cart-item-data__value {
	margin: 0;
	color: var(--text);
	font-weight: 500;
	word-break: break-word;
}

.aero-cart-item-data__value p {
	margin: 0;
}

/* ---------- Aktionen: Gutschein / Update ---------- */

.aero-cart-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
	justify-content: space-between;
	padding-top: 24px;
}

.aero-cart-coupon {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
}

.aero-cart-coupon__input {
	min-width: 200px;
}

/* ---------- Warenkorb-Summe (cart-totals.php) ---------- */

.aero-cart-collaterals {
	flex: 0 1 380px;
	min-width: 300px;
}

.aero-cart-totals {
	border: 1px solid var(--border);
	border-radius: 8px;
	padding: 28px;
	font-family: var(--e-global-typography-text-font-family);
}

.aero-cart-totals__heading {
	font-family: var(--e-global-typography-accent-font-family);
	font-size: 20px;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	margin: 0 0 20px;
}

.aero-cart-totals__rows {
	display: flex;
	flex-direction: column;
}

.aero-cart-totals__row {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 16px;
	padding: 14px 0;
	border-bottom: 1px solid var(--border);
	font-size: 15px;
}

.aero-cart-totals__label {
	color: var(--text);
}

.aero-cart-totals__value {
	text-align: right;
	font-weight: 600;
}

.aero-cart-totals__row--total {
	border-bottom: none;
	padding-top: 20px;
}

.aero-cart-totals__row--total .aero-cart-totals__label {
	font-weight: 700;
}

.aero-cart-totals__row--total .aero-cart-totals__value {
	font-size: 22px;
	font-weight: 700;
}

.aero-cart-totals__row--total .aero-cart-totals__value .includes_tax {
	display: block;
	margin-top: 4px;
	font-size: 13px;
	font-weight: 400;
	color: var(--text_light);
}

.aero-cart-totals__checkout {
	margin-top: 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.aero-cart-totals__checkout .button {
	width: 100%;
	text-align: center;
}

/* ---------- Versand-Zeile + Versandrechner (cart-shipping.php / WC-Kern-Formular) ---------- */

.aero-cart-totals__row--shipping {
	flex-direction: column;
	align-items: stretch;
}

.aero-cart-totals__row--shipping .aero-cart-totals__label {
	margin-bottom: 8px;
}

.aero-cart-totals__shipping-content {
	text-align: left;
	font-weight: 400;
	width: 100%;
}

.aero-cart-totals__shipping-content ul.woocommerce-shipping-methods {
	list-style: none;
	margin: 0 0 8px;
	padding: 0;
}

.woocommerce-shipping-destination {
	font-size: 13px;
	color: var(--text_light);
	margin: 0 0 8px;
}

/* WooCommerce-Kern-Versandrechner: eigene Breite/Stacking, damit er sich innerhalb
   der Warenkorb-Summe-Karte öffnet statt drüber hinauszuwachsen. */
.aero-cart-totals__shipping-content .woocommerce-shipping-calculator {
	width: 100%;
}

.aero-cart-totals__shipping-content .shipping-calculator-button {
	display: inline-block;
	font-size: 13px;
	text-decoration: underline;
	color: var(--text);
}

.aero-cart-totals__shipping-content .shipping-calculator-form {
	width: 100%;
	box-sizing: border-box;
	margin-top: 12px;
	padding: 16px;
	border: 1px solid var(--border);
	border-radius: 6px;
	background: var(--background_light);
}

.aero-cart-totals__shipping-content .shipping-calculator-form .form-row-wide {
	width: 100%;
	margin: 0 0 10px;
}

.aero-cart-totals__shipping-content .shipping-calculator-form label {
	display: block;
	font-size: 13px;
	margin-bottom: 4px;
}

.aero-cart-totals__shipping-content .shipping-calculator-form select,
.aero-cart-totals__shipping-content .shipping-calculator-form input[type="text"] {
	width: 100%;
	box-sizing: border-box;
}

/* ---------- Mobile ---------- */

@media (max-width: 782px) {
	.aero-cart-items__head {
		display: none;
	}

	.aero-cart-item {
		grid-template-columns: 28px 70px 1fr;
		grid-template-areas:
			"remove thumb main"
			"remove thumb main";
	}

	.aero-cart-item__remove {
		grid-area: remove;
	}

	.aero-cart-item__thumbnail {
		grid-area: thumb;
	}

	.aero-cart-item__main {
		grid-area: main;
	}

	.aero-cart-item__price,
	.aero-cart-item__subtotal {
		display: none;
	}

	.aero-cart-item__mobile-price {
		display: block;
	}

	.aero-cart-item__qty {
		grid-column: 1 / -1;
		margin-top: 12px;
	}

	.aero-cart-collaterals {
		flex-basis: 100%;
	}
}

/* =====================================================================
   Eigenes Checkout-Template (woocommerce/checkout/form-checkout.php,
   review-order.php) — Bestellübersicht als Karte, entrümpelt: keine doppelte
   "Zwischensumme"-Beschriftung, nur die Gesamtsumme ist wirklich fett.
   ===================================================================== */

.aero-checkout-review {
	border: 1px solid var(--border);
	border-radius: 8px;
	padding: 28px;
	font-family: var(--e-global-typography-text-font-family);
}

.aero-checkout-review__heading {
	font-family: var(--e-global-typography-accent-font-family);
	font-size: 20px;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	margin: 0 0 20px;
}

.aero-checkout-table {
	width: 100%;
	border-collapse: collapse;
}

.aero-checkout-table td,
.aero-checkout-table th {
	padding: 12px 0;
	border-bottom: 1px solid var(--border);
	text-align: left;
	font-size: 15px;
	font-weight: 400;
	vertical-align: top;
	word-break: normal;
	overflow-wrap: break-word;
}

.aero-checkout-table .product-total,
.aero-checkout-table th:last-child,
.aero-checkout-table td:last-child {
	text-align: right;
	white-space: nowrap;
}

.aero-checkout-table tbody td.product-name {
	font-weight: 600;
	color: var(--accent);
}

.aero-checkout-table tbody .product-total {
	font-weight: 400;
	white-space: normal;
}

.aero-checkout-table .aero-cart-item-data {
	margin-top: 6px;
	font-weight: 400;
}

.aero-checkout-table tfoot th {
	font-weight: 400;
	color: var(--text);
}

.aero-checkout-table tfoot td {
	font-weight: 600;
	text-align: right;
}

.aero-checkout-table .order-total th,
.aero-checkout-table .order-total td {
	border-bottom: none;
	padding-top: 18px;
	font-size: 16px;
	font-weight: 600;
}

/* <strong> hat einen eigenen Browser-Standard-Fettdruck, der die Regel oben auf dem
   td/th ignoriert; ausserdem greift hier evtl. wieder Elementor-Widget-Typografie
   wie beim Warenkorb -> direkt auf Preis-Element zielen, mit !important absichern. */
.aero-checkout-table .order-total strong,
.aero-checkout-table .order-total .woocommerce-Price-amount {
	font-size: 16px !important;
	font-weight: 600 !important;
}

.aero-checkout-table .order-total .includes_tax {
	display: block;
	margin-top: 4px;
	font-size: 13px;
	font-weight: 400;
	color: var(--text_light);
}

/* Zahlungsmethoden / Bedingungen / Bestellbutton (checkout/payment.php, terms.php) */

.aero-checkout-review ul.wc_payment_methods {
	list-style: none;
	margin: 24px 0 0;
	padding: 0;
}

.aero-checkout-review ul.wc_payment_methods li {
	padding: 14px 0;
	border-bottom: 1px solid var(--border);
	font-size: 15px;
}

.aero-checkout-review .woocommerce-privacy-policy-text {
	font-size: 12px;
	color: var(--text_light);
	margin: 16px 0;
}

.aero-checkout-review .woocommerce-terms-and-conditions-wrapper {
	font-size: 13px;
	margin-bottom: 16px;
}

.aero-checkout-review .place-order .button {
	width: 100%;
	text-align: center;
}

/* =====================================================================
   Eigene Produktseite (woocommerce/content-single-product.php) --
   links Galerie (scrollt normal), rechts sticky Kauf-Box.
   ===================================================================== */

.aero-product__layout {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: clamp(32px, 5vw, 80px);
	align-items: start;
	max-width: 1320px;
	margin: 0 auto;
	padding: clamp(24px, 4vw, 48px) clamp(20px, 4vw, 48px) 0;
	font-family: var(--e-global-typography-text-font-family);
}

.aero-product__gallery {
	min-width: 0;
}

.aero-product__gallery .woocommerce-product-gallery__wrapper,
.aero-product__gallery img {
	border-radius: 8px;
}

/* Erzwingt gestapelte Galerie-Bilder (untereinander) statt Slider/Thumbnail-Leiste
   -- unabhaengig davon, was Theme/Elementor sonst fuer die Galerie vorsehen.
   Noetig, damit die Sticky-Kaufbox rechts genug Scroll-Hoehe links hat. */
/* Fallback fuer den WC-Standard-Slider (falls die Variation Gallery mal aus ist) */
.woocommerce-product-gallery__wrapper {
	display: flex !important;
	flex-direction: column !important;
	gap: 16px;
}

.woocommerce-product-gallery__image {
	display: block !important;
	width: 100% !important;
	opacity: 1 !important;
}

.flex-control-thumbs,
.woocommerce-product-gallery__thumbnail,
.flex-direction-nav {
	display: none !important;
}

.rtwpvg-images .rtwpvg-single-image-container img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 8px;
}

/* "RT WooCommerce Product Variation Gallery"-Plugin (aktiv, liefert die
   Bilder pro Farbvariante) nutzt intern Swiper.js, das Breite/Position sogar
   per Inline-Style direkt am Element setzt (z.B. style="width:715px",
   transform:translate3d(...)). !important in dieser Stylesheet-Regel
   gewinnt trotzdem gegen Inline-Styles ohne !important -- so wird die
   Slider-Mechanik ausgehebelt, ohne das Plugin/die Variantenbilder selbst
   abzuschalten.

   NUR ab 901px (Desktop/Tablet, gleiche Grenze wie das 2-Spalten-Layout) --
   am Handy bleibt bewusst der normale Plugin-Slider oben, weil dort keine
   Sticky-Kaufbox greift und ein hoher Bilderstapel vor "Kaufen" nur stoert. */
@media (min-width: 901px) {
	.rtwpvg-slider.swiper .swiper-wrapper {
		display: flex !important;
		flex-direction: column !important;
		width: 100% !important;
		height: auto !important;
		transform: none !important;
	}

	.rtwpvg-slider.swiper .swiper-slide {
		display: block !important;
		position: static !important;
		width: 100% !important;
		height: auto !important;
		max-width: 100% !important;
		margin-bottom: 16px;
		opacity: 1 !important;
		transform: none !important;
	}

	/* Eigene Pfeil-Buttons (siehe functions.php) sind nur am Handy/Slider-Modus sinnvoll */
	.aero-gallery-nav {
		display: none !important;
	}
}

/* Miniaturbilder-Leiste unter dem Hauptbild komplett aus -- auf allen
   Groessen, nicht nur Desktop (die 4 Bilder sind ja entweder gestapelt
   sichtbar (ab 901px) oder per Wisch-Geste/Pfeil erreichbar (Handy)). */
.rtwpvg-images .rtwpvg-thumbnail-wrapper {
	display: none !important;
}

.rtwpvg-images .rtwpvg-slider-wrapper {
	position: relative;
}

/* Eigene Pfeil-Buttons fuer den Handy-Slider (Swiper-eigene Navigation ist
   Pro-only). JS haengt die per functions.php ein und ruft swiper.slideNext()/
   slidePrev() auf der bereits geladenen Swiper-Instanz auf. */
.aero-gallery-nav {
	all: unset;
	box-sizing: border-box !important;
	position: absolute !important;
	top: 50% !important;
	transform: translateY(-50%) !important;
	z-index: 5 !important;
	width: 36px !important;
	height: 36px !important;
	min-width: 36px !important;
	max-width: 36px !important;
	min-height: 36px !important;
	max-height: 36px !important;
	padding: 0 !important;
	margin: 0 !important;
	border: none !important;
	border-radius: 50% !important;
	background: rgba(255,255,255,0.9) !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	cursor: pointer !important;
	box-shadow: 0 2px 8px rgba(0,0,0,0.2) !important;
}

.aero-gallery-nav svg {
	width: 18px !important;
	height: 18px !important;
	display: block !important;
	flex: none !important;
	pointer-events: none;
}

.aero-gallery-nav--prev {
	left: 12px;
}

.aero-gallery-nav--next {
	right: 12px;
}

.aero-product__summary {
	/* Sticky-Verhalten kommt aus Elementor selbst (Erweitert -> Bewegungseffekte
	   -> Sticky), hier nur noch Layout/Spacing, kein eigenes position:sticky
	   mehr -- sonst kollidiert's mit Elementors eigenem Mechanismus. */
	min-width: 0;
}

.aero-product__summary-inner {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.aero-product .product_title {
	font-family: var(--e-global-typography-accent-font-family);
	font-size: 28px;
	font-weight: 800;
	color: var(--accent);
	margin: 0 0 12px;
	text-transform: none;
}

.aero-product .woocommerce-product-details__short-description {
	font-size: 15px;
	line-height: 1.7;
	color: var(--text);
	margin: 16px 0 24px;
}

.aero-product .woocommerce-product-details__short-description strong {
	color: var(--accent);
	font-weight: 700;
}

.aero-product p.price {
	font-family: var(--e-global-typography-accent-font-family);
	font-size: 26px;
	font-weight: 700;
	color: var(--accent);
	margin: 0 0 8px;
}

/* Variationsformular (woo-variation-swatches rendert die Swatches selbst,
   wir stylen nur die generischen Container-Klassen). */
.aero-product .variations {
	margin: 0 0 20px;
}

.aero-product .variations td.label {
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--text_light);
	padding-bottom: 10px;
}

.aero-product ul.variable-items-wrapper {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	padding: 0;
}

.aero-product li.variable-item {
	border: 1px solid var(--border);
	border-radius: 6px;
	padding: 10px 16px;
	font-size: 13px;
	font-weight: 600;
	color: var(--text);
	cursor: pointer;
	transition: border-color 0.2s ease, color 0.2s ease;
}

.aero-product li.variable-item:hover {
	border-color: var(--accent);
}

.aero-product li.variable-item.selected {
	border-color: var(--accent);
	background: var(--accent);
	color: #fff;
}

.aero-product .woocommerce-variation-price .price {
	font-size: 22px;
	margin: 16px 0;
}

/* Menge + Kaufen-Button -- gleicher kompakter Stepper wie im Warenkorb. */
.aero-product .quantity {
	position: relative;
	overflow: hidden;
	width: 110px;
	height: 52px;
	border: 1px solid var(--border);
	display: inline-flex;
	justify-content: center;
	align-items: center;
	margin-right: 12px;
}

.aero-product .quantity button {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0;
	margin: 0;
	border: none;
	width: 30%;
	height: 52px;
	font-size: 18px;
	color: #000;
	background-color: #fff;
}

.aero-product .quantity button:hover {
	background-color: var(--primary);
}

.aero-product .quantity .qty {
	width: 40%;
	padding: 10px 0;
	margin: 0;
	border: none;
	text-align: center;
	color: #000;
	flex: 1;
	font-weight: 700;
	background: transparent;
}

.aero-product .cart {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin: 20px 0;
}

.aero-product .single_add_to_cart_button {
	flex: 1;
	min-width: 200px;
	height: 52px;
	background: var(--primary) !important;
	color: #000 !important;
	border: none !important;
	border-radius: 4px;
	font-weight: 800;
	font-size: 14px;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.aero-product .single_add_to_cart_button:hover {
	background: var(--primary_hover) !important;
}

.aero-product__below {
	max-width: 1320px;
	margin: 60px auto 0;
	padding: 0 clamp(20px, 4vw, 48px) 60px;
}

@media (max-width: 900px) {
	.aero-product__layout {
		grid-template-columns: 1fr;
	}
}

/* =====================================================================
   Kundenbereich (woocommerce/myaccount/my-account.php) -- 2 Spalten,
   Navigation als eigene Karte links, Inhalt rechts. Heller/cleaner Stil
   wie Warenkorb & Checkout.
   ===================================================================== */

.aero-account {
	display: grid !important;
	grid-template-columns: 260px minmax(0, 1fr) !important;
	gap: 40px !important;
	align-items: start !important;
	max-width: 1200px;
	margin: 0 auto;
	padding: clamp(24px, 4vw, 48px) clamp(20px, 4vw, 48px) 80px;
	font-family: var(--e-global-typography-text-font-family);
}

.aero-account > * {
	min-width: 0 !important;
}

.woocommerce-MyAccount-navigation {
	box-sizing: border-box !important;
	width: 100% !important;
	max-width: 100% !important;
	min-width: 0 !important;
	border: 1px solid var(--border);
	border-radius: 8px;
	padding: 12px;
	position: sticky;
	top: 100px;
}

.woocommerce-MyAccount-navigation ul {
	list-style: none;
	margin: 0 !important;
	padding: 0 !important;
	width: 100% !important;
}

.woocommerce-MyAccount-navigation-link {
	width: 100% !important;
}

.woocommerce-MyAccount-navigation-link {
	border-bottom: 1px solid var(--border);
}

.woocommerce-MyAccount-navigation-link:last-child {
	border-bottom: none;
}

.woocommerce-MyAccount-navigation-link a {
	box-sizing: border-box !important;
	width: 100% !important;
	max-width: 100% !important;
	white-space: nowrap !important;
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	padding: 14px 12px !important;
	color: var(--text) !important;
	text-decoration: none !important;
	font-size: 14px !important;
	font-weight: 600 !important;
	border-radius: 6px;
	transition: background 0.15s ease, color 0.15s ease;
}

.woocommerce-MyAccount-navigation-link a:hover {
	background: var(--background_light);
	color: var(--accent) !important;
}

.woocommerce-MyAccount-navigation-link.is-active a {
	color: var(--accent) !important;
	background: var(--background_light);
	position: relative;
}

.woocommerce-MyAccount-navigation-link.is-active a::after {
	content: "";
	position: absolute;
	left: -12px;
	top: 8px;
	bottom: 8px;
	width: 3px;
	background: var(--primary);
	border-radius: 2px;
}

.aero-account__content {
	min-width: 0;
	font-size: 15px;
	line-height: 1.7;
	color: var(--text);
}

.aero-account__content h2,
.aero-account__content h3 {
	font-family: var(--e-global-typography-accent-font-family);
	color: var(--accent);
}

.aero-account__content .woocommerce-Button,
.aero-account__content button.button,
.aero-account__content input.button {
	background: var(--primary) !important;
	color: #000 !important;
	border: none !important;
	border-radius: 4px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	font-size: 13px;
	padding: 12px 24px;
}

.aero-account__content .woocommerce-Button:hover,
.aero-account__content button.button:hover,
.aero-account__content input.button:hover {
	background: var(--primary_hover) !important;
}

.aero-account__content table.woocommerce-table {
	border: 1px solid var(--border);
	border-collapse: collapse;
	width: 100%;
}

.aero-account__content table.woocommerce-table th,
.aero-account__content table.woocommerce-table td {
	border: none;
	border-bottom: 1px solid var(--border);
	padding: 14px 16px;
	text-align: left;
	font-size: 14px;
}

.aero-account__content table.woocommerce-table thead th {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--text_light);
	font-weight: 700;
}

@media (max-width: 782px) {
	.aero-account {
		grid-template-columns: 1fr;
	}

	.woocommerce-MyAccount-navigation {
		position: static;
	}
}
<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" href="//aerocycle.at/main-sitemap.xsl"?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
	<sitemap>
		<loc>https://aerocycle.at/page-sitemap.xml</loc>
		<lastmod>2026-08-07T04:46:51+00:00</lastmod>
	</sitemap>
</sitemapindex>
<!-- XML Sitemap generated by Rank Math SEO Plugin (c) Rank Math - rankmath.com -->