/*
 Theme Name:   OceanWP Child
 Description:  Child Theme des high-performance WP-Theme OceanWP
 Author:       Philipp Limbeck
 Author URI:   https://insyde.at/
 Template:     oceanwp
 Version:      1.0
 Text Domain:  oceanwp-child
*/

/* overwrite general settings of oceanwp for focus of links (black border) */
#main a:focus,
#site-header a:focus,
#footer a:focus{
	outline: 0px !important;
}

.transparent-header.left-menu #site-navigation-wrap {
	padding-left: 50px;
}

.nomargin-bottom {
	margin-bottom: 0px !important;
}

.nopadding {
	padding-left: 0px !important;
	padding-right: 0px !important;
}

/***********/
/* FARBEN */
/**********/

:root {
	--farbe-gold: #8D721E;
	--farbe-beige: #E5C367;
	--farbe-hellgrau: #F6F3F2;
	--farbe-hellgelb: #F9F4EA;
}

/***********/
/* HEADER */
/**********/

#site-header.is-transparent {
	background-color: rgba(51,51,51,0.85) !important;
}

.erster-menupunkt a {
	border-right: 2px solid #fff;
}

#site-header.center-header #site-navigation-wrap .middle-site-logo:hover img {
	opacity: 1 !important;
}

/* Headeranimation Linien */

/* Horizontalen Scroll durch Headeranimation verhindern */
html,
body {
	overflow-x: clip;
}

@supports not (overflow-x: clip) {
	html,
	body {
		overflow-x: hidden;
	}
}

/* Header als Begrenzung für die Linien */
#site-header {
	position: relative;
	overflow-x: clip !important;
	overflow-y: visible !important;
}

@supports not (overflow-x: clip) {
	#site-header {
		overflow-x: hidden !important;
		overflow-y: visible !important;
	}
}

/* Header-Inhalte dürfen vertikal sichtbar bleiben */
#site-header-inner,
#site-navigation-wrap,
#site-navigation-wrap .middle-site-logo {
	overflow: visible !important;
}

/* Logo-Link als Ausgangspunkt */
#site-navigation-wrap .middle-site-logo .custom-logo-link {
	position: relative;
	display: inline-block;
	z-index: 20;
}

/* Linien */
#site-navigation-wrap .middle-site-logo .custom-logo-link::before,
#site-navigation-wrap .middle-site-logo .custom-logo-link::after {
	content: "";
	position: absolute;
	top: 89%;
	height: 1px;
	width: 100vw;
	background: var(--farbe-gold);
	box-shadow: 0 15px 0 var(--farbe-gold);
	transform: scaleX(0);
	animation: ettlLogoLine 9s ease-out 0.6s forwards;
	pointer-events: none;
}

/* nach links */
#site-navigation-wrap .middle-site-logo .custom-logo-link::before {
	right: 100%;
	margin-right: -1px;
	transform-origin: right center;
}

/* nach rechts */
#site-navigation-wrap .middle-site-logo .custom-logo-link::after {
	left: 100%;
	margin-left: -2px;
	transform-origin: left center;
}

/* Animation */
@keyframes ettlLogoLine {
	from {
		transform: scaleX(0);
	}
	to {
		transform: scaleX(1);
	}
}


@media (max-width: 367px) {
	div#site-header-inner.clr.container.centered {
		max-width: 98% !important;
	}
	  .oceanwp-mobile-menu-icon .ettl-cart-icon img {
    width: 35px !important;
    height: 35px !important;
	}
	.oceanwp-mobile-menu-icon {
		gap: 5px !important;
	}
}

/* Mobile Burger-Menü Icon größer */
.oceanwp-mobile-menu-icon .mobile-menu .fa-bars,
.oceanwp-mobile-menu-icon .mobile-menu i.fa-bars {
	font-size: 24px !important;
	line-height: 1 !important;
}


/************/
/* BUTTONS */
/***********/

.insyde-simple-btn {
	padding: 25px 80px;
	font-weight: 800;
}

a.insyde-simple-btn {
	text-decoration: none !important;
}

/* Transparenter Button über Extra-Klasse im WPBakery Feld */
.transparenter-btn .insyde-simple-btn {
	background: rgba(255, 255, 255, 0.12) !important;
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);

	border: 1px solid rgba(255, 255, 255, 0.35) !important;
	color: #ffffff !important;

	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);

	transition: all 0.3s ease;
}

