/*
Theme Name: Anikeen
Theme URI: https://anikeen.com
Author: Anikeen UG (haftungsbeschränkt) & Co. KG
Author URI: https://anikeen.com
Description: Default theme for Anikeen.
Requires at least: 6.7
Tested up to: 6.8
Requires PHP: 7.2
Version: 1.0
License: proprietary
Text Domain: anikeen
*/

/*
 * Link styles
 * https://github.com/WordPress/gutenberg/issues/42319
 */
a {
	text-decoration-thickness: 1px !important;
	text-underline-offset: .1em;
}

/* Focus styles */
:where(.wp-site-blocks *:focus) {
	outline-width: 2px;
	outline-style: solid;
}

/* Increase the bottom margin on submenus, so that the outline is visible. */
.wp-block-navigation .wp-block-navigation-submenu .wp-block-navigation-item:not(:last-child) {
	margin-bottom: 3px;
}

/* Increase the outline offset on the parent menu items, so that the outline does not touch the text. */
.wp-block-navigation .wp-block-navigation-item .wp-block-navigation-item__content {
	outline-offset: 4px;
}

/* Remove outline offset from the submenus, otherwise the outline is visible outside the submenu container. */
.wp-block-navigation .wp-block-navigation-item ul.wp-block-navigation__submenu-container .wp-block-navigation-item__content {
	outline-offset: 0;
}

/*
 * Progressive enhancement to reduce widows and orphans
 * https://github.com/WordPress/gutenberg/issues/55190
 */
h1, h2, h3, h4, h5, h6, blockquote, caption, figcaption, p {
	text-wrap: pretty;
}

/*
 * Change the position of the more block on the front, by making it a block level element.
 * https://github.com/WordPress/gutenberg/issues/65934
 */
.more-link {
	display: block;
}

/*
 * Fix home footer and single product margins
 */
footer.wp-block-template-part, .single-product :where(.wp-site-blocks) > * {
	margin-block-start: 0;
}

.woocommerce .woocommerce-breadcrumb {
	margin-bottom: 0;
}

/*
 * Sticky Footer
 */
body, .wp-site-blocks {
	display: flex;
	min-height: 100vh;
	flex-direction: column;
}

main {
	flex: 1 0 auto;
}

/*
 * Form Styles
 * input:where( :not( [type=checkbox] ):not( [type=radio ] ) ),
 * select,
 * textarea {
 * 	color: var( --wp--custom--form-input--color, inherit );
 * 	background: var( --wp--custom--form-input--background, transparent );
 * 	border: 1px solid var( --wp--custom--form-input--border-color, currentColor );
 * }
*/

/*
 * Blur Effect
 */
.blur.wp-block-cover .wp-block-cover__image-background {
	filter: blur(0.5rem);
	transform: scale(1.05);
	transition: filter 0.3s ease, transform 0.3s ease;
}

.woocommerce div.product p.stock {
	display: none;
}

.woocommerce div.product form.cart {
	display: flex;
	padding: 0;
}
.woocommerce div.product form.cart button.single_add_to_cart_button, .woocommerce div.product form.cart button[name="add-to-cart"] {
	width: 100%;
}

/* WC-Germanized override */
.product .product_meta {
	margin-top: 0 !important;
}
.wc-gzd-checkout .wc-block-components-order-summary, .wc-gzd-checkout .wc-block-components-order-summary.is-large {
	background: none;
}
.product p.wc-gzd-additional-info {
	font-size: .75rem !important;
	text-align: center;
}

.wc-block-components-quantity-selector {
	border: solid 1px rgba(255,255,255,0.5);
}

.wc-blocks-components-select__select option {
	background: #222222;
}

.line-clamp-1 {
	overflow:hidden;
	display:-webkit-box;
	-webkit-box-orient:vertical;
	-webkit-line-clamp:1
}
.line-clamp-2 {
	overflow:hidden;
	display:-webkit-box;
	-webkit-box-orient:vertical;
	-webkit-line-clamp:2
}