/* =====================================================================
   Rynar Hardware — theme styles
   Royal-blue hardware/e-commerce design (Plumbix-style reference)
   ===================================================================== */

:root {
	--rynar-blue: #02a4b9;
	--rynar-blue-dark: #017e8e;
	--rynar-ink: #101014;
	--rynar-surface: #f4f5f7;
	--rynar-card: #f1f1f2;
	--rynar-border: #e5e7eb;
	--rynar-muted: #6b7280;
	--rynar-whatsapp: #25d366;
	--rynar-sale: #e5484d;
	--rynar-star: #f5a623;
	--rynar-radius: 4px;
	--rynar-shadow: 0 10px 30px rgba(16, 16, 20, 0.08);
}

body {
	-webkit-font-smoothing: antialiased;
}

img {
	max-width: 100%;
	height: auto;
}

/* ---------------------------------------------------------------------
   Generic helpers used by patterns
   ------------------------------------------------------------------ */

.rynar-kicker {
	color: var(--rynar-blue);
	font-family: "Jost", sans-serif;
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.rynar-topbar {
	font-size: 0.8rem;
	letter-spacing: 0.04em;
}

.rynar-topbar a {
	color: #fff !important;
	text-decoration: none;
}

.rynar-topbar a:hover {
	text-decoration: underline;
}

/* Header */
.rynar-header {
	border-bottom: 1px solid var(--rynar-border);
	background: #fff;
}

.rynar-header .wp-block-site-title a {
	font-family: "Oswald", sans-serif;
	font-weight: 700;
	font-size: 1.7rem;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	text-decoration: none;
}

.rynar-header .wp-block-site-title a span,
.rynar-logo-accent {
	color: var(--rynar-blue);
}

.rynar-header .wp-block-site-logo img {
	max-height: 70px;
	width: auto;
}

.rynar-header .wp-block-navigation a {
	font-family: "Oswald", sans-serif;
	font-size: 0.85rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.rynar-header .wp-block-navigation a:hover {
	color: var(--rynar-blue);
}

.rynar-header .wc-block-mini-cart__button {
	color: var(--rynar-ink);
}

/* Header search: roomy input, readable placeholder */
.rynar-header .wp-block-search__input {
	padding: 0.55rem 0.9rem;
	font-size: 0.92rem;
}

.rynar-header .wp-block-search__input::placeholder {
	color: var(--rynar-muted);
	opacity: 1;
}

/* Buttons — outline / whatsapp variants */
.wp-block-button.is-style-outline .wp-block-button__link {
	border: 2px solid currentColor;
}

.rynar-btn-whatsapp .wp-block-button__link {
	background-color: var(--rynar-whatsapp) !important;
	color: #fff !important;
}

.rynar-btn-whatsapp .wp-block-button__link:hover {
	background-color: #1eb457 !important;
}

.rynar-btn-dark .wp-block-button__link {
	background-color: var(--rynar-ink) !important;
	color: #fff !important;
}

/* Discount chip used on promo tiles */
.rynar-chip {
	display: inline-block;
	background: var(--rynar-blue);
	color: #fff !important;
	font-family: "Jost", sans-serif;
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 0.3rem 0.75rem;
}

/* Tile headings: white chip behind the text so titles stay readable
   over any photo (mirrors the teal .rynar-chip above them) */
.rynar-tile h3 {
	display: inline-block;
	background: #fff;
	color: var(--rynar-ink);
	padding: 0.45rem 1.15rem;
	box-shadow: 0 2px 12px rgba(16, 16, 20, 0.08);
}

.rynar-tile h3 a {
	color: var(--rynar-ink);
}

.rynar-tile h3 a:hover {
	color: var(--rynar-blue);
}

/* Make the whole tile clickable, not just the title text, so it's obvious
   the card is a link (stretched-link pattern over the positioned cover) */
.rynar-tile {
	cursor: pointer;
}

.rynar-tile h3 a::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 2;
}

.rynar-tile.is-position-top-center .wp-block-cover__inner-container {
	text-align: center;
}

/* Promo tiles: subtle zoom on hover */
.rynar-tile {
	overflow: hidden;
}

.rynar-tile img {
	transition: transform 0.5s ease;
}

.rynar-tile:hover img {
	transform: scale(1.05);
}

/* USP strip — icon always sits left of its text block, never wraps */
.rynar-usp {
	border-top: 1px solid var(--rynar-border);
	border-bottom: 1px solid var(--rynar-border);
}

.rynar-usp .wp-block-column {
	display: flex !important;
	flex-wrap: nowrap !important;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 0.9rem;
}

.rynar-usp .wp-block-column > p {
	flex: 0 0 auto;
	margin: 0;
}

.rynar-usp h4 {
	margin-bottom: 0.15rem;
}

.rynar-usp p {
	color: var(--rynar-muted);
	font-size: 0.9rem;
}

/* Brand strip */
.rynar-brands img,
.rynar-brands .wp-block-image {
	filter: grayscale(1);
	opacity: 0.55;
	transition: opacity 0.3s ease, filter 0.3s ease;
}

.rynar-brands .wp-block-image:hover {
	filter: none;
	opacity: 1;
}

.rynar-brand-name {
	font-family: "Oswald", sans-serif;
	font-size: 1.3rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #b9bec6;
}

/* Cards (About page, feature sections) */
.rynar-card {
	background: #fff;
	border: 1px solid var(--rynar-border);
	border-radius: var(--rynar-radius);
	padding: 2rem;
	height: 100%;
}

.rynar-card-accent {
	border-top: 3px solid var(--rynar-blue);
}

.rynar-card h3,
.rynar-card h4 {
	margin-top: 0.35rem;
}

.rynar-card p,
.rynar-card li {
	color: var(--rynar-muted);
	font-size: 0.95rem;
}

.rynar-card ul {
	padding-left: 1.1rem;
	margin: 0;
}

.rynar-card ul li {
	margin-bottom: 0.35rem;
}

.rynar-icon {
	font-size: 1.9rem;
	line-height: 1;
	margin: 0;
}

/* Stat strip */
.rynar-stat {
	text-align: center;
}

.rynar-stat .rynar-stat-number {
	font-family: "Oswald", sans-serif;
	font-size: 2.4rem;
	font-weight: 600;
	color: var(--rynar-blue);
	line-height: 1.1;
	margin: 0;
}

.rynar-stat p:last-child {
	color: var(--rynar-muted);
	font-size: 0.88rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin-top: 0.25rem;
}

/* Checklist (tender banner) — check icon comes from icons.css mask */
.rynar-checklist li {
	list-style: none;
	padding-left: 1.7rem;
	position: relative;
	margin-bottom: 0.5rem;
}

.rynar-checklist li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.28em;
	width: 1em;
	height: 1em;
	background-color: var(--rynar-whatsapp);
	-webkit-mask: var(--rynar-icon-check) no-repeat center / contain;
	mask: var(--rynar-icon-check) no-repeat center / contain;
}

