/*
Theme Name: smartKMU Theme
Theme URI: https://smartkmu.com
Description: AI-generiertes Block-Theme für smartKMU – Digital Transformation, Automation & Generative AI. Self-hosted Fonts, DSGVO-konform.
Author: smartKMU / Craft Agent
Author URI: https://smartkmu.com
Version: 1.3.0
Requires at least: 6.4
Tested up to: 7.0
Requires PHP: 8.1
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: smartkmu-theme
Tags: full-site-editing, block-patterns, wide-blocks, custom-colors, custom-logo, editor-style, translation-ready
*/

/* ==========================================================================
   Design Tokens (from Stitch analysis of smartkmu.com)

   Tailwind → CSS translation:
   rounded-2xl = 1rem (16px) → cards
   rounded-xl = 0.75rem (12px) → buttons, inputs
   shadow-lg = 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -4px rgba(0,0,0,.1)
   shadow-xl = 0 20px 25px -5px rgba(0,0,0,.1), 0 8px 10px -6px rgba(0,0,0,.1)
   py-20 = 5rem, py-24 = 6rem → section spacing
   ========================================================================== */

:root {
	--skmu-radius-card: 1rem;
	--skmu-radius-btn: 0.75rem;
	--skmu-radius-input: 0.75rem;
	--skmu-shadow-card: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
	--skmu-shadow-card-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
	--skmu-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
	--skmu-shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	--skmu-transition: 0.3s ease;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

/* Sticky Header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	transition: box-shadow var(--skmu-transition);
}

.site-header.is-scrolled {
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Logo */
.wp-block-site-logo img {
	transition: opacity 0.2s ease;
}

.wp-block-site-logo a:hover img {
	opacity: 0.85;
}

/* Navigation Links */
.wp-block-navigation a {
	transition: color 0.2s ease;
	position: relative;
}

.wp-block-navigation a::after {
	content: "";
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--wp--preset--color--primary);
	transition: width 0.25s ease;
}

.wp-block-navigation a:hover::after,
.wp-block-navigation a:focus::after,
.wp-block-navigation .current-menu-item a::after {
	width: 100%;
}

/* Navigation Submenu */
.wp-block-navigation .wp-block-navigation__submenu-container {
	border-radius: 8px;
	box-shadow: var(--skmu-shadow-card);
	border: 1px solid var(--wp--preset--color--gray-warm-100);
	padding: 0.5rem 0;
}

/* ==========================================================================
   Buttons – Stitch uses rounded-xl (12px) with bold font
   ========================================================================== */

.wp-element-button,
.wp-block-button__link {
	transition: all 0.25s ease;
	letter-spacing: 0.02em;
	border-radius: var(--skmu-radius-btn) !important;
}

.wp-element-button:hover,
.wp-block-button__link:hover {
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(2, 121, 182, 0.25);
}

/* Yellow accent buttons - match Stitch hover */
.wp-block-button__link.has-accent-yellow-background-color:hover {
	box-shadow: 0 4px 12px rgba(240, 162, 2, 0.3);
	filter: brightness(1.05);
}

/* ==========================================================================
   Hero / Cover Block – match Stitch hero section
   ========================================================================== */

.wp-block-cover.alignfull {
	overflow: hidden;
}

.wp-block-cover .wp-block-cover__inner-container {
	max-width: var(--wp--style--global--wide-size);
	margin: 0 auto;
}

/* Hero heading: tighter line-height and letter-spacing like Stitch */
.wp-block-cover h1.wp-block-heading {
	line-height: 1.15 !important;
	letter-spacing: -0.025em;
}

/* Hero subtext */
.wp-block-cover .has-blue-200-color {
	opacity: 0.9;
}

/* Hero buttons container */
.wp-block-cover .wp-block-buttons {
	margin-top: var(--wp--preset--spacing--40);
}

/* ==========================================================================
   Andreas Section – Stitch: circular image with shadow + accent circle
   ========================================================================== */

/* Round image style */
.wp-block-image.is-style-rounded img {
	border-radius: 50%;
	aspect-ratio: 1;
	object-fit: cover;
	box-shadow: var(--skmu-shadow-xl);
	border: 4px solid var(--wp--preset--color--white);
}