.termin-btn a {
	border: 1px solid #fff;
}

/****************************/
/* STARTSEITE HEADERBEREICH */
/****************************/


.text-im-header {
	background: rgba(255, 255, 255, 0.12) !important;
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	border: 1px solid rgba(255, 255, 255, 0.35) !important;
	color: #ffffff !important;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
	transition: all 0.3s ease;
	padding: 50px !important;
}



span.header-subtitel {
	color: #fff;
	font-weight: 700;
	font-size: 25px;
	letter-spacing: 2px;
	border-bottom: 1px solid #fff;
  border-top: 1px solid #fff;
}

span.header-titel {
	color: #fff;
	font-size: 105px;
	line-height: 1;
  font-weight: 500;
}

span.header-titel2 {
	color: var(--farbe-beige);
	font-size: 105px;
	line-height: 1;
  font-weight: 500;
}

span.header-subinfo {
	color: #fff;
	font-weight: 500;
	font-size: 25px;
	line-height: 1;
}

span.handschrift-h1 {
	font-size: 70px;
  font-family: 'Birthstone';
  color: var(--farbe-gold);
	display: inline-flex;
	align-items: center;
	gap: 12px;
}

span.handschrift-h1::before {
	content: "";
	display: inline-block;
	width: 85px; 
	height: 1px; 
	background-color: var(--farbe-gold); 
}

span.handschrift {
	font-size: 35px;
  font-family: 'Birthstone';
  color: var(--farbe-gold);
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-weight: 300;
}

span.handschrift::before {
	content: "";
	display: inline-block;
	width: 50px; 
	height: 1px; 
	background-color: var(--farbe-gold); 
}


div.zeile-hellgrau {
	background-color: var(--farbe-hellgrau);
	padding-top: 70px;
	padding-bottom: 35px;
}

div.zeile-hellgrau-angebote {
	background-color: var(--farbe-hellgrau);
}

div.alleweine-link a {
	color: var(--farbe-gold);
	font-size: 20px;
}

div.zeile-hellgelb {
	padding-top: 70px;
	background-color: var(--farbe-hellgelb);
}

span.slogan-white {
	color: #fff;
	font-weight: 900;
	font-size: 48px;
	line-height: 1;
}

span.slogan-gelb {
	color: var(--farbe-beige);
	font-weight: 900;
	font-size: 48px;
	line-height: 1;
}

div.boden-flasche-zeile {
	padding-top: 100px;
  padding-bottom: 100px;
}

span.birthstone {
  font-family: 'Birthstone';
  text-transform: none;
  font-size: 150px;
  color: var(--farbe-gold);
}

div.zitat p {
	color: var(--farbe-gold);
  font-weight: 800;
  font-size: 25px;
  line-height: 1.2;
}


div.zitat,
div.zitat-ohne {
  background-color: var(--farbe-hellgrau);
  padding-top: 35px;
  padding-left: 20px;
  padding-right: 20px;
  border-left: 5px solid var(--farbe-gold);
	box-shadow: -5px 10px 15px -10px var(--farbe-gold);
}

div.zeile-schwarz {
	background-color: #000;
	padding-top: 70px;
	padding-bottom: 35px;
}

div.zeile-schwarz p,
div.zeile-schwarz h3 {
	color: #fff;
}
/* Rows erkennen, die solche Boxen enthalten */
.vc_row:has(.box-white),
.vc_row:has(.box-gold),
.vc_row:has(.box-gold-mitbild),
.vc_row:has(.box-grau) {
	display: flex;
	align-items: stretch;
}

/* Hauptspalten */
.vc_row:has(.box-white) > .wpb_column,
.vc_row:has(.box-gold) > .wpb_column,
.vc_row:has(.box-gold-mitbild) > .wpb_column,
.vc_row:has(.box-grau) > .wpb_column {
	display: flex;
}

/* Wrapper strecken */
.vc_row:has(.box-white) > .wpb_column > .vc_column-inner,
.vc_row:has(.box-white) > .wpb_column > .vc_column-inner > .wpb_wrapper,
.vc_row:has(.box-gold) > .wpb_column > .vc_column-inner,
.vc_row:has(.box-gold) > .wpb_column > .vc_column-inner > .wpb_wrapper,
.vc_row:has(.box-gold-mitbild) > .wpb_column > .vc_column-inner,
.vc_row:has(.box-gold-mitbild) > .wpb_column > .vc_column-inner > .wpb_wrapper,
.vc_row:has(.box-grau) > .wpb_column > .vc_column-inner,
.vc_row:has(.box-grau) > .wpb_column > .vc_column-inner > .wpb_wrapper {
	display: flex;
	flex-direction: column;
	width: 100%;
	flex: 1;
}

/* Inner Rows */
.vc_row:has(.box-white) .vc_inner,
.vc_row:has(.box-gold) .vc_inner,
.vc_row:has(.box-gold-mitbild) .vc_inner,
.vc_row:has(.box-grau) .vc_inner {
	display: flex;
	align-items: stretch;
	width: 100%;
	flex: 1;
}

/* Inner Columns */
.vc_row:has(.box-white) .vc_inner > .wpb_column,
.vc_row:has(.box-white) .vc_inner > .wpb_column > .vc_column-inner,
.vc_row:has(.box-white) .vc_inner > .wpb_column > .vc_column-inner > .wpb_wrapper,

.vc_row:has(.box-gold) .vc_inner > .wpb_column,
.vc_row:has(.box-gold) .vc_inner > .wpb_column > .vc_column-inner,
.vc_row:has(.box-gold) .vc_inner > .wpb_column > .vc_column-inner > .wpb_wrapper,

.vc_row:has(.box-gold-mitbild) .vc_inner > .wpb_column,
.vc_row:has(.box-gold-mitbild) .vc_inner > .wpb_column > .vc_column-inner,
.vc_row:has(.box-gold-mitbild) .vc_inner > .wpb_column > .vc_column-inner > .wpb_wrapper,

.vc_row:has(.box-grau) .vc_inner > .wpb_column,
.vc_row:has(.box-grau) .vc_inner > .wpb_column > .vc_column-inner,
.vc_row:has(.box-grau) .vc_inner > .wpb_column > .vc_column-inner > .wpb_wrapper {
	display: flex;
	flex-direction: column;
	width: 100%;
	flex: 1;
	justify-content: center;
	height: 100%;
}

/* Boxen selbst */
.box-white,
.box-gold,
.box-gold-mitbild,
.box-grau {
	flex: 1;
	width: 100%;
	min-height: 0 !important;
}

div.box-gold-mitbild {
	background-image: url('/wp-content/uploads/2026/05/ettl_vinothek.jpg');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
		padding-top: 50px;
  padding-left: 70px;
  padding-bottom: 25px;
  padding-right: 70px;
}

div.box-white {
	background-color: #fff;
	padding-top: 50px;
  padding-left: 70px;
  padding-bottom: 25px;
  padding-right: 70px;
}

div.box-gold {
	background-color: var(--farbe-gold);
	padding-top: 50px;
  padding-left: 70px;
  padding-bottom: 25px;
  padding-right: 70px;
}

@media (max-width: 1825px) {
	div.box-gold {
  padding-left: 20px;
  padding-right: 20px;
}
		div.box-white {
  padding-left: 20px;
  padding-right: 20px;
}
}


div.box-gold p,
div.box-gold h3,
div.box-gold-mitbild p,
div.box-gold-mitbild h3 {
	color: #fff;
}

div.box-grau {
	background-color: var(--farbe-hellgrau);
	padding-top: 50px;
  padding-left: 70px;
  padding-bottom: 25px;
  padding-right: 70px;
}

@media (max-width: 1825px) {
	div.box-grau {
  padding-left: 20px;
  padding-right: 20px;
}
}

.startseite-weinverkostung {
	background:
		linear-gradient(
			to right,
			rgba(141, 114, 30, 1) 0%,
			rgba(141, 114, 30, 1) 50%,
			rgba(141, 114, 30, 0.7) 70%,
			rgba(141, 114, 30, 0.3) 90%,
			rgba(141, 114, 30, 0) 100%
		),
		url('/wp-content/uploads/2026/05/weingut_ettl_vinothek_innen.jpg');

	background-position: left, right center;
	background-size: 100% 100%, cover;
	background-repeat: no-repeat;
	padding: 100px;
	margin-left: 0px !important;
	margin-right: 0px !important;
	margin-bottom: 10px;
}