/* Icon accent colours (p.rynar-icon outranks .rynar-card p) */
p.rynar-icon,
.rynar-card p.rynar-icon,
.rynar-usp .rynar-i {
	color: var(--rynar-blue);
	font-size: 1.9rem;
	line-height: 1;
}

.rynar-footer .rynar-i {
	color: var(--rynar-blue);
	margin-right: 0.35rem;
}

/* Icon + label spacing inside buttons */
.wp-block-button__link .rynar-i,
.woocommerce .button .rynar-i {
	margin-right: 0.4rem;
}

/* Footer */
.rynar-footer {
	border-top: 1px solid var(--rynar-border);
	font-size: 0.92rem;
}

.rynar-footer h4 {
	font-size: 1rem;
	letter-spacing: 0.08em;
	margin-bottom: 1rem;
}

.rynar-footer a {
	color: var(--rynar-muted);
	text-decoration: none;
}

.rynar-footer a:hover {
	color: var(--rynar-blue);
}

.rynar-footer p {
	color: var(--rynar-muted);
}

.rynar-footer-bottom {
	border-top: 1px solid var(--rynar-border);
	font-size: 0.8rem;
	color: var(--rynar-muted);
}

/* Page title banner (grey strip like the reference "CART / SHOP" headers) */
.rynar-page-banner {
	background: var(--rynar-surface);
}