/* ==========================================================================
   Section Spacing – match Stitch py-20/py-24
   ========================================================================== */

/* Full-width sections: tighter but elegant spacing */
.alignfull.wp-block-group[style*="padding-top:var(--wp--preset--spacing--70)"] {
	padding-top: 5rem !important;
	padding-bottom: 5rem !important;
}

/* ==========================================================================
   Cards & Pricing – match Stitch pricing card design

   Stitch uses:
   - bg-background-light rounded-2xl overflow-hidden shadow-lg
   - Separate colored header div (bg-primary-dark py-4 px-6)
   - p-8 for body content
   - Full-width button at bottom
   ========================================================================== */

/* Pricing card container (gray-warm bg section) */
.has-gray-warm-100-background-color .wp-block-column.has-white-background-color,
.has-gray-warm-100-background-color .wp-block-column.has-border-color {
	border-radius: var(--skmu-radius-card) !important;
	box-shadow: var(--skmu-shadow-card);
	transition: box-shadow var(--skmu-transition), transform var(--skmu-transition);
	overflow: hidden;
	padding-top: 0 !important;
}

.has-gray-warm-100-background-color .wp-block-column.has-white-background-color:hover,
.has-gray-warm-100-background-color .wp-block-column.has-border-color:hover {
	box-shadow: var(--skmu-shadow-card-hover);
	transform: translateY(-3px);
}

/* Professional card (yellow border) gets extra shadow prominence */
.has-gray-warm-100-background-color .wp-block-column.has-border-color {
	box-shadow: var(--skmu-shadow-xl);
	border-width: 2px !important;
}

/* Pricing Card Header Bars – colored bg strip at top */
.has-gray-warm-100-background-color .wp-block-columns > .wp-block-column > .wp-block-heading:first-child {
	margin: 0 !important;
	margin-left: calc(-1 * var(--wp--preset--spacing--40)) !important;
	margin-right: calc(-1 * var(--wp--preset--spacing--40)) !important;
	margin-bottom: var(--wp--preset--spacing--40) !important;
	padding: 1rem 1.5rem !important;
	text-align: center;
	font-size: 1.25rem !important;
	font-weight: 700 !important;
	color: var(--wp--preset--color--white) !important;
}

/* Ohne Filter - Dark Blue header */
.has-gray-warm-100-background-color .wp-block-columns > .wp-block-column > .wp-block-heading.has-primary-color:first-child {
	background: var(--wp--preset--color--secondary);
}

/* Professional - Yellow header */
.has-gray-warm-100-background-color .wp-block-columns > .wp-block-column.has-border-color > .wp-block-heading:first-child {
	background: var(--wp--preset--color--accent-yellow);
	color: var(--wp--preset--color--secondary) !important;
}

/* Executive - Teal header */
.has-gray-warm-100-background-color .wp-block-columns > .wp-block-column > .wp-block-heading.has-accent-teal-color:first-child {
	background: var(--wp--preset--color--accent-teal);
}

/* Price styling in cards */
.has-gray-warm-100-background-color .wp-block-column .has-x-large-font-size[style*="font-weight:700"] {
	font-size: 2.25rem !important;
	line-height: 1.2;
}

/* ==========================================================================
   Vorträge / Workshops Section (secondary/dark blue bg)
   Stitch: Two-column with image, tag pill, larger text
   ========================================================================== */

.has-secondary-background-color .wp-block-heading.has-white-color {
	line-height: 1.25;
	letter-spacing: -0.01em;
}

.has-secondary-background-color .has-blue-200-color {
	line-height: 1.625;
}

/* ==========================================================================
   Newsletter Section
   Stitch: centered form with inline inputs, subtle border-bottom
   ========================================================================== */