.startseite-weinverkostung p,
.startseite-weinverkostung h3 {
	color: #fff;
}

#startseite-weinverkostung-mobile {
	display: none;
}

@media (max-width: 1200px) {
	#startseite-weinverkostung-desktop {
		display: none;
	}
	#startseite-weinverkostung-mobile {
		display: block;
	}
}

/***********/
/* FOOTER */
/**********/


.footer-content {
	background-image: url('/wp-content/uploads/2026/05/ettl_weinrebe2_footer.png');
	background-position: right;
	background-repeat: no-repeat;
	background-size: contain;
}


div.footer-bottominfo p {
	color: var(--farbe-gold);
	font-weight: 600;
}

img.zahlen-icon {
	margin-left: 25px;
}

footer#footer.site-footer div.shopinfo-right {
	border-right: 2px solid var(--farbe-gold);
}

div.footer-content {
	padding-right: 50px;
	padding-left: 50px;
}

div.footer-text p {
	font-size: 16px;
}

div.footer-kontaktbox {
	background-color: rgba(246,243,242,0.6);
  padding: 10px;
  height: 100%;
  border-radius: 5px;
}


img.footer-miniicon {
	margin-right: 15px;
}

table.footer-table {
	margin-bottom: 0px !important;
	border-bottom: none !important;
}

table td {
	border-bottom: 0px !important;
}

span.footer-shop-button {
	border: 2px solid var(--farbe-gold);
  padding: 20px 40px;
}



/***************************/
/* GRID Startseite Angebote */
/***************************/



.vc_grid-item .add_to_cart_button,
.vc_grid-item .product_type_simple,
.vc_grid-item .product_type_variable {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 45px;
    padding: 12px 24px;
    border-radius: 999px;
    text-decoration: none !important;
}

.vc_grid-item .added_to_cart {
    display: none;
}

.startseite-angebot .insyde-grid-add-to-cart {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-width: 290px;
    min-height: 82px;
    padding: 22px 40px;
    background-color: var(--farbe-gold);
    color: #ffffff !important;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
	letter-spacing: 0.7px;
    text-decoration: none !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
	text-transform: none !important;
}

.startseite-angebot .insyde-grid-add-to-cart {
    position: relative;
    overflow: hidden;
}

.startseite-angebot .insyde-grid-add-to-cart::after {
    content: "";
    position: absolute;
    top: -30%;
    left: -120%;
    width: 60%;
    height: 160%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 247, 204, 0.18) 35%,
        rgba(255, 255, 255, 0.55) 50%,
        rgba(255, 247, 204, 0.18) 65%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-18deg);
    animation: ettl-button-shimmer 3.5s linear infinite;
    pointer-events: none;
}

@keyframes ettl-button-shimmer {
    0% {
        left: -120%;
    }

    100% {
        left: 140%;
    }
}



div.startseiteangebot {
	background-color: #fff;
	box-sizing: border-box;
	border-radius: 5px;
	box-shadow: 0px 0px 3px 0px #333;
	margin: 10px;
	padding: 30px;
	min-height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.startseiteangebot-content {
	display: flex;
	flex-direction: column;
	flex: 1;
}

.angebote-bestseller {
	color: var(--farbe-gold);
	font-weight: 800;
	font-size: 20px;
}

.angebote-bestseller p {
	display: inline-block;
	background-color: var(--farbe-hellgelb);
	padding: 4px 10px;
	margin: 0 0 20px 0;
}

.angebote-jahrgang,
.angebote-untertitel {
	font-weight: 700;
	font-size: 22px;
	line-height: 1.2;
	margin-bottom: 8px;
}

.angebote-titel {
	margin-bottom: 12px;
}

.angebote-titel a {
	display: inline-block;
	font-weight: 800;
	font-size: 35px;
	line-height: 1.15;
	text-decoration: none !important;
	color: inherit;
}

.angebote-info {
	font-size: 16px;
	line-height: 1.65;
	margin-bottom: 20px;
}

.startseiteangebot-image {
	width: 100%;
	text-align: center;
}

.startseiteangebot-image a {
	display: inline-block;
}

.startseiteangebot-image img,
.startseiteangebot-img {
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 600px;
	object-fit: contain;
	transition: transform 0.45s ease, filter 0.45s ease;
}

.startseiteangebot-image:hover img {
	transform: translateY(-10px) scale(1.03);
	filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.18));
}