.rynar-page-banner h1 {
	margin: 0;
}

/* ---------------------------------------------------------------------
   Shop filter sidebar
   ------------------------------------------------------------------ */

.rynar-filter-box {
	border: 1px solid var(--rynar-border);
	border-radius: var(--rynar-radius);
	padding: 1.25rem;
	margin-bottom: 1.5rem;
}

.rynar-filter-title {
	font-size: 0.95rem;
	letter-spacing: 0.08em;
	border-bottom: 1px solid var(--rynar-border);
	padding-bottom: 0.7rem;
	margin-bottom: 0.9rem;
}

.rynar-filter-box ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.rynar-filter-box ul li {
	padding: 0.28rem 0;
	font-size: 0.92rem;
}

.rynar-filter-box ul li a {
	color: var(--rynar-muted);
	text-decoration: none;
}

.rynar-filter-box ul li a:hover {
	color: var(--rynar-blue);
}

.rynar-filter-box .wc-block-product-categories-list--has-images li,
.rynar-filter-box .wc-block-product-categories-list li {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.rynar-filter-box .wc-block-product-categories-list li > a {
	flex: 1 1 auto;
	min-width: 0;
}

.rynar-filter-box .wc-block-product-categories-list li > .wc-block-product-categories-list {
	flex-basis: 100%;
}

.rynar-filter-box .wc-block-product-categories__list-item-count {
	color: var(--rynar-muted);
	font-size: 0.8rem;
}

.rynar-filter-box .wc-block-product-categories-list .wc-block-product-categories-list {
	width: 100%;
	padding-left: 0.9rem;
}

/* Classic price filter widget (server-rendered) */
.woocommerce .rynar-filter-box .price_slider_wrapper .ui-slider,
.rynar-filter-box .price_slider_wrapper .ui-slider {
	background: var(--rynar-border) !important;
	border: none;
	border-radius: 999px;
	height: 5px;
	margin: 1.2rem 0.5rem 1.4rem;
}

.woocommerce .rynar-filter-box .price_slider_wrapper .ui-slider .ui-slider-range,
.rynar-filter-box .price_slider_wrapper .ui-slider .ui-slider-range {
	background: var(--rynar-blue) !important;
	border-radius: 999px;
}

.woocommerce .rynar-filter-box .price_slider_wrapper .ui-slider .ui-slider-handle,
.rynar-filter-box .price_slider_wrapper .ui-slider .ui-slider-handle {
	width: 14px;
	height: 14px;
	background: #fff !important;
	border: 3px solid var(--rynar-blue);
	border-radius: 999px;
	top: -5px;
	margin-left: -7px;
	cursor: pointer;
}

.rynar-filter-box .price_slider_amount {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.6rem;
	font-size: 0.82rem;
	color: var(--rynar-muted);
}

.woocommerce .rynar-filter-box .price_slider_amount .button,
.rynar-filter-box .price_slider_amount .button {
	flex: 0 0 auto;
	float: none;
	white-space: nowrap;
	background: var(--rynar-blue);
	color: #fff;
	border: none;
	border-radius: var(--rynar-radius);
	font-family: "Oswald", sans-serif;
	font-size: 0.72rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 0.5rem 1.1rem;
}

.woocommerce .rynar-filter-box .price_slider_amount .button:hover,
.rynar-filter-box .price_slider_amount .button:hover {
	background: var(--rynar-blue-dark);
}

.rynar-filter-box .price_slider_amount .price_label {
	flex: 1 1 auto;
	text-align: right;
	white-space: nowrap;
}

/* Active filters chips */
.rynar-filter-box .widget_layered_nav_filters ul li a {
	color: var(--rynar-ink);
	font-size: 0.85rem;
}

.rynar-filter-box .widget_layered_nav_filters ul li a::before {
	color: var(--rynar-sale);
	margin-right: 0.35rem;
}

.rynar-filter-help .rynar-filter-title {
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 0.25rem;
}

.rynar-filter-help p {
	color: var(--rynar-muted);
}

@media (max-width: 781px) {
	.rynar-shop-sidebar {
		margin-bottom: 1rem;
	}
}

/* =====================================================================
   WooCommerce — classic templates styled to match the reference design
   ===================================================================== */

.rynar-woo-wrap {
	max-width: 1240px;
	margin: 0 auto;
}

/* When the shop loop sits beside the filter sidebar, the column provides
   the outer spacing */
.wp-block-column .rynar-woo-wrap {
	padding: 0;
}

.woocommerce-products-header__title {
	text-align: center;
	margin: 0.5rem 0 1.5rem;
}

/* Result count / ordering row */
.woocommerce-result-count {
	color: var(--rynar-muted);
	font-size: 0.9rem;
}

.woocommerce-ordering select {
	border: 1px solid var(--rynar-border);
	padding: 0.5rem 2rem 0.5rem 0.75rem;
	font-family: "Jost", sans-serif;
	font-size: 0.9rem;
	background-color: #fff;
	border-radius: var(--rynar-radius);
}

/* --- Product grid cards --- */
ul.products {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.75rem 1.5rem;
	list-style: none;
	margin: 2rem 0 0;
	padding: 0;
}

ul.products.columns-3 {
	grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1024px) {
	ul.products,
	ul.products.columns-3 {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 768px) {
	ul.products {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.25rem 1rem;
	}
}

/* Woo's clearfix pseudo-elements would occupy grid cells */
ul.products::before,
ul.products::after {
	display: none !important;
}

ul.products li.product {
	position: relative;
	text-align: center;
	margin: 0;
	width: auto !important;
	float: none !important;
}

ul.products li.product a.woocommerce-LoopProduct-link {
	text-decoration: none;
	display: block;
}

ul.products li.product img {
	width: 100%;
	height: auto; /* beat the img height attribute so aspect-ratio applies */
	aspect-ratio: 1 / 1;
	object-fit: cover;
	background: var(--rynar-card);
	border-radius: var(--rynar-radius);
	transition: transform 0.4s ease, box-shadow 0.4s ease;
	margin-bottom: 1rem;
}

ul.products li.product:hover img {
	transform: translateY(-4px);
	box-shadow: var(--rynar-shadow);
}

ul.products li.product .woocommerce-loop-product__title,
ul.products li.product .woocommerce-loop-category__title {
	font-family: "Jost", sans-serif;
	font-size: 0.98rem;
	font-weight: 500;
	text-transform: none;
	letter-spacing: 0;
	color: var(--rynar-ink);
	padding: 0;
	margin: 0 0 0.35rem;
}

ul.products li.product .price {
	color: var(--rynar-blue);
	font-family: "Oswald", sans-serif;
	font-size: 1.02rem;
	font-weight: 600;
	display: block;
	margin-bottom: 0.6rem;
}

.rynar-no-price {
	color: var(--rynar-muted);
	font-family: "Jost", sans-serif;
	font-size: 0.9rem;
	font-style: italic;
	font-weight: 400;
}

ul.products li.product .price del {
	color: var(--rynar-muted);
	font-weight: 400;
	opacity: 1;
	margin-right: 0.4rem;
}

ul.products li.product .price ins {
	text-decoration: none;
}

ul.products li.product .star-rating {
	margin: 0 auto 0.4rem;
	color: var(--rynar-star);
}

/* Add-to-cart button inside the grid */
ul.products li.product .button {
	background: #fff;
	color: var(--rynar-ink);
	border: 1px solid var(--rynar-ink);
	border-radius: var(--rynar-radius);
	font-family: "Oswald", sans-serif;
	font-size: 0.78rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 0.55rem 1.3rem;
	transition: all 0.25s ease;
	display: inline-block;
	margin-top: 0.1rem;
}

ul.products li.product .button:hover {
	background: var(--rynar-blue);
	border-color: var(--rynar-blue);
	color: #fff;
}

/* Equal-height cards: pin the button to the bottom so rows stay flush */
ul.products li.product {
	display: flex;
	flex-direction: column;
}

ul.products li.product > .woocommerce-LoopProduct-link {
	flex: 1 1 auto;
}

ul.products li.product > .button {
	margin-top: auto;
	align-self: center;
}

/* Sale badge — blue circle like the reference */
.woocommerce span.onsale,
ul.products li.product .onsale {
	position: absolute;
	top: 0.75rem;
	left: 0.75rem;
	z-index: 2;
	background: var(--rynar-blue);
	color: #fff;
	font-family: "Jost", sans-serif;
	font-size: 0.72rem;
	font-weight: 600;
	min-width: 3.1em;
	min-height: 3.1em;
	line-height: 3.1em;
	border-radius: 999px;
	text-align: center;
	padding: 0;
	margin: 0;
}

/* --- Single product --- */
.single-product div.product {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 3rem;
	align-items: start;
}

@media (max-width: 900px) {
	.single-product div.product {
		grid-template-columns: 1fr;
	}
}

.single-product div.product .woocommerce-product-gallery {
	width: 100% !important;
	float: none !important;
	background: var(--rynar-card);
	border-radius: var(--rynar-radius);
}

.single-product div.product .summary {
	width: 100% !important;
	float: none !important;
}

.single-product div.product .product_title {
	font-family: "Jost", sans-serif;
	font-weight: 600;
	font-size: 1.75rem;
	text-transform: none;
	letter-spacing: 0;
	margin-bottom: 0.5rem;
}

.single-product div.product p.price {
	color: var(--rynar-blue);
	font-family: "Oswald", sans-serif;
	font-size: 1.5rem;
	font-weight: 600;
}

.single-product div.product p.price del {
	color: var(--rynar-muted);
	font-size: 1.1rem;
	font-weight: 400;
	opacity: 1;
}

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

.single-product .woocommerce-product-details__short-description {
	color: var(--rynar-muted);
	border-bottom: 1px solid var(--rynar-border);
	padding-bottom: 1.25rem;
	margin-bottom: 1.25rem;
}

/* Quantity + add-to-cart row */
.single-product form.cart {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	align-items: stretch;
	margin: 1.25rem 0;
}

.single-product form.cart div.quantity {
	display: flex;
	float: none;
	margin: 0;
}

.woocommerce .quantity .qty {
	width: 5.5em;
	border: 1px solid var(--rynar-border);
	border-radius: var(--rynar-radius);
	padding: 0.7rem 0.5rem;
	text-align: center;
	font-family: "Jost", sans-serif;
	font-size: 1rem;
	background: var(--rynar-surface);
}

.single-product form.cart .single_add_to_cart_button {
	flex: 1 1 auto;
	min-width: 220px;
}

/* Blue primary Woo buttons */
.woocommerce #respond input#submit,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce button[name="apply_coupon"],
.woocommerce button[name="update_cart"],
.woocommerce .single_add_to_cart_button,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce form.cart .button {
	background: var(--rynar-blue);
	color: #fff;
	font-family: "Oswald", sans-serif;
	font-weight: 500;
	font-size: 0.88rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	border: none;
	border-radius: var(--rynar-radius);
	padding: 0.85rem 1.75rem;
	transition: background 0.25s ease;
}

.woocommerce #respond input#submit:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover,
.woocommerce button[name="apply_coupon"]:hover,
.woocommerce button[name="update_cart"]:hover,
.woocommerce .single_add_to_cart_button:hover,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover,
.woocommerce form.cart .button:hover {
	background: var(--rynar-blue-dark);
	color: #fff;
}

/* Meta (SKU / category) */
.single-product .product_meta {
	border-top: 1px solid var(--rynar-border);
	padding-top: 1.25rem;
	font-size: 0.88rem;
	color: var(--rynar-muted);
}

.single-product .product_meta > span {
	display: block;
	margin-bottom: 0.3rem;
}

.single-product .product_meta a {
	color: var(--rynar-blue);
}

/* Tabs */
.woocommerce div.product .woocommerce-tabs {
	grid-column: 1 / -1;
	margin-top: 2rem;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
	padding: 0;
	margin: 0 0 1.5rem;
	display: flex;
	justify-content: center;
	gap: 2.5rem;
	border-bottom: 1px solid var(--rynar-border);
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before,
.woocommerce div.product .woocommerce-tabs ul.tabs::after,
.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
	display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
	background: none;
	border: none;
	border-radius: 0;
	margin: 0;
	padding: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
	font-family: "Jost", sans-serif;
	font-weight: 500;
	font-size: 1rem;
	color: var(--rynar-muted);
	padding: 0.75rem 0.25rem;
	display: inline-block;
	border-bottom: 2px solid transparent;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
	color: var(--rynar-ink);
	border-bottom-color: var(--rynar-blue);
}

.woocommerce div.product .woocommerce-tabs .panel h2:first-of-type {
	font-size: 1.25rem;
}

/* Related products */
.single-product .related.products,
.single-product .upsells.products {
	grid-column: 1 / -1;
	margin-top: 3rem;
}

.single-product .related.products > h2,
.single-product .upsells.products > h2 {
	text-align: center;
	margin-bottom: 1rem;
}

/* --- Cart (quote list) --- */
.woocommerce-cart .rynar-woo-wrap {
	max-width: 1000px;
}

.woocommerce table.shop_table {
	border: 1px solid var(--rynar-border);
	border-radius: var(--rynar-radius);
	border-collapse: separate;
	border-spacing: 0;
}

.woocommerce table.shop_table th {
	font-family: "Oswald", sans-serif;
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	font-size: 0.8rem;
	color: var(--rynar-ink);
	background: var(--rynar-surface);
	padding: 0.9rem 1rem;
}

.woocommerce table.shop_table td {
	border-top: 1px solid var(--rynar-border);
	padding: 0.9rem 1rem;
	vertical-align: middle;
}

.woocommerce table.cart img {
	width: 72px;
	background: var(--rynar-card);
	border-radius: var(--rynar-radius);
}

.woocommerce table.cart td.product-name a {
	font-weight: 500;
	color: var(--rynar-ink);
}

.woocommerce a.remove {
	color: var(--rynar-sale) !important;
	font-size: 1.2rem;
	width: 1.4em;
	height: 1.4em;
	line-height: 1.35em;
}

.woocommerce a.remove:hover {
	background: var(--rynar-sale);
	color: #fff !important;
}

.woocommerce #content table.cart td.actions .coupon .input-text,
.woocommerce table.cart td.actions .coupon .input-text {
	border: 1px solid var(--rynar-border);
	border-radius: var(--rynar-radius);
	padding: 0.85rem 1rem;
	width: 180px;
	margin-right: 0.5rem;
}

/* Keep mixed rows of buttons (emoji or not) the same height */
.wp-block-button__link {
	line-height: 1.25;
}

.cart_totals h2 {
	font-size: 1.2rem;
}

/* Quote mode: the WhatsApp plugin blanks all price values, so remove the
   empty price/subtotal columns and the empty totals table entirely. */
.woocommerce-cart table.cart th.product-price,
.woocommerce-cart table.cart td.product-price,
.woocommerce-cart table.cart th.product-subtotal,
.woocommerce-cart table.cart td.product-subtotal {
	display: none;
}

.woocommerce-cart .cart-collaterals .cart_totals > h2,
.woocommerce-cart .cart-collaterals .cart_totals table.shop_table {
	display: none;
}

.woocommerce-cart .cart-collaterals .cart_totals {
	float: none;
	width: 100%;
	max-width: 520px;
	margin: 0 auto;
}

/* Empty cart */
.cart-empty.woocommerce-info {
	text-align: center;
	font-size: 1.05rem;
}

.woocommerce-info {
	border-top-color: var(--rynar-blue);
}

.woocommerce-message {
	border-top-color: var(--rynar-whatsapp);
}

.woocommerce-message .button,
.woocommerce-info .button,
.woocommerce-error .button {
	background: var(--rynar-blue);
	color: #fff;
	border-radius: var(--rynar-radius);
}

.return-to-shop a.button {
	background: var(--rynar-blue);
	color: #fff;
}

/* Star ratings colour */
.woocommerce .star-rating span::before,
.woocommerce .star-rating::before {
	color: var(--rynar-star);
}

/* Reviews */
.woocommerce #reviews #comments ol.commentlist li img.avatar {
	border-radius: 999px;
	border: none;
	background: var(--rynar-card);
}

.woocommerce #reviews #comments ol.commentlist li .comment-text {
	border-color: var(--rynar-border);
	border-radius: var(--rynar-radius);
}