/* Newsletter section visual separator */
.has-gray-warm-100-background-color + .has-white-background-color,
.has-white-background-color + .has-gray-warm-100-background-color {
	border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* ==========================================================================
   Blog Post Cards – match Stitch blog design

   Stitch uses:
   - overflow-hidden rounded-2xl for image
   - aspect-video (16/9)
   - group-hover:scale-105 on image
   - Category badge (bg-blue-100 text-primary rounded)
   - Bold title with hover:text-primary
   - line-clamp-3 for excerpt
   ========================================================================== */

.wp-block-post {
	transition: transform 0.2s ease;
}

/* Post grid cards */
.wp-block-post-template.is-layout-grid > .wp-block-post {
	background: var(--wp--preset--color--white);
	border-radius: var(--skmu-radius-card);
	overflow: hidden;
	box-shadow: var(--skmu-shadow-card);
	transition: box-shadow var(--skmu-transition), transform var(--skmu-transition);
	padding-bottom: var(--wp--preset--spacing--40);
}

.wp-block-post-template.is-layout-grid > .wp-block-post:hover {
	box-shadow: var(--skmu-shadow-card-hover);
	transform: translateY(-3px);
}

/* Also support cards with wrapper group */
.wp-block-post-template.is-layout-grid > .wp-block-post > .wp-block-group {
	background: var(--wp--preset--color--white);
	border-radius: var(--skmu-radius-card);
	overflow: hidden;
	box-shadow: var(--skmu-shadow-card);
	transition: box-shadow var(--skmu-transition), transform var(--skmu-transition);
	padding-bottom: var(--wp--preset--spacing--40);
}

.wp-block-post-template.is-layout-grid > .wp-block-post > .wp-block-group:hover {
	box-shadow: var(--skmu-shadow-card-hover);
	transform: translateY(-3px);
}

/* Featured Image in Cards – match Stitch hover scale */
.wp-block-post-template .wp-block-post-featured-image {
	margin: 0;
	overflow: hidden;
}

.wp-block-post-template .wp-block-post-featured-image img {
	transition: transform 0.5s ease;
	width: 100%;
	display: block;
}

.wp-block-post-template .wp-block-post-featured-image:hover img,
.wp-block-post:hover .wp-block-post-featured-image img {
	transform: scale(1.05);
}

/* Post Title in Cards */
.wp-block-post-template .wp-block-post-title a {
	text-decoration: none;
	color: var(--wp--preset--color--secondary);
	transition: color 0.2s ease;
	font-weight: 700;
}

.wp-block-post-template .wp-block-post-title a:hover {
	color: var(--wp--preset--color--primary);
}

/* Card content padding */
.wp-block-post-template.is-layout-grid .wp-block-post-title,
.wp-block-post-template.is-layout-grid .wp-block-post-date,
.wp-block-post-template.is-layout-grid .wp-block-post-excerpt {
	padding-left: var(--wp--preset--spacing--40);
	padding-right: var(--wp--preset--spacing--40);
}

/* Post excerpt line clamping (like Stitch line-clamp-3) */
.wp-block-post-excerpt__excerpt {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* ==========================================================================
   Single Blog Post
   ========================================================================== */

/* Post Meta Area */
.post-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1rem;
	padding: 0.75rem 0;
	border-bottom: 1px solid var(--wp--preset--color--gray-warm-100);
	margin-bottom: var(--wp--preset--spacing--40);
}

/* Author avatar in meta */
.wp-block-post-author__avatar img {
	border-radius: 50%;
}

/* Featured Image on Single Post */
.single .wp-block-post-featured-image {
	border-radius: var(--skmu-radius-card);
	overflow: hidden;
}

.single .wp-block-post-featured-image img {
	border-radius: var(--skmu-radius-card);
}

/* Tags as pills */
.taxonomy-post_tag .wp-block-post-terms__link {
	display: inline-block;
	background: var(--wp--preset--color--gray-warm-100);
	padding: 0.25em 0.75em;
	border-radius: 20px;
	text-decoration: none;
	font-size: var(--wp--preset--font-size--small);
	transition: background-color 0.2s ease, color 0.2s ease;
}

.taxonomy-post_tag .wp-block-post-terms__link:hover {
	background: var(--wp--preset--color--primary);
	color: var(--wp--preset--color--white);
}

/* ==========================================================================
   Related Posts Section
   ========================================================================== */

.related-posts .wp-block-post-template {
	gap: var(--wp--preset--spacing--40);
}

/* ==========================================================================
   Image Refinements
   ========================================================================== */

/* Separator / Divider */
.wp-block-separator.is-style-wide {
	border-bottom-width: 1px;
	opacity: 0.6;
}

/* ==========================================================================
   Comments
   ========================================================================== */

.wp-block-comments {
	border-top: 2px solid var(--wp--preset--color--gray-warm-100);
	padding-top: var(--wp--preset--spacing--50);
}

.wp-block-comment-template .wp-block-columns {
	margin-bottom: var(--wp--preset--spacing--40);
	padding-bottom: var(--wp--preset--spacing--40);
	border-bottom: 1px solid var(--wp--preset--color--gray-warm-100);
}

/* ==========================================================================
   Pagination
   ========================================================================== */

.wp-block-query-pagination {
	margin-top: var(--wp--preset--spacing--60);
	padding-top: var(--wp--preset--spacing--40);
	border-top: 1px solid var(--wp--preset--color--gray-warm-100);
}

.wp-block-query-pagination-numbers .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.5em;
	height: 2.5em;
	border-radius: 6px;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.wp-block-query-pagination-numbers .page-numbers.current {
	background-color: var(--wp--preset--color--primary);
	color: var(--wp--preset--color--white);
}

.wp-block-query-pagination-numbers .page-numbers:not(.current):hover {
	background-color: var(--wp--preset--color--gray-warm-100);
}

/* ==========================================================================
   Footer Refinements
   ========================================================================== */

/* Footer nav links */
footer .wp-block-navigation a {
	transition: color 0.2s ease;
}

footer .wp-block-navigation a::after {
	display: none;
}

footer .wp-block-navigation a:hover {
	color: var(--wp--preset--color--white) !important;
}

/* Footer separator */
footer .wp-block-separator {
	opacity: 0.3;
}

/* ==========================================================================
   WooCommerce Basic Styling
   ========================================================================== */

.wc-block-grid__product {
	border-radius: var(--skmu-radius-card);
	overflow: hidden;
	box-shadow: var(--skmu-shadow-card);
	transition: box-shadow var(--skmu-transition), transform var(--skmu-transition);
	background: var(--wp--preset--color--white);
	padding: var(--wp--preset--spacing--30);
}

.wc-block-grid__product:hover {
	box-shadow: var(--skmu-shadow-card-hover);
	transform: translateY(-2px);
}

.wc-block-grid__product-title {
	font-family: var(--wp--preset--font-family--roboto);
	font-weight: 600;
	color: var(--wp--preset--color--secondary);
}

.wc-block-grid__product-price {
	color: var(--wp--preset--color--primary);
	font-weight: 600;
}

.wc-block-grid__product-add-to-cart .wp-element-button {
	width: 100%;
}

/* ==========================================================================
   WooCommerce Product Pages (Extended)
   ========================================================================== */

/* Single Product */
.single-product .product .woocommerce-product-gallery {
	border-radius: var(--skmu-radius-card);
	overflow: hidden;
}

.single-product .product .woocommerce-product-gallery img {
	border-radius: var(--skmu-radius-card);
}

.single-product .summary .product_title {
	font-family: var(--wp--preset--font-family--roboto);
	font-weight: 600;
	color: var(--wp--preset--color--secondary);
	line-height: 1.3;
	margin-bottom: var(--wp--preset--spacing--30);
}

.single-product .summary .price {
	font-size: var(--wp--preset--font-size--x-large);
	font-weight: 700;
	color: var(--wp--preset--color--primary);
	margin-bottom: var(--wp--preset--spacing--40);
}

.single-product .summary .price del {
	opacity: 0.5;
	font-size: 0.8em;
}

.single-product .summary .price ins {
	text-decoration: none;
}

/* Add to Cart Button */
.single-product .single_add_to_cart_button,
.woocommerce .button,
.wc-block-components-button {
	font-family: var(--wp--preset--font-family--montserrat);
	font-weight: 600;
	font-size: var(--wp--preset--font-size--small);
	background-color: var(--wp--preset--color--primary);
	color: var(--wp--preset--color--white);
	border: none;
	border-radius: var(--skmu-radius-btn);
	padding: calc(0.667em + 2px) calc(1.333em + 2px);
	cursor: pointer;
	transition: all 0.25s ease;
	letter-spacing: 0.02em;
}

.single-product .single_add_to_cart_button:hover,
.woocommerce .button:hover,
.wc-block-components-button:hover {
	background-color: var(--wp--preset--color--secondary);
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(2, 121, 182, 0.25);
}

/* Quantity Input */
.single-product .quantity .qty {
	border: 1px solid var(--wp--preset--color--gray-warm-100);
	border-radius: var(--skmu-radius-input);
	padding: 0.5em;
	font-family: var(--wp--preset--font-family--montserrat);
	font-size: var(--wp--preset--font-size--small);
}

/* Product Tabs */
.woocommerce-tabs .tabs {
	list-style: none;
	padding: 0;
	margin: 0 0 var(--wp--preset--spacing--40) 0;
	display: flex;
	gap: 0;
	border-bottom: 2px solid var(--wp--preset--color--gray-warm-100);
}

.woocommerce-tabs .tabs li {
	margin: 0;
}

.woocommerce-tabs .tabs li a {
	display: block;
	padding: 0.75em 1.25em;
	text-decoration: none;
	font-family: var(--wp--preset--font-family--montserrat);
	font-weight: 500;
	font-size: var(--wp--preset--font-size--small);
	color: var(--wp--preset--color--text-primary);
	border-bottom: 2px solid transparent;
	margin-bottom: -2px;
	transition: color 0.2s ease, border-color 0.2s ease;
}

.woocommerce-tabs .tabs li.active a {
	color: var(--wp--preset--color--primary);
	border-bottom-color: var(--wp--preset--color--primary);
}

.woocommerce-tabs .tabs li a:hover {
	color: var(--wp--preset--color--primary);
}

/* Related Products */
.related.products h2,
.upsells.products h2 {
	font-family: var(--wp--preset--font-family--roboto);
	font-weight: 600;
	font-size: var(--wp--preset--font-size--x-large);
	color: var(--wp--preset--color--secondary);
	margin-bottom: var(--wp--preset--spacing--40);
}

.related.products .products,
.upsells.products .products {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--wp--preset--spacing--40);
}