.startseiteangebot-bottom {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	align-items: center;
	gap: 20px;
	margin-top: auto;
}

.angebote-preis-alt,
.angebote-preis,
.angebote-button {
	display: flex;
	align-items: center;
	min-height: 82px;
}

.angebote-preis-alt {
	justify-content: flex-start;
}

.angebote-preis {
	justify-content: center;
}

.angebote-button {
	justify-content: flex-end;
}

.angebote-preis-alt .amount,
.angebote-preis-alt bdi,
.angebote-preis-alt .woocommerce-Price-currencySymbol {
	font-size: 25px;
	font-weight: 600 !important;
	color: var(--farbe-gold) !important;
	text-decoration: line-through !important;
	opacity: 0.6;
}

.angebote-preis,
.angebote-preis .amount,
.angebote-preis bdi,
.angebote-preis .woocommerce-Price-currencySymbol {
	color: var(--farbe-gold) !important;
	font-size: 40px;
	font-weight: 700 !important;
	line-height: 1.1;
}

.angebote-button .insyde-grid-add-to-cart {
	position: relative;
	z-index: 2;
	text-align: center;
	  min-width: 0 !important;
    width: 100% !important;
    overflow: visible !important;
}

.startseite-rechts-flex > .vc_column-inner > .wpb_wrapper {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.startseite-rechts-flex > .vc_column-inner,
.startseite-rechts-flex > .vc_column-inner > .wpb_wrapper {
	height: 100%;
}


.startseiteangebot-bottom .added_to_cart {
	display: none !important;
}

.angebote-button {
	justify-content: flex-end;
	overflow: hidden;
}

.angebote-button .insyde-grid-add-to-cart {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 200px;
	max-width: 100%;
	text-align: center;
}

.startseite-angebote-row {
	display: flex !important;
	align-items: stretch !important;
}

.startseite-angebote-row > .wpb_column {
	display: flex !important;
	align-items: stretch !important;
}

.startseite-angebote-row > .wpb_column > .vc_column-inner {
	display: flex !important;
	width: 100% !important;
}

.startseite-angebote-row > .wpb_column > .vc_column-inner > .wpb_wrapper {
	display: flex !important;
	flex-direction: column !important;
	width: 100% !important;
}

.startseite-angebote-row .wpb_raw_code,
.startseite-angebote-row .wpb_raw_code > .wpb_wrapper {
	display: flex !important;
	flex: 1 1 auto !important;
	width: 100% !important;
	margin: 0 !important;
}

.startseite-angebote-row .startseiteangebot {
	display: flex !important;
	flex-direction: column !important;
	flex: 1 1 auto !important;
	width: 100% !important;
	height: auto !important;
	min-height: 0 !important;
	margin-top: 10px !important;
	margin-bottom: 10px !important;
}

@media (min-width: 2080px) {
	.startseite-angebote-row > .wpb_column,
	.startseite-angebote-row > .wpb_column > .vc_column-inner,
	.startseite-angebote-row > .wpb_column > .vc_column-inner > .wpb_wrapper {
		min-height: 100% !important;
	}

	.startseite-angebote-row .wpb_raw_code,
	.startseite-angebote-row .wpb_raw_code > .wpb_wrapper,
	.startseite-angebote-row .startseiteangebot {
		align-self: stretch !important;
	}

	.startseite-angebote-row .startseiteangebot {
		margin-top: 10px !important;
		margin-bottom: 10px !important;
	}
}

/* Woo Products bleiben oben */
.startseite-rechts-flex .woocommerce {
	flex: 0 0 auto;
}

/* Nur Weinverkostung wird nach unten geschoben */
.startseite-rechts-flex .startseite-weinverkostung-block {
	margin-top: auto;
}

.infoklein a, .infoklein p {
	font-size: 14px;
}

select.wcpbc-country-switcher.country-switcher.wp-exclude-emoji {
	font-size: 14px;
}

/**********/
/* BREVO */
/********/

/* Brevo Formular: Input + Button in einer Zeile */
.sib-email-row {
	display: flex !important;
	flex-direction: row !important;
	align-items: stretch !important;
	gap: 0 !important;
	width: 100% !important;
	max-width: 100% !important;
	padding: 0 !important;
}

/* Ihr bestehendes Input-Styling */
input.sib-email-area {
	font-size: 18px !important;
	background-color: #fff !important;
	border: 1px solid #333 !important;
	box-shadow: 5px 10px 10px 1px #333;

	flex: 1 1 auto !important;
	width: auto !important;
	max-width: none !important;
	min-width: 0 !important;
	height: 48px !important;
	box-sizing: border-box !important;
	margin: 0 !important;
}

/* Button */
.sib-submit-button {
	flex: 0 0 auto !important;
	width: auto !important;
	height: 48px !important;
	box-sizing: border-box !important;
	padding: 0 24px !important;
	margin-left: 10px !important;

	background-color: var(--farbe-gold) !important;
	color: #fff !important;
	border: 1px solid var(--farbe-gold) !important;
	font-weight: 700 !important;
	text-transform: uppercase !important;
	cursor: pointer !important;
}


/*************/
/* Boxzilla */
/*************/


#boxzilla-box-601-content h2,
#boxzilla-box-601-content h2{
	font-size: 45px;
	letter-spacing: 0;
	line-height: 1;
	color: #000;
}