/* Breadcrumbs (if re-enabled) */
.woocommerce .woocommerce-breadcrumb {
	color: var(--rynar-muted);
	font-size: 0.85rem;
}

/* Pagination */
.woocommerce nav.woocommerce-pagination ul {
	border: none;
	display: flex;
	gap: 0.4rem;
	justify-content: center;
}

.woocommerce nav.woocommerce-pagination ul li {
	border: 1px solid var(--rynar-border);
	border-radius: var(--rynar-radius);
	overflow: hidden;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
	padding: 0.55rem 0.95rem;
	font-family: "Oswald", sans-serif;
}

.woocommerce nav.woocommerce-pagination ul li span.current,
.woocommerce nav.woocommerce-pagination ul li a:hover {
	background: var(--rynar-blue);
	color: #fff;
}

/* Forms */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
	border: 1px solid var(--rynar-border);
	border-radius: var(--rynar-radius);
	padding: 0.7rem 1rem;
}

/* Mini-cart drawer button count bubble inherits blue */
.wc-block-mini-cart__badge {
	background: var(--rynar-blue);
	color: #fff;
}

/* WhatsApp plugin button polish (overrides its inline-adjacent styles) */
.hwq-product-wa {
	border-radius: var(--rynar-radius) !important;
}

#hwq-whatsapp-btn {
	border-radius: var(--rynar-radius) !important;
	font-family: "Oswald", sans-serif !important;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

/* Video tutorials page */
.rynar-video-card {
	overflow: hidden;
	border-radius: 10px;
	transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.rynar-video-card:hover {
	box-shadow: var(--rynar-shadow);
	transform: translateY(-3px);
}

.rynar-video-thumb {
	aspect-ratio: 16 / 9;
	background: linear-gradient(135deg, rgba(2, 164, 185, 0.08), rgba(2, 164, 185, 0.2));
	display: flex;
	align-items: center;
	justify-content: center;
}

.rynar-video-thumb .rynar-i-circle-play {
	width: 3.5rem;
	height: 3.5rem;
	color: var(--rynar-blue);
	opacity: 0.85;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.rynar-video-card:hover .rynar-video-thumb .rynar-i-circle-play {
	transform: scale(1.1);
	opacity: 1;
}

.rynar-video-card .rynar-video-body {
	padding: 1.1rem 1.35rem 1.4rem;
}

.rynar-video-card h4 {
	margin: 0 0 0.4rem;
}

.rynar-video-card p {
	color: var(--rynar-muted);
	margin: 0;
}