.related.products .product,
.upsells.products .product {
	border-radius: var(--skmu-radius-card);
	overflow: hidden;
	box-shadow: var(--skmu-shadow-card);
	transition: box-shadow var(--skmu-transition), transform var(--skmu-transition);
	background: var(--wp--preset--color--white);
	padding: var(--wp--preset--spacing--30);
	list-style: none;
}

.related.products .product:hover,
.upsells.products .product:hover {
	box-shadow: var(--skmu-shadow-card-hover);
	transform: translateY(-2px);
}

/* Shop/Archive Product Grid */
.woocommerce ul.products {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--wp--preset--spacing--40);
	list-style: none;
	padding: 0;
}

.woocommerce ul.products li.product {
	border-radius: var(--skmu-radius-card);
	overflow: hidden;
	box-shadow: var(--skmu-shadow-card);
	transition: box-shadow var(--skmu-transition), transform var(--skmu-transition);
	background: var(--wp--preset--color--white);
	padding: var(--wp--preset--spacing--30);
	margin: 0;
}

.woocommerce ul.products li.product:hover {
	box-shadow: var(--skmu-shadow-card-hover);
	transform: translateY(-2px);
}

.woocommerce ul.products li.product img {
	border-radius: 8px;
	margin-bottom: var(--wp--preset--spacing--20);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
	font-family: var(--wp--preset--font-family--roboto);
	font-weight: 600;
	font-size: var(--wp--preset--font-size--medium);
	color: var(--wp--preset--color--secondary);
}