.boxzilla {
	padding: 0px !important;
}

.boxzilla-content > :last-child {
	padding: 25px !important;
}

div.left {
	padding: 25px;
}

	div.pic-mobile {
		display: none;
	}

@media all and (max-width: 1000px){
	
	#boxzilla-box-601-content .right{
		display: none;
	}
	
	#boxzilla-601.boxzilla-newsletter-info,
	#boxzilla-box-601-content .left{
		width: 100%;
	}
	
	#boxzilla-box-601-content .left{
		padding: 15px 15px 0px 15px;

	}
	
	.boxzilla-content > :last-child {
	padding: 0px !important;
}
	
	div.pic-mobile {
		display: block;
			}
	

}




/***********/
/* MOBILE */
/**********/

@media all and (max-width: 1510px) {
	#site-navigation-wrap .dropdown-menu > li > a {
  padding: 0 20px !important;
}
}

@media (max-width: 1080px) {
	.oceanwp-mobile-menu-icon {
		display: flex !important;
		align-items: center !important;
		justify-content: flex-end !important;
		gap: 18px;
	}

	.oceanwp-mobile-menu-icon .ettl-mobile-cart-trigger {
		display: inline-flex !important;
		align-items: center;
		justify-content: center;
		position: relative;
		line-height: 1 !important;
	}

	.oceanwp-mobile-menu-icon .ettl-mobile-cart-trigger .text-wrap {
		display: inline-flex !important;
		align-items: center;
		justify-content: center;
	}

	.oceanwp-mobile-menu-icon .ettl-cart-icon {
		position: relative;
		display: inline-flex;
		align-items: center;
		justify-content: center;
	}

	.oceanwp-mobile-menu-icon .ettl-cart-icon img {
		width: 45px;
		height: 45px;
		object-fit: contain;
		display: block;
	}

	.oceanwp-mobile-menu-icon .ettl-cart-count {
		position: absolute;
		top: -9px;
		right: -9px;
		min-width: 18px;
		height: 18px;
		border-radius: 999px;
		background: var(--farbe-gold);
		color: #000;
		font-size: 11px;
		font-weight: 700;
		line-height: 18px;
		text-align: center;
	}
}

@media only screen and (max-width: 1080px) {
	#site-logo {
		padding-bottom: 10px;
	}
}

.oceanwp-mobile-menu-icon.mobile-right {
	padding-top: 40px !important;
}

@media (max-width: 470px) {
	#site-logo #site-logo-inner a img {
		max-width: 160px !important;
	}
}

div.header-mobile {
	display: none;
}

@media (max-width: 1080px) {
	h1 {
		font-size: 75px !important;
	}
	span.birthstone {
		font-size: 110px !important;
	}

	h2 {
		font-size: 55px !important;
	}
	h3 {
		font-size: 40px !important;
	}
	span.handschrift-h1 {
		font-size: 60px !important;
	}
	span.handschrift {
		font-size: 30px !important;
	}
	p, a {
		font-size: 16px !important;
	}
	div.header-mobile {
		display: block;
	}
	div.header-desktop {
		display: none;
	}
}

@media (max-width: 767px) {
	h1 {
		font-size: 50px !important;
	}
	span.birthstone {
		font-size: 80px !important;
	}

	h2 {
		font-size: 40px !important;
	}
	h3 {
		font-size: 32px !important;
	}
	span.handschrift-h1 {
		font-size: 50px !important;
	}
	span.handschrift {
		font-size: 30px !important;
	}
	p, a {
		font-size: 16px !important;
	}
		span.header-subtitel {
		font-size: 20px !important;
	}
	
	div.text-im-header {
		padding: 20px !important;
	}
}

@media (max-width: 420px) {
	h1 {
		font-size: 35px !important;
	}

	h2 {
		font-size: 28px !important;
	}
	h3 {
		font-size: 24px !important;
	}
	span.handschrift-h1 {
		font-size: 25px !important;
	}
	p, a {
		font-size: 14px !important;
	}
}

@media (max-width: 1670px) {
	span.header-subtitel {
		font-size: 20px !important;
	}
	span.header-titel,
	span.header-titel2 {
		font-size: 100px !important;
	}
	span.header-subinfo {
		font-size: 25px !important;
	}
}

@media (max-width: 767px) {
	span.header-titel,
	span.header-titel2 {
		font-size: 80px !important;
	}
	span.header-subinfo {
		font-size: 18px !important;
	}
	
	.insyde-simple-btn {
		padding: 20px 60px !important;
	}
	span.slogan-white,
	span.slogan-gelb {
		font-size: 35px !important;
	}
}

@media (max-width: 470px) {
	span.header-subtitel {
		font-size: 15px !important;
	}
	span.header-titel,
	span.header-titel2 {
		font-size: 50px !important;
	}
	span.header-subinfo {
		font-size: 16px !important;
	}
}

@media (max-width: 1380px) {
	div.footer-text p {
  font-size: 12px !important;
}
	div.footer-nav strong,
	div.footer-nav a,
	div.footer-nav p,
	div.footer-kontaktbox p,
	div.footer-kontaktbox a,
	div.mindestbestellmenge-title,
	div.mindestbestellmenge-value,
	table.footer-table b {
		font-size: 14px !important;
	}
	div.footer-kontaktbox {
		padding: 3px !important;
	}
}

#footer-mobile {
	display: none;
}

@media (max-width: 1150px) {
	#footer-mobile {
		display: block !important;
	}
	#footer-desktop {
		display: none;
	}
}

@media (max-width: 630px) {
	div.footer-nav-mobile p,
	div.footer-nav-mobile a {
		font-size: 14px !important;
	}
}

@media (max-width: 410px) {
	div.footer-nav-mobile p,
	div.footer-nav-mobile a {
		font-size: 12px !important;
	}
}

@media (max-width: 1600px) {
.angebote-preis-alt .amount,
.angebote-preis-alt bdi,
.angebote-preis-alt .woocommerce-Price-currencySymbol {
	font-size: 20px;
}

.angebote-preis,
.angebote-preis .amount,
.angebote-preis bdi,
.angebote-preis .woocommerce-Price-currencySymbol {
	color: var(--farbe-gold) !important;
	font-size: 32px;
	}
}

@media (max-width: 1199px) {

    .startseiteangebot-bottom {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        column-gap: 20px;
        row-gap: 18px;
        width: 100%;
    }

    .startseiteangebot-bottom .angebote-preis-alt {
        grid-column: 1;
        justify-content: center;
        text-align: center;
    }

    .startseiteangebot-bottom .angebote-preis {
        grid-column: 2;
        justify-content: center;
        text-align: center;
    }

    .startseiteangebot-bottom .angebote-button {
        grid-column: 1 / -1;
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .startseiteangebot-bottom .angebote-button .button,
    .startseiteangebot-bottom .angebote-button .insyde-grid-add-to-cart {
        min-width: 0 !important;
        width: auto !important;
        max-width: none !important;
        white-space: nowrap;
    }
}

@media (max-width: 1600px) {
	.startseite-weinverkostung {
		padding: 40px !important;
	}
}