.woocommerce ul.products li.product .price {
	color: var(--wp--preset--color--primary);
	font-weight: 600;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

/* Tablet */
@media (max-width: 1024px) {
	.wp-block-post-template.is-layout-grid {
		grid-template-columns: repeat(2, 1fr) !important;
	}

	.woocommerce ul.products,
	.related.products .products,
	.upsells.products .products {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Mobile */
@media (max-width: 767px) {
	/* Reduce section spacing on mobile */
	.alignfull > .wp-block-group__inner-container,
	.alignfull.wp-block-group {
		padding-left: var(--wp--preset--spacing--30) !important;
		padding-right: var(--wp--preset--spacing--30) !important;
	}

	/* Stack columns */
	.wp-block-columns {
		flex-direction: column !important;
	}

	/* Single column grid on mobile */
	.wp-block-post-template.is-layout-grid {
		grid-template-columns: 1fr !important;
	}

	/* Smaller headings on mobile */
	h1, .has-xx-large-font-size {
		font-size: 1.75rem !important;
	}

	h2, .has-x-large-font-size {
		font-size: 1.5rem !important;
	}

	h3, .has-large-font-size {
		font-size: 1.125rem !important;
	}

	/* Hero section mobile */
	.wp-block-cover {
		min-height: 50vh !important;
	}

	/* Hero heading mobile */
	.wp-block-cover h1.wp-block-heading {
		font-size: 1.75rem !important;
	}

	/* Footer on mobile */
	footer .wp-block-columns {
		gap: var(--wp--preset--spacing--50);
	}

	/* Reduce section padding on mobile */
	.alignfull.wp-block-group[style*="padding-top:var(--wp--preset--spacing--70)"] {
		padding-top: 3rem !important;
		padding-bottom: 3rem !important;
	}

	/* WooCommerce mobile */
	.woocommerce ul.products,
	.related.products .products,
	.upsells.products .products {
		grid-template-columns: 1fr;
	}
}

/* Small Mobile */
@media (max-width: 480px) {
	h1, .has-xx-large-font-size {
		font-size: 1.5rem !important;
	}

	h2, .has-x-large-font-size {
		font-size: 1.25rem !important;
	}

	.wp-block-button__link {
		width: 100%;
		text-align: center;
	}
}

/* ==========================================================================
   Smooth Scrolling & Accessibility
   ========================================================================== */

html {
	scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

/* Focus visible for keyboard navigation */
a:focus-visible,
button:focus-visible,
.wp-element-button:focus-visible {
	outline: 2px solid var(--wp--preset--color--primary);
	outline-offset: 2px;
}

/* ==========================================================================
   Additional Refinements
   ========================================================================== */

/* Category terms in post meta */
.wp-block-post-terms a {
	text-decoration: none;
	transition: color 0.2s ease;
}

.wp-block-post-terms a:hover {
	text-decoration: underline;
}

/* Author link in post meta */
.wp-block-post-author a {
	text-decoration: none;
	font-weight: 500;
	transition: color 0.2s ease;
}

.wp-block-post-author a:hover {
	color: var(--wp--preset--color--primary);
}

/* Post author avatar */
.wp-block-post-author__avatar img {
	border-radius: 50%;
	border: 2px solid var(--wp--preset--color--gray-warm-100);
}

/* Search form styling */
.wp-block-search__inside-wrapper {
	border: 1px solid var(--wp--preset--color--gray-warm-100);
	border-radius: var(--skmu-radius-input);
	overflow: hidden;
}

.wp-block-search__input {
	border: none;
	padding: 0.75em 1em;
	font-family: var(--wp--preset--font-family--montserrat);
	font-size: var(--wp--preset--font-size--small);
}

.wp-block-search__button {
	background-color: var(--wp--preset--color--primary);
	color: var(--wp--preset--color--white);
	border: none;
	padding: 0.75em 1.5em;
	font-family: var(--wp--preset--font-family--montserrat);
	font-weight: 600;
	font-size: var(--wp--preset--font-size--small);
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.wp-block-search__button:hover {
	background-color: var(--wp--preset--color--secondary);
}

/* Breadcrumbs WooCommerce */
.woocommerce-breadcrumb {
	font-size: var(--wp--preset--font-size--small);
	color: var(--wp--preset--color--blue-400);
	margin-bottom: var(--wp--preset--spacing--40);
}

.woocommerce-breadcrumb a {
	color: var(--wp--preset--color--primary);
	text-decoration: none;
}

.woocommerce-breadcrumb a:hover {
	text-decoration: underline;
}
