/*
Theme Name: LskTienda

WooCommerce styles override
*/

/**
 * Shop tables
 */
table.shop_table_responsive thead {
	display: none;
}

table.shop_table_responsive tbody th {
	display: none;
}

table.shop_table_responsive tr td {
	display: block;
	text-align: right;
	clear: both;
}

table.shop_table_responsive tr td::before {
	content: attr(data-title) ": ";
	float: left;
}

table.shop_table_responsive tr td.product-remove a {
	text-align: left;
}

table.shop_table_responsive tr td.product-remove::before {
	display: none;
}

table.shop_table_responsive tr td.actions::before,
table.shop_table_responsive tr td.download-actions::before {
	display: none;
}

table.shop_table_responsive tr td.download-actions .button {
	display: block;
	text-align: center;
}

@media screen and (min-width: 48em) {

	table.shop_table_responsive thead {
		display: table-header-group;
	}

	table.shop_table_responsive tbody th {
		display: table-cell;
	}

	table.shop_table_responsive tr th,
	table.shop_table_responsive tr td {
		text-align: left;
	}

	table.shop_table_responsive tr td {
		display: table-cell;
	}

	table.shop_table_responsive tr td::before {
		display: none;
	}
}

/**
 * Products
 */
ul.products {
	margin: 0;
	padding: 0;
}

ul.products li.product {
	list-style: none;
	position: relative;
	margin-bottom: 2em;
}

ul.products li.product img {
	display: block;
}

ul.products li.product .button {
	display: block;
}

/* Mobile Product Grid Styles */
@media screen and (max-width: 48em) {
	ul.products {
		display: flex;
		flex-wrap: wrap;
		margin: 0;
		padding: 0;
		gap: 10px;
	}

	ul.products li.product {
		width: calc(50% - 5px);
		/* 2 columns */
		float: left;
		padding: 0;
		/* Small gap between columns */
		margin-bottom: 0;
		box-sizing: border-box;
	}

	/* Ensure clear floats for rows */
	ul.products li.product:nth-child(2n+1) {
		clear: both;
	}

	/* Adjust spacing */
	.shop-archive-page #secondary {
		width: 100%;
		margin-bottom: 40px;
	}

	/* Smaller font sizes for mobile */
	ul.products li.product .woocommerce-loop-product__title {
		font-size: 13px !important;
	}

	ul.products li.product .price {
		font-size: 13px !important;
	}
}

/* Desktop Styles */
@media screen and (min-width: 48em) {
	ul.products li.product {
		width: 32%;
		/* 3 Columns */
		float: left;
		margin-right: 1.8%;
	}

	ul.products li.product.first {
		clear: both;
	}

	ul.products li.product.last {
		margin-right: 0;
	}

	ul.products.columns-1 li.product {
		float: none;
		width: 100%;
	}

	ul.products.columns-2 li.product {
		width: 48.1%;
	}

	ul.products.columns-3 li.product {
		width: 32%;
	}

	ul.products.columns-4 li.product {
		width: 22.15%;
	}

	ul.products.columns-5 li.product {
		width: 16.96%;
	}

	ul.products.columns-6 li.product {
		width: 13.49333%;
	}

	/* Shop Layout Adjustments */
	.shop-layout-wrapper {
		display: flex;
		gap: 40px;
		align-items: flex-start;
	}

	.shop-archive-page #secondary {
		width: 290px;
		flex-shrink: 0;
		display: block !important;
	}

	.shop-content-area {
		flex: 1;
		min-width: 0;
	}
}

/* Estado de carga al filtrar por AJAX */
#lsktienda-shop-ajax-wrap.lsktienda-shop-loading {
	position: relative;
	opacity: 0.65;
	pointer-events: none;
}

#lsktienda-shop-ajax-wrap.lsktienda-shop-loading::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 32px;
	height: 32px;
	margin: -16px 0 0 -16px;
	border: 3px solid rgba(0, 0, 0, 0.1);
	border-top-color: #333;
	border-radius: 50%;
	animation: lsktienda-spin 0.7s linear infinite;
}

@keyframes lsktienda-spin {
	to {
		transform: rotate(360deg);
	}
}

/* Shop Hero Banner */
.shop-hero-banner {
	position: relative;
	height: 220px;
	background-color: #000;
	background-image:
		url("https://lsktienda.com/wp-content/uploads/2024/09/WhatsApp-Image-2024-09-17-at-6.47.12-PM.jpeg"),
		radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 10%),
		radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 10%),
		linear-gradient(45deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.02) 50%, rgba(255, 255, 255, 0.02) 75%, transparent 75%, transparent);
	background-size: cover, 100% 100%, 100% 100%, 40px 40px;
	background-position: center, center, center, center;
	background-repeat: no-repeat;
	color: #fff;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin-left: 0;
	margin-right: 0;
}

.shop-hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2));
}

.shop-hero-title {
	position: relative;
	z-index: 2;
	font-size: 4rem;
	font-weight: 900;
	text-transform: uppercase;
	margin: 0;
	letter-spacing: -2px;
}

@media (max-width: 768px) {
	.shop-hero-title {
		font-size: 2.5rem;
		word-break: break-word;
	}

	.shop-hero-banner {
		height: 200px;
	}

	.shop-archive-page .widget {
		margin-bottom: 0px !important;
	}

	.shop-archive-page #secondary {
		margin-bottom: 20px;
	}

	.shop-loop-controls-right {
		display: none;
	}
}

/* Shop Loop Header */


.products-per-page {
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.products-per-page .label {
	color: #000;
	margin-right: 15px;
}

.limit-link {
	color: #999;
	text-decoration: none;
	transition: color 0.3s;
	padding: 0 5px;
}

.limit-link:hover,
.limit-link.active {
	color: #000;
	font-weight: 800;
}

.layout-toggle {
	background: none;
	border: none;
	padding: 5px;
	color: #ccc;
	cursor: pointer;
	transition: all 0.3s;
}

.layout-toggle:hover,
.layout-toggle.active {
	color: #000;
}

.shop-loop-controls-right select.orderby {
	border: none;
	background: transparent;
	font-weight: 700;
	font-size: 13px;
	padding-right: 20px;
	border-bottom: 1px solid #efefef;
	cursor: pointer;
}

/* Sidebar Widgets Redesign */
.shop-archive-page #secondary {
	padding-right: 20px;
}

.shop-archive-page .widget {
	margin-bottom: 60px;
}

.shop-archive-page .widget-title {
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 30px;
	color: #000;
	position: relative;
	border-bottom: 1px solid #efefef;
	padding-bottom: 15px;
}

/* Price Filter */
.price_slider_wrapper .ui-widget-content {
	background: #efefef;
	border: none;
	height: 3px;
}

.wc-block-product-filter-price-slider__range .range-bar {
	background: #cfa15f;
}

.wc-block-product-filter-price-slider .text input[type=text] {

	max-width: 100px;

}

:where(.wc-block-product-filters) .wc-block-product-filters__overlay-content {
	gap: 35px;
}


.price_slider_wrapper .ui-slider-range {
	background: #fb4722;
	/* More vibrant red-orange for price range */
}

.wc-block-product-filter-checkbox-list__input-wrapper:before {

	opacity: 1;
	background: transparent;
	border: 2px solid rgba(0, 0, 0, 0.105);
}

.wp-block-woocommerce-product-filter-price,
.wp-block-woocommerce-product-filter-rating,
.wp-block-woocommerce-product-filter-taxonomy,
.wp-block-woocommerce-product-filter-stock {
	border-bottom: 1px solid rgba(0, 0, 0, 0.105);
	padding-bottom: 30px;
}

.wp-block-woocommerce-product-filter-rating svg {
	color: #EABE12;
}

.price_slider_wrapper .ui-slider-handle {
	background: #fb4722;
	border: none;
	top: -6px;
	width: 14px;
	height: 14px;
	border-radius: 50%;
}

.price_slider_amount .button {
	background: #cfa15f;
	color: #fff;
	border: none;
	padding: 10px 25px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	border-radius: 4px;
	margin-top: 20px;
}

/* Product Badges */
.product-badges-container {
	position: absolute;
	top: 15px;
	left: 15px;
	right: 15px;
	z-index: 10;
	height: 40px;
}

.badge {
	padding: 6px 14px;
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	line-height: 1;
}

.badge.sale-offer-badge,
.badge.product-badge-new {
	font-size: 14px;
	font-weight: 800;
	text-transform: none;
}

.badge.product-badge-new {
	text-transform: uppercase;
}

.sale-percent-badge {
	background: #ff0000;
	color: #fff;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	position: absolute;
	top: 0;
	left: 0;
}

.sale-text-badge {
	background: #ff0000;
	color: #fff;
	border-radius: 4px;
	position: absolute;
	top: 0;
	right: 0;
}

.out-of-stock-badge {
	background: #fff;
	color: #999;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	font-size: 9px;
	line-height: 1.1;
	text-align: center;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	position: absolute;
	top: 0;
	left: 0;
}

/* Re-adjusting badge layout to match image */
ul.products li.product .product-badges-container {
	width: calc(100% - 20px);
}

.badge.sale-text-badge {
	position: absolute;
	top: 0;
	right: 0;
	/* Sale X% on top right */
}

.badge.sale-percent-badge {
	position: absolute;
	top: 0;
	left: 0;
	/* -X% on top left */
}

/* Product Card Improvements */
ul.products li.product {
	padding: 0;
	background: #fff;
}

ul.products li.product .woocommerce-loop-product__title {
	font-size: 14px;
	font-weight: 600;
	margin: 15px 0 5px;
	color: #000;
	line-height: 1.3;
}

ul.products li.product .price {
	color: #666;
	font-size: 15px;
	font-weight: 700;
	display: block;
}

ul.products li.product img {
	width: 100%;
	aspect-ratio: 768/1024;
	object-fit: cover;
	transition: transform 0.5s ease;
}

ul.products li.product:hover img {
	transform: scale(1.05);
}

ul.products li.product .button {
	display: none;
	/* Hide add to cart on loop as per design usually */
}

/**
 * Single product
 */
.single-product div.product {
	position: relative;
}

.single-product div.product .woocommerce-product-gallery {
	display: flex;
	flex-direction: column-reverse;
	/* Thumbnails below on mobile */
	gap: 15px;
}

@media (min-width: 768px) {
	.single-product div.product .woocommerce-product-gallery {
		flex-direction: row-reverse;
		/* Thumbnails on the left of viewport */
		justify-content: flex-end;
	}

	.single-product div.product .woocommerce-product-gallery .flex-viewport {
		flex: 1;
	}

	.single-product div.product .woocommerce-product-gallery .flex-control-thumbs {
		width: 100px;
		/* Width of the thumbnail column */
		display: flex;
		flex-direction: column;
		gap: 10px;
	}

	.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li {
		width: 100% !important;
		margin: 0 !important;
	}
}

.single-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__trigger {
	position: absolute;
	bottom: 20px;
	right: 30px;
	display: block;
	z-index: 99;
}

.single-product div.product .woocommerce-product-gallery .flex-viewport {

	overflow: hidden;
}

.single-product div.product .woocommerce-product-gallery .flex-viewport .woocommerce-product-gallery__image img {
	width: 100%;
	display: block;
}

/* Ensure zoom image can still scale naturally */
.single-product div.product .woocommerce-product-gallery .flex-viewport .woocommerce-product-gallery__image img.zoomImg {
	width: auto !important;
}

.single-product div.product .woocommerce-product-gallery .flex-control-thumbs {
	margin: 0;
	padding: 0;
	list-style: none;
}

.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li {
	list-style: none;
	cursor: pointer;
}

.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li img {
	opacity: 0.6;
	border: 1px solid transparent;
	transition: all 0.3s ease;
}

.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li img.flex-active,
.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li:hover img {
	opacity: 1;
	border-color: #cfa15f;
}

.stock:empty::before {
	display: none;
}

.stock.in-stock {
	color: #222;
	font-weight: 600;
	font-size: 14px;
}

.stock.out-of-stock {
	color: #e2401c;
}

/**
 * Checkout
 */
@media screen and (min-width: 768px) {

	.col2-set .form-row-first {
		float: left;
		margin-right: 3.8%;
	}

	.col2-set .form-row-last {
		float: right;
		margin-right: 0;
	}

	.col2-set .form-row-first,
	.col2-set .form-row-last {
		width: 48.1%;
	}
}

/**
 * General WooCommerce components
 */

/**
 * Header cart
 */
.site-header-cart {
	position: relative;
	margin: 0;
	padding: 0;
}

.site-header-cart .cart-contents {
	text-decoration: none;
}

.site-header-cart .widget_shopping_cart {
	display: none;
}

.site-header-cart .product_list_widget {
	margin: 0;
	padding: 0;
}

/**
 * Star rating
 */
.star-rating {
	overflow: hidden;
	position: relative;
	height: 1.618em;
	line-height: 1.618;
	width: 5.3em;
	font-family: star;
	font-weight: 400;
}

.star-rating::before {
	content: "\53\53\53\53\53";
	opacity: 0.25;
	float: left;
	top: 0;
	left: 0;
	position: absolute;
}

.star-rating span {
	overflow: hidden;
	float: left;
	top: 0;
	left: 0;
	position: absolute;
	padding-top: 1.5em;
}

.star-rating span::before {
	content: "\53\53\53\53\53";
	top: 0;
	position: absolute;
	left: 0;
	color: #EABE12;
}

p.stars a {
	position: relative;
	height: 1em;
	width: 1em;
	text-indent: -999em;
	display: inline-block;
	text-decoration: none;
	margin-right: 1px;
	font-weight: 400;
}

p.stars a::before {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 1em;
	height: 1em;
	line-height: 1;
	font-family: star;
	content: "\53";
	color: #404040;
	text-indent: 0;
	opacity: 0.25;
}

p.stars a:hover~a::before {
	content: "\53";
	color: #404040;
	opacity: 0.25;
}

p.stars:hover a::before {
	content: "\53";
	color: #EABE12;
	opacity: 1;
}

p.stars.selected a.active::before {
	content: "\53";
	color: #EABE12;
	opacity: 1;
}

p.stars.selected a.active~a::before {
	content: "\53";
	color: #404040;
	opacity: 0.25;
}

p.stars.selected a:not(.active)::before {
	content: "\53";
	color: #EABE12;
	opacity: 1;
}

/* Stock Status Widget */
.widget_layered_nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.widget_layered_nav ul li {
	margin-bottom: 10px;
	font-size: 13px;
	color: #666;
}

.widget_layered_nav ul li a {
	text-decoration: none;
	color: inherit;
	display: flex;
	align-items: center;
	gap: 10px;
}

.widget_layered_nav ul li a::before {
	content: '';
	width: 16px;
	height: 16px;
	border: 1px solid #ddd;
	display: inline-block;
	flex-shrink: 0;
}

.widget_layered_nav ul li.chosen a::before {
	background: #000;
	border-color: #000;
}

/* Product list widget (Top rated, etc.) */
.widget_products ul,
.widget_top_rated_products ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.widget_products ul li,
.widget_top_rated_products ul li {
	display: flex;
	gap: 15px;
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid #f9f9f9;
}

.widget_products ul li:last-child,
.widget_top_rated_products ul li:last-child {
	border-bottom: none;
}

.widget_products ul li img,
.widget_top_rated_products ul li img {
	width: 70px;
	height: 70px;
	object-fit: cover;
	float: none;
	margin: 0;
}

.widget_products .product-title,
.widget_top_rated_products .product-title {
	font-size: 13px;
	font-weight: 700;
	color: #000;
	display: block;
	margin-bottom: 5px;
	text-decoration: none;
}

.widget_products .amount,
.widget_top_rated_products .amount {
	font-weight: 700;
	color: #cfa15f;
}

.star-rating {
	font-size: 12px;
	margin-top: 5px;
}

.woocommerce-tabs.wc-tabs-wrapper {

	border-top: 1px solid rgba(0, 0, 0, 0.105);
}

/* Remove WC default styles for the tabs container */
.woocommerce-tabs ul.tabs::before,
.woocommerce-tabs ul.tabs::after {
	content: none !important;
}

.woocommerce-tabs ul.tabs {
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
	display: flex !important;
	justify-content: center !important;
	gap: 20px;
	border: none !important;
	background: transparent !important;
}

.woocommerce-tabs ul.tabs li {
	display: inline-block !important;
	margin: 0 !important;
	padding: 0 !important;
	background: transparent !important;
	border: none !important;
	position: relative;
	top: -1px;
	/* Align with the section top border */
}

.woocommerce-tabs ul.tabs li a {
	padding: 20px 5px !important;
	display: block;
	text-decoration: none !important;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	color: #bbb;
	letter-spacing: 0.8px;
	border-top: 3px solid transparent !important;
	transition: all 0.3s ease;
	line-height: 1;
}

/* Active tab style */
.woocommerce-tabs ul.tabs li.active a {
	color: #222 !important;
	border-top: 3px solid #cfa15f !important;
}

.woocommerce-tabs ul.tabs li:not(.active) a:hover {
	color: #666 !important;
}



.woocommerce-Tabs-panel {
	padding-top: 40px;
	max-width: 1000px;
	margin: 0 auto;
	color: #555;
	line-height: 1.8;
}

.woocommerce-Tabs-panel h2:first-of-type {
	display: none !important;
}

/* Additional Information Table Styling */
table.shop_attributes {
	border: 0;
	border-collapse: collapse;
	width: 100%;
	margin-bottom: 30px;
}

table.shop_attributes tr {
	border-bottom: 1px solid #f2f2f2;
	transition: background-color 0.2s ease;
}

table.shop_attributes tr:hover {
	background-color: #fafafa;
}

table.shop_attributes tr:last-child {
	border-bottom: none;
}

table.shop_attributes th,
table.shop_attributes td {
	padding: 18px 10px;
	text-align: left;
	line-height: 1.5;
	vertical-align: top;
}

table.shop_attributes th {
	width: 180px;
	font-weight: 700;
	color: #111;
	text-transform: uppercase;
	font-size: 12px;
	letter-spacing: 1px;
	background: none;
}

table.shop_attributes td {
	font-style: normal;
	color: #666;
	font-size: 14px;
}

table.shop_attributes p {
	margin: 0 !important;
	padding: 0 !important;
}

@media (max-width: 600px) {

	table.shop_attributes th,
	table.shop_attributes td {
		display: block;
		width: 100% !important;
		padding: 10px 0;
	}

	table.shop_attributes th {
		padding-bottom: 0;
		color: #333;
	}

	table.shop_attributes td {
		padding-top: 5px;
	}
}

/* Reviews and Ratings Styling */
.woocommerce-Reviews {
	display: flex;
	flex-wrap: wrap;
	gap: 60px;
	margin-top: 20px;
}

#comments,
#review_form_wrapper {
	flex: 1;
	min-width: 300px;
}

#comments {
	max-width: 450px;
}

.woocommerce-Reviews-title,
.comment-reply-title {
	font-size: 16px !important;
	font-weight: 700 !important;
	text-transform: uppercase;
	margin-bottom: 10px !important;
	color: #222;
	display: block;
}

.woocommerce-noreviews {
	color: #888;
	font-size: 15px;
}

#review_form .comment-form {
	display: flex;
	flex-direction: column;
}


.lsktienda-reviews-list p {
	margin: 0;
}

/* Fotos en reseñas */
.lsktienda-review-photos {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-top: 12px;
}

.lsktienda-review-photo {
	width: 70px;
	height: 70px;
	object-fit: cover;
	border-radius: 6px;
	border: 1px solid #eee;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

#review_form_wrapper p {
	margin-top: 0;
	margin-bottom: 10px;
}

#review_form label {
	display: block;
	font-size: 14px;
	font-weight: 400;
	color: #333;
	margin-bottom: 8px;
}

#review_form input[type="text"],
#review_form input[type="email"],
#review_form textarea {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 14px;
	transition: border-color 0.3s;
	background-color: #fff;
}

#review_form input[type="file"] {
	width: 100%;
	padding: 12px;
	border: 1px dashed #ddd;
	border-radius: 4px;
	font-size: 14px;
	background-color: #fff;
}

/* Botón bonito del selector de archivos */
#review_form input[type="file"]::file-selector-button {
	background: #e1edfb;
	color: #2c82f9;
	border: 1px solid #e1edfb;
	border-radius: 6px;
	padding: 10px 14px;
	font-weight: 800;
	text-transform: uppercase;
	font-size: 12px;
	cursor: pointer;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
	margin-right: 12px;
}

#review_form input[type="file"]::file-selector-button:hover {
	background: #d4e4f8;
	border-color: #d4e4f8;
	color: #2c82f9;
}

/* Etiqueta del input */
.comment-form-photos label {
	font-size: 14px;
	font-weight: 700;
	color: #222;
	margin-bottom: 8px;
}

#review_form input:focus,
#review_form textarea:focus {
	border-color: #cfa15f;
	outline: none;
}

#review_form .submit {
	background-color: #000;
	color: #fff;
	border: none;
	padding: 12px 35px;
	font-weight: 700;
	text-transform: uppercase;
	cursor: pointer;
	transition: background-color 0.3s;
	width: fit-content;
	margin-top: 10px;
}

#review_form .submit:hover {
	background-color: #222;
}



p.stars span a {
	color: #ddd !important;
	font-size: 18px;
}

p.stars span a:hover,
p.stars span a.active {
	color: #cfa15f !important;
}

.comment-form-cookies-consent {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 14px;
	color: #666;
}

.comment-form-cookies-consent input {
	margin-top: 4px;
}

.comment-notes,
.required-field-message {
	font-size: 13px;
	color: #888;
	margin-bottom: 10px;
}

@media (max-width: 991px) {
	.woocommerce-Reviews {
		flex-direction: column;
		gap: 40px;
	}

	#comments {
		max-width: 100%;
	}
}

/* Review List Styling */
ol.commentlist {
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

ol.commentlist li.review {
	border: 1px solid #eee;
	padding: 20px;
	margin-bottom: 20px;
	background: #fff;
	border-radius: 2px;
}

.review-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 4px;
}

.review-author-meta {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

.woocommerce-review__author {
	font-size: 17px;
	color: #222;
	font-weight: 700;
	line-height: 1.2;
}

.verified-badge {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	color: #888;
}

.verified-badge svg {
	color: #3b82f6;
	flex-shrink: 0;
}

.verified-badge em {
	font-style: normal;
	font-size: 13px;
	font-family: inherit;
}

.review-date {
	color: #888;
	font-size: 14px;
	font-weight: 400;
}

.star-rating-custom {
	margin: 5px 0 5px;
	display: flex;
	gap: 1px;
}

.star-rating-custom .star {
	font-size: 19px;
	color: #ddd;
}

.star-rating-custom .star.filled {
	color: #EABE12;
}

ol.commentlist li.review .description {
	color: #767676;
	line-height: 1.6;
	font-size: 15px;
}

@media (max-width: 600px) {
	.review-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 5px;
	}

	.review-date {
		order: 3;
		margin-top: 5px;
	}
}

@media (max-width: 768px) {
	.woocommerce-tabs ul.tabs {
		gap: 15px;
		overflow-x: auto;
		justify-content: flex-start !important;
		padding: 0 15px !important;
		white-space: nowrap;
		-webkit-overflow-scrolling: touch;
	}

	.woocommerce-tabs ul.tabs li a {
		font-size: 12px;
		padding: 15px 5px !important;
	}
}

/**
 * Password strength meter
 */
.woocommerce-password-strength {
	text-align: right;
}

.woocommerce-password-strength.strong {
	color: #0f834d;
}

.woocommerce-password-strength.short {
	color: #e2401c;
}

.woocommerce-password-strength.bad {
	color: #e2401c;
}

.woocommerce-password-strength.good {
	color: #3d9cd2;
}

/**
 * Forms
 */
.form-row.woocommerce-validated input.input-text {
	box-shadow: inset 2px 0 0 #0f834d;
}

.form-row.woocommerce-invalid input.input-text {
	box-shadow: inset 2px 0 0 #e2401c;
}

.required {
	color: #f00;
}

/**
 * Notices
 */

.woocommerce-error {
	background-color: #e2401c;
}

.demo_store {
	position: fixed;
	left: 0;
	bottom: 0;
	right: 0;
	margin: 0;
	padding: 1em;
	background-color: #3d9cd2;
	z-index: 9999;
}

@media screen and (min-width: 48em) {

	/**
	 * Header cart
	 */
	.site-header-cart .widget_shopping_cart {
		position: absolute;
		top: 100%;
		width: 100%;
		z-index: 999999;
		left: -999em;
		display: block;
		box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	}

	.site-header-cart:hover .widget_shopping_cart,
	.site-header-cart.focus .widget_shopping_cart {
		left: 0;
		display: block;
	}
}

/**
 * WooCommerce widgets
 */

/**
 * WooCommerce Price Filter
 */
.widget_price_filter .price_slider {
	margin-bottom: 1.5em;
}

.widget_price_filter .price_slider_amount {
	text-align: right;
	line-height: 2.4;
}

.widget_price_filter .price_slider_amount .button {
	float: left;
}

.widget_price_filter .ui-slider {
	position: relative;
	text-align: left;
}

.widget_price_filter .ui-slider .ui-slider-handle {
	position: absolute;
	z-index: 2;
	width: 1em;
	height: 1em;
	cursor: ew-resize;
	outline: none;
	background: #EABE12;
	box-sizing: border-box;
	margin-top: -0.25em;
	opacity: 1;
}

.widget_price_filter .ui-slider .ui-slider-handle:last-child {
	margin-left: -1em;
}

.widget_price_filter .ui-slider .ui-slider-handle:hover,
.widget_price_filter .ui-slider .ui-slider-handle.ui-state-active {
	box-shadow: 0 0 0 0.25em rgba(0, 0, 0, 0.1);
}

.widget_price_filter .ui-slider .ui-slider-range {
	position: absolute;
	z-index: 1;
	display: block;
	border: 0;
	background: #EABE12;
}

.widget_price_filter .price_slider_wrapper .ui-widget-content {
	background: rgba(0, 0, 0, 0.1);
}

.widget_price_filter .ui-slider-horizontal {
	height: 0.5em;
}

.widget_price_filter .ui-slider-horizontal .ui-slider-range {
	height: 100%;
}

/* Single Product Layout */
.site-main.container {
	padding-top: 40px;
	padding-bottom: 30px;
}

.lsktienda-single-product-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
	margin-bottom: 50px;
}

@media (min-width: 992px) {
	.lsktienda-single-product-grid {
		grid-template-columns: 1fr 1fr;
		gap: 35px;
		align-items: flex-start;
		/* Important for sticky to work */
	}

	.lsktienda-product-gallery {
		position: sticky;
		top: 80px;
		/* Adjust based on your header height */
	}
}

/* Gallery - Make it look cleaner */
/* Custom Gallery Layout */
.lsktienda-gallery-layout {
	display: flex;
	flex-wrap: nowrap;
	/* Prevent wrap on desktop */
	gap: 10px;
	position: relative;
	width: 100%;
}

.lsktienda-gallery-thumbnails {
	width: 80px;
	/* Desktop predefined width */
	flex-shrink: 0;
}

.thumbnails-inner {
	display: flex;
	flex-direction: column;
	gap: 10px;
	max-height: 500px;
	overflow-y: auto;
	scrollbar-width: none;
	/* Hide scrollbar */
}

.thumbnails-inner::-webkit-scrollbar {
	display: none;
}

.woocommerce-product-gallery {
	width: 100%;
}

/* Main Image Slider */
.lsktienda-main-image-wrapper {
	flex: 1;
	position: relative;
	overflow: hidden;
	border-radius: 0;
	min-width: 0;
}

.lsktienda-main-image-slider {
	width: 100%;
	overflow: hidden;
}

.lsktienda-main-image-slider .slider-track {
	display: flex;
	transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	width: 100%;
}

.lsktienda-main-image-slider .woocommerce-product-gallery__image {
	flex: 0 0 100%;
	width: 100%;
}

.lsktienda-main-image-slider .woocommerce-product-gallery__image img {
	width: 100% !important;
	height: auto !important;
	display: block;
	cursor: zoom-in;
	transition: transform 0.2s ease-out;
}

/* Nav Arrows Styles */
.slider-nav-prev,
.slider-nav-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	background: #fff;
	border-radius: 50%;
	z-index: 20;
	/* Stay above zoom effect */
	cursor: pointer;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 20px;
	opacity: 0;
	visibility: hidden;
}

.lsktienda-main-image-wrapper:hover .slider-nav-prev,
.lsktienda-main-image-wrapper:hover .slider-nav-next {
	opacity: 1;
	visibility: visible;
}

@media (max-width: 991px) {

	.slider-nav-prev,
	.slider-nav-next {
		opacity: 1;
		visibility: visible;
		width: 32px;
		height: 32px;
	}
}

.slider-nav-prev {
	left: 15px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='15 18 9 12 15 6'%3E%3C/polyline%3E%3C/svg%3E");
}

.slider-nav-next {
	right: 15px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'%3E%3C/polyline%3E%3C/svg%3E");
}

/* Thumbnails General Style */
.gallery-thumbnail {
	cursor: pointer;
	border: 1px solid transparent;
	border-radius: 0;
	overflow: hidden;
	transition: all 0.2s ease;
	opacity: 0.6;
	flex-shrink: 0;
}

.gallery-thumbnail:hover,
.gallery-thumbnail.active {
	opacity: 1;
	border-color: #000;
}

.gallery-thumbnail img {
	display: block;
	width: 100%;
	height: 100%;
	aspect-ratio: 1/1;
	object-fit: cover;
}

/* Mobile Layout Override */
@media (max-width: 991px) {
	.lsktienda-gallery-layout {
		flex-direction: column !important;
	}

	.lsktienda-gallery-thumbnails {
		width: 100% !important;
		order: 2 !important;
	}

	.thumbnails-inner {
		flex-direction: row !important;
		overflow-x: auto !important;
		overflow-y: hidden !important;
		white-space: nowrap !important;
		scroll-snap-type: x mandatory;
		padding: 5px 0 !important;
		gap: 15px !important;
		max-height: none !important;
	}

	.gallery-thumbnail {
		flex: 0 0 calc(33.333% - 10px) !important;
		width: calc(33.333% - 10px) !important;
		scroll-snap-align: start;
	}

	.lsktienda-main-image-wrapper {
		order: 1 !important;
		width: 100% !important;
	}
}

/* Zoom Trigger */
.woocommerce-product-gallery__trigger {
	position: absolute;
	bottom: 15px;
	left: 15px;
	z-index: 99;
	width: 40px;
	height: 40px;
	background: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='15 3 21 3 21 9'%3E%3C/polyline%3E%3Cpolyline points='9 21 3 21 3 15'%3E%3C/polyline%3E%3Cline x1='21' y1='3' x2='14' y2='10'%3E%3C/line%3E%3Cline x1='3' y1='21' x2='10' y2='14'%3E%3C/line%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 20px;
	font-size: 0;
}

.woocommerce-product-gallery__trigger::after {
	content: none !important;
}

/* Etiqueta de oferta: "Oferta -X%" rectangular */
.onsale.sale-offer-badge {
	top: 15px;
	right: 15px;
	position: absolute;
	z-index: 10;
	background-color: #ff0000;
	color: #fff;
	width: auto;
	height: auto;
	min-width: 0;
	border-radius: 2px !important;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 14px;
	text-transform: none;
	letter-spacing: 0.02em;
	line-height: 1.2;
	white-space: nowrap;
	box-shadow: 0 2px 8px rgba(255, 0, 0, 0.25);
	margin: 0 !important;
	padding: 6px 12px !important;
}

.product-card .onsale.sale-offer-badge {
	font-size: 14px;
	top: 10px;
	right: 10px;
	padding: 6px 10px !important;
}

/* Product Info Column */
.lsktienda-product-summary .product_title {
	font-size: 34px;
	font-weight: 700;
	margin-bottom: 8px;
	/* Reduced to pull rating closer */
	line-height: 1.2;
	color: #222;
	text-transform: none;
	/* Usually titles are normal case in images */
}

.woocommerce-product-rating {
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 10px;
	line-height: 1;
}

.woocommerce-product-rating .star-rating-custom {
	margin: 0;
	gap: 0px;
}

.woocommerce-product-rating .star-rating-custom .star {
	font-size: 20px;
	color: #ddd;
}

.woocommerce-product-rating .star-rating-custom .star.filled {
	color: #EABE12;
}

.woocommerce-product-rating .woocommerce-review-link .count {
	margin-right: 5px;
}

/* Ocultar botón nativo de expandir imagen (usamos galería propia) */
.single-product .woocommerce-product-gallery__trigger {
	display: none !important;
}

.woocommerce-product-rating .woocommerce-review-link {
	color: #767676;
	font-size: 14px;
	text-decoration: none;
	display: flex;
	align-items: center;
}

.lsktienda-product-summary .price {
	font-size: 1.35rem;
	color: #ff0000;
	font-weight: 600;
	margin-bottom: 5px;
	display: block;
}

.lsktienda-product-summary .price del {
	color: #aaa;
	font-weight: 400;
	font-size: 1rem;
	margin-right: 10px;
}

.lsktienda-product-summary .price ins {
	color: #ff0000;
	text-decoration: none;
}

.lsktienda-product-summary .price .woocommerce-Price-amount {
	color: inherit;
}

/* Installments */
.lsktienda-installments p {
	color: #666;
	font-size: 0.9rem;
}

.lsktienda-installments i {
	color: #333;
	margin-right: 5px;
}

/* Description */
.lsktienda-product-summary .woocommerce-product-details__short-description {
	font-size: 0.95rem;
	line-height: 1.6;
	color: #555;
	margin-bottom: 20px;
}

/* Review Stars Selection */
.comment-form-rating {
	margin-bottom: 20px;
}

.comment-form-rating label {
	display: block;
	margin-bottom: 10px;
	font-weight: 600;
	color: #333;
}

.comment-form-rating .stars {
	display: block;
	line-height: 1;
}

.comment-form-rating .stars span {
	display: flex;
	gap: 5px;
}

.comment-form-rating .stars span a {
	position: relative;
	height: 1em;
	width: 1em;
	text-indent: -999em;
	display: inline-block;
	text-decoration: none;
	color: #ddd;
}

.comment-form-rating .stars span a::before {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 1em;
	height: 1em;
	line-height: 1;
	font-family: "star";
	content: "\73";
	/* Empty star in WC font */
	text-indent: 0;
	font-size: 20px;
	transition: color 0.2s;
}

.comment-form-rating .stars span a:hover~a::before {
	content: "\73";
}

.comment-form-rating .stars span:hover a::before {
	content: "\53";
	/* Filled star */
	color: #EABE12;
}

.comment-form-rating .stars span a.active::before {
	content: "\53";
	color: #EABE12;
}

.comment-form-rating .stars span a.active~a::before {
	content: "\73";
	color: #ddd;
}

/* Hide the original select if JS is active */
.comment-form-rating select {
	display: none;
}

/* View Counter */
.lsktienda-view-counter {
	background-color: #fff;
	padding: 0;
	margin-bottom: 20px;
}

/* Add to Cart Form */
.woocommerce div.product form.cart,
.woocommerce-variation-add-to-cart {
	margin-bottom: 25px;
	display: flex;
	flex-wrap: nowrap;
	gap: 10px;
	align-items: center;
}

@media (max-width: 991px) {

	.woocommerce div.product form.cart,
	.woocommerce-variation-add-to-cart {
		flex-wrap: wrap;
	}
}

.woocommerce div.product form.cart .quantity.hidden {
	display: flex !important;
}

.lsktienda-quantity {
	display: flex !important;
	align-items: center;
	border: 2px solid #e0e0e0;
	border-radius: 5px;
	overflow: hidden;
	background: #fff;
	height: 45px;
	width: 90px;
	flex-shrink: 0;
	order: 1;
}

.lsktienda-quantity.qty-fixed button {
	opacity: 0.5;
	cursor: not-allowed;
}

.lsktienda-quantity button {
	background: none;
	border: none;
	width: 30px;
	height: 100%;
	padding: 0;
	font-size: 16px;
	color: #777;
	cursor: pointer;
	transition: all 0.2s;
	display: flex;
	align-items: center;
	justify-content: center;
}

.lsktienda-quantity button:hover {
	background-color: #f9f9f9;
	color: #000;
}

.lsktienda-quantity button.minus {
	border-right: 2px solid #e0e0e0;
}

.lsktienda-quantity button.plus {
	border-left: 2px solid #e0e0e0;
}

.lsktienda-quantity .qty {
	width: 30px !important;
	height: 100% !important;
	border: none !important;
	padding: 0 !important;
	text-align: center;
	font-size: 15px;
	font-weight: 600;
	color: #333;
	background: transparent;
	appearance: none;
	-moz-appearance: textfield;
}

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

/* Tamaños y layout compartidos (misma altura que Comprar ahora) */
.woocommerce div.product form.cart .button {
	border: none;
	padding: 0 15px;
	min-height: 45px;
	border-radius: 8px;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 13px;
	line-height: 1;
	flex: 1;
	min-width: 140px;
	transition: all 0.3s ease;
	white-space: nowrap;
	box-sizing: border-box;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

/* Añadir al carrito */
.woocommerce div.product form.cart .button:not(.buy-now-button) {
	background-color: #e1edfb;
	color: #2c82f9;
	order: 2;
	gap: 8px;
}

.woocommerce div.product form.cart .button:not(.buy-now-button):not(.added)::before {
	content: "";
	display: block;
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	align-self: center;
	background-color: currentColor;
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zM1 2v2h2l3.6 7.59-1.35 2.45c-.16.28-.25.61-.25.96 0 1.1.9 2 2 2h12v-2H7.42c-.14 0-.25-.11-.25-.25l.03-.12.9-1.63h7.45c.75 0 1.41-.41 1.75-1.03l3.58-6.49c.08-.14.12-.31.12-.48 0-.55-.45-1-1-1H5.21l-.94-2H1zm16 16c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2z'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zM1 2v2h2l3.6 7.59-1.35 2.45c-.16.28-.25.61-.25.96 0 1.1.9 2 2 2h12v-2H7.42c-.14 0-.25-.11-.25-.25l.03-.12.9-1.63h7.45c.75 0 1.41-.41 1.75-1.03l3.58-6.49c.08-.14.12-.31.12-.48 0-.55-.45-1-1-1H5.21l-.94-2H1zm16 16c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2z'/%3E%3C/svg%3E");
	-webkit-mask-size: contain;
	mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
}

/* Comprar ahora */
.woocommerce div.product form.cart .buy-now-button {
	background-color: #3483fa;
	color: #fff;
	order: 3;
}

@media (max-width: 768px) {
	.woocommerce div.product form.cart .buy-now-button {
		width: 100%;
		flex-basis: 100%;
	}
}

.woocommerce div.product form.cart .button:not(.buy-now-button):hover {
	opacity: 1;
	background-color: #d4e4f8;
	color: #2c82f9;
}

.woocommerce div.product form.cart .buy-now-button:hover {
	background-color: #256ee0;
	color: #fff;
}

.woocommerce div.product form.cart .button:not(.buy-now-button).loading {
	opacity: 0.85;
	cursor: not-allowed;
	position: relative;
}

.woocommerce div.product form.cart .button:not(.buy-now-button).loading::after {
	content: "";
	position: absolute;
	width: 16px;
	height: 16px;
	top: 50%;
	left: 50%;
	margin-top: -8px;
	margin-left: -8px;
	border: 2px solid rgba(44, 130, 249, 0.25);
	border-top-color: #2c82f9;
	border-radius: 50%;
	animation: spin 0.6s linear infinite;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

.woocommerce div.product form.cart .button:not(.buy-now-button).added::before {
	content: "\2713";
	margin-right: 0;
	width: auto;
	height: auto;
	background: none;
	-webkit-mask-image: none;
	mask-image: none;
	color: inherit;
	font-size: 1em;
	line-height: 1;
}

/* Hide "View Cart" button that appears after AJAX add to cart */
a.added_to_cart {
	display: none !important;
}

/* Wishlist/Compare */
.lsktienda-actions .button-outline {
	background: transparent;
	border: 1px solid #ddd;
	color: #555;
	padding: 8px 15px;
	border-radius: 4px;
	transition: all 0.3s ease;
}

.lsktienda-actions .button-outline:hover {
	border-color: #333;
	color: #333;
}

/* Urgency Box */
.lsktienda-urgency-box {
	position: relative;
	font-size: 0.9rem;
	line-height: 1.4;
}

/* Texto con animación en urgency box */
.lsktienda-urgency-message-wrap {
	position: relative;
	display: block;
}

.lsktienda-urgency-message {
	display: block;
	transition: opacity 0.6s ease, transform 0.6s ease, max-height 0.6s ease;
	opacity: 1;
	transform: translateY(0);
	max-height: 40px;
	overflow: hidden;
}

.lsktienda-urgency-message.is-hidden {
	opacity: 0;
	transform: translateY(6px);
	max-height: 0;
}

.lsktienda-urgency-box:before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 4px;
	background: rgb(200, 160, 98);
	opacity: .1;
	pointer-events: none;
}

/* Icono de fuego con pulse */
.lsktienda-urgency-fire-icon {
	animation: lsktienda-fire-pulse 1.8s ease-in-out infinite;
	transform-origin: center;
}

@keyframes lsktienda-fire-pulse {
	0% {
		transform: scale(1);
	}
	30% {
		transform: scale(1.12);
	}
	60% {
		transform: scale(0.98);
	}
	100% {
		transform: scale(1);
	}
}

/* Single Product Meta & Delivery Styles (Matching Image) */
.lsktienda-delivery-info {
	border-top: 1px solid #eee;
	padding-top: 10px;
	margin-bottom: 12px;
	color: #333;
}

.lsktienda-delivery-info strong {
	font-weight: 700;
	font-size: 14px;
}

.lsktienda-delivery-info span {
	color: #777;
	font-size: 14px;

}

.nasa-flip-vertical {
	-webkit-transform: rotate(180deg) scaleX(-1);
	-moz-transform: rotate(180deg) scaleX(-1);
	-o-transform: rotate(180deg) scaleX(-1);
	-ms-transform: rotate(180deg) scaleX(-1);
	transform: rotate(180deg) scaleX(-1);

	position: relative;
}

.lsktienda-delivery-info svg {
	color: #777;
}

.product_meta {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 20px;
}

.product_meta>span {
	display: block;
	font-weight: 700;
	font-size: 14px;
	color: #333;
}

.product_meta .sku,
.product_meta a {
	font-weight: 400;
	color: #777;
	text-decoration: none;
	margin-left: 2px;
}

.product_meta a:hover {
	color: #000;
}

/* Single Product Related & Upsells Sliders */
.related.products.product-slider-section,
.upsells.products.product-slider-section {
	padding: 40px 0;
	border-top: 1px solid #eee;
}

.related.products.product-slider-section .section-header,
.upsells.products.product-slider-section .section-header {
	margin-bottom: 15px;
	border-bottom: none;
	padding-bottom: 0;
}

.related.products.product-slider-section .section-title,
.upsells.products.product-slider-section .section-title {
	font-size: 1.1rem;
}

/* 4 Column Layout for Desktop */
@media (min-width: 992px) {

	.related.products.product-slider-section .product-card,
	.upsells.products.product-slider-section .product-card {
		flex: 0 0 calc(25% - 15px);
		/* 4 items per view */
		min-width: 200px;
		/* Reduced min-width to fit 4 columns better */
	}
}

/* Mobile & Tablet - Match Home exactly */
@media (max-width: 991px) {

	.related.products.product-slider-section .product-card,
	.upsells.products.product-slider-section .product-card {
		flex: 0 0 calc(50% - 10px);
	}
}

@media (max-width: 576px) {
	.site-main.container {
		padding-top: 20px;
	}

	.related.products.product-slider-section .product-card,
	.upsells.products.product-slider-section .product-card {
		flex: 0 0 85%;
	}
}

/* Sharing section */
.woocommerce-product-sharing {
	margin-top: 15px;
	display: flex;
	align-items: center;
	gap: 15px;
}

.woocommerce-product-sharing span {
	font-weight: 700;
	font-size: 1rem;
	color: #333;
}

.woocommerce-product-sharing ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	gap: 12px;
}

.woocommerce-product-sharing ul li a {
	color: #555;
	font-size: 1.1rem;
	transition: color 0.2s;
}

.woocommerce-product-sharing ul li a:hover {
	color: #cfa15f;
}

/* Tabs */
.woocommerce div.product .woocommerce-tabs ul.tabs {
	padding: 0;
	margin: 0 0 20px;
	border-bottom: 1px solid #ddd;
	text-align: center;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
	background: transparent;
	border: none;
	margin: 0 10px;
	display: inline-block;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
	padding: 10px 0;
	font-weight: 600;
	color: #777;
	text-transform: uppercase;
	font-size: 14px;
	display: block;
	border-bottom: 2px solid transparent;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
	color: #333;
	outline: none;
}

.woocommerce div.product .woocommerce-tabs .panel {
	border: none;
	box-shadow: none;
	padding: 20px 0;
}

.lsktienda-tab-content {
	line-height: 1.6;
	color: #555;
	font-size: 15px;
}

.lsktienda-faq-accordion {
	border-top: 1px solid #eee;
}

.lsktienda-faq-accordion .faq-item {
	border-bottom: 1px solid #eee;
}

.lsktienda-faq-accordion .faq-question {
	padding: 18px 0;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 700;
	color: #444;
	font-size: 16px;
	transition: color 0.3s;
}

.lsktienda-faq-accordion .faq-question:hover {
	color: #000;
}

.lsktienda-faq-accordion .faq-question svg {
	color: #ccc;
	transition: transform 0.3s ease;
}

.lsktienda-faq-accordion .faq-item.active .faq-question svg {
	transform: rotate(180deg);
}

.lsktienda-faq-accordion .faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease-out;
}

.lsktienda-faq-accordion .faq-item.active .faq-answer {
	max-height: 500px;
	/* Sufficient for typical answers */
	transition: max-height 0.5s ease-in;
}

.lsktienda-faq-accordion .faq-answer-inner {
	padding: 0 0 20px 0;
	color: #666;
	line-height: 1.6;
	font-size: 14px;
}

/* Breadcrumbs */
.woocommerce-breadcrumb {
	font-size: 0.8rem;
	color: #888;
	margin-bottom: 15px;
}

.woocommerce-breadcrumb a {
	color: #888;
	text-decoration: none;
}

.woocommerce-breadcrumb a:hover {
	color: #000;
}

/**
 * Shop Pagination
 */
.woocommerce-pagination {
	margin-top: 50px;
	padding-top: 30px;
	border-top: 1px solid #efefef;
	display: flex;
	justify-content: center;
	clear: both;
}

.woocommerce-pagination ul.page-numbers {
	display: flex;
	list-style: none;
	padding: 0;
	margin: 0;
	gap: 8px;
}

.woocommerce-pagination ul.page-numbers li {
	margin: 0;
	padding: 0;
}

.woocommerce-pagination ul.page-numbers li span.current,
.woocommerce-pagination ul.page-numbers li a {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	border: 1px solid #efefef;
	color: #444;
	transition: all 0.3s ease;
	border-radius: 4px;
	background: #fff;
}

.woocommerce-pagination ul.page-numbers li a:hover {
	background: #000;
	color: #fff;
	border-color: #000;
}

.woocommerce-pagination ul.page-numbers li span.current {
	background: #000;
	color: #fff;
	border-color: #000;
}

.woocommerce-pagination ul.page-numbers li .next,
.woocommerce-pagination ul.page-numbers li .prev {
	font-size: 18px;
	font-weight: 400;
}

/**
 * Cart Page Styles
 */
.cart-page-wrapper {
	background-color: #fff;
}

.woocommerce-cart .entry-header,
.woocommerce-checkout .entry-header,
.woocommerce-cart #secondary,
.woocommerce-checkout #secondary {
	display: none !important;
}

.woocommerce-cart #primary,
.woocommerce-checkout #primary {
	width: 100% !important;
	max-width: 100% !important;
	flex: 0 0 100% !important;
}

.cart-header-progress {
	background-color: #fafafa;
	padding: 2px;
}

.shipping-progress-container {
	padding-top: 15px;
	border: 2px dashed #ddd;
	background: #fff;
}

.cart-modal-body .shipping-progress-container {
	border: none;
}

.shipping-progress-container .shipping-text {
	font-size: 14px;
	color: #000;
	margin-top: 0px;
}

.shipping-progress-container .progress-bar-bg {
	height: 6px;
	background: #f0f6ff;
	width: 100%;
	position: relative;
	border-radius: 3px;
	overflow: hidden;
}

.shipping-progress-container .progress-bar-fill {
	height: 100%;
	background: repeating-linear-gradient(-45deg,
			#7eb3fc,
			#7eb3fc 10px,
			#a8d4ff 10px,
			#a8d4ff 20px);
	transition: width 0.5s ease;
}

/* Ocultar barra de envío gratis cuando el admin la desactiva */
body.lsktienda-free-shipping-progress-disabled .shipping-progress-container,
body.lsktienda-free-shipping-progress-disabled .single-product-shipping-bar {
	display: none !important;
}

/* Cart Table Styling */
.shop_table.cart {
	border-collapse: collapse;
	width: 100%;
	border: none !important;
}

.shop_table.cart thead th {
	background: #fff;
	padding: 20px 10px;
	font-size: 16px;
	font-weight: 800;
	text-transform: uppercase;
	color: #000;
	border-bottom: 1px solid #efefef !important;
	text-align: center;
}

.shop_table.cart thead th:first-child,
.shop_table.cart thead th.product-name {
	text-align: left;
}

.shop_table.cart tbody td {
	padding: 20px 10px;
	border-bottom: 2px solid #efefef !important;
	vertical-align: middle;
	text-align: center;
}

.shop_table.cart tbody td.product-remove {
	width: 30px;
	text-align: left;
}

.shop_table.cart tbody td.product-thumbnail {
	width: 100px;
}

.shop_table.cart tbody td.product-thumbnail img {
	width: 80px;
	height: auto;
	object-fit: cover;
}

.shop_table.cart tbody td.product-name {
	text-align: left;
	font-weight: 600;
	font-size: 14px;
}

.shop_table.cart tbody td.product-name a {
	color: #000;
	text-decoration: none;
	font-size: 16px;
}

.shop_table.cart tbody td.product-price,
.shop_table.cart tbody td.product-subtotal {
	font-weight: 700;
	font-size: 14px;
	color: #000;
}

.shop_table.cart tbody td del,
.product-price-qty .quantity del {
	opacity: 0.5;
	text-decoration: line-through;
	margin-right: 5px;
	font-weight: 400;
}

.shop_table.cart tbody td ins,
.product-price-qty .quantity ins {
	text-decoration: none;
	font-weight: 700;
	color: #000;
}

/* Quantity Input in Cart */
.shop_table.cart .quantity.lsktienda-quantity {
	display: inline-flex;
	border: 1px solid #efefef;
	padding: 5px;
	align-items: center;
	background: #fff;
}

.shop_table.cart .quantity.lsktienda-quantity button {
	background: none;
	border: none;
	width: 25px;
	height: 25px;
	cursor: pointer;
	font-size: 16px;
	color: #999;
}

.shop_table.cart .quantity.lsktienda-quantity input {
	width: 40px;
	text-align: center;
	border: none;
	font-weight: 700;
	color: #000;
	-moz-appearance: textfield;
	appearance: textfield;
}

.shop_table.cart .quantity.lsktienda-quantity input::-webkit-outer-spin-button,
.shop_table.cart .quantity.lsktienda-quantity input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Cart Actions */
.shop_table.cart td.actions {
	padding: 30px 0 !important;
}

.cart-actions-container .coupon input#coupon_code {
	border: 1px solid #efefef;
	padding: 10px 20px;
	min-width: 200px;
}

/* Azul oscuro (como Comprar ahora / Realizar pedido) */
.apply-coupon-btn {
	background-color: #3483fa !important;
	color: #fff !important;
	font-weight: 800 !important;
	font-size: 13px !important;
	padding: 12px 30px !important;
	border: none !important;
	border-radius: 4px !important;
	text-transform: uppercase !important;
	transition: background-color 0.3s ease, color 0.3s ease !important;
}

.apply-coupon-btn:hover {
	background-color: #256ee0 !important;
	color: #fff !important;
}

/* Azul claro (como Añadir al carrito) */
.update-cart-btn {
	background-color: #e1edfb !important;
	color: #2c82f9 !important;
	font-weight: 800 !important;
	font-size: 13px !important;
	padding: 12px 30px !important;
	border: none !important;
	border-radius: 4px !important;
	text-transform: uppercase !important;
	transition: background-color 0.3s ease, color 0.3s ease !important;
}

.update-cart-btn:hover {
	background-color: #d4e4f8 !important;
	color: #2c82f9 !important;
}

/* Cart Totals Sidebar */
.cart-totals-sidebar {
	border: 4px solid #efefef;
	padding: 40px;
	background: #fff;
}

.cart-totals-title {
	font-size: 18px;
	font-weight: 800;
	text-transform: uppercase;
	margin-bottom: 30px;
	color: #000;
}

.cart_totals h2 {
	display: none;
}

.cart-collaterals .shop_table {
	width: 100%;
	margin-bottom: 30px;
	border: none !important;
}

.cart-collaterals .shop_table tr th,
.cart-collaterals .shop_table tr td {
	padding: 15px 0;
	border-bottom: 1px solid #efefef !important;
	text-align: left !important;
	font-size: 14px;
}

.cart-collaterals .shop_table tr th {
	font-weight: 700;
	color: #000;
}

.cart-collaterals .shop_table tr td {
	text-align: right !important;
	color: #666;
}

.cart-collaterals .shop_table tr.order-total th,
.cart-collaterals .shop_table tr.order-total td {
	border-bottom: none !important;
	font-size: 24px;
	font-weight: 900;
	color: #000;
	padding-top: 30px;
}

.cart-collaterals .wc-proceed-to-checkout .checkout-button {
	display: block;
	width: 100%;
	background-color: #3483fa !important;
	color: #fff !important;
	font-weight: 800 !important;
	padding: 18px !important;
	font-size: 14px !important;
	border-radius: 4px !important;
	text-transform: uppercase !important;
	text-align: center;
	border: none !important;
	transition: background-color 0.3s ease, color 0.3s ease !important;
}

.cart-collaterals .wc-proceed-to-checkout .checkout-button:hover {
	background-color: #256ee0 !important;
	color: #fff !important;
}

.cart-collaterals .shipping-calculator-button {
	color: #cfa15f;
	text-decoration: none;
	font-weight: 700;
}

@media (max-width: 991px) {
	.cart-totals-sidebar {
		margin-top: 40px;
	}
}

/**
 * Empty Cart Styles
 */
.cart-empty-wrapper {
	background-color: #fff;
	min-height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.empty-cart-content {
	max-width: 600px;
	margin: 0 auto;
}

.empty-cart-icon-main {
	color: #efefef;
	display: flex;
	justify-content: center;
	margin-bottom: 40px;
}

.empty-cart-icon-main svg {
	stroke-width: 0.8;
}

.empty-cart-title {
	font-size: 28px;
	font-weight: 900;
	text-transform: uppercase;
	color: #000;
	letter-spacing: -1px;
}

.empty-cart-text {
	font-size: 16px;
	color: #666;
	line-height: 1.6;
}

.primary-btn-gold {
	display: inline-block;
	background-color: #cfa15f !important;
	color: #fff !important;
	font-weight: 800 !important;
	font-size: 14px !important;
	padding: 18px 45px !important;
	border: none !important;
	border-radius: 4px !important;
	text-transform: uppercase !important;
	text-decoration: none !important;
	transition: all 0.3s ease;
}

.primary-btn-gold:hover {
	background-color: #000 !important;
	transform: translateY(-2px);
}

/* --- Checkout Custom Styles --- */
.woocommerce-checkout .custom-checkout-layout {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 40px;
	margin: 0 auto 50px;
	padding: 0 20px 50px;
	max-width: 1240px;
}

/* Fix for checkout alerts breaking the flex grid */
.woocommerce-checkout .custom-checkout-layout>.woocommerce-NoticeGroup,
.woocommerce-checkout .custom-checkout-layout>.woocommerce-NoticeGroup-checkout,
.woocommerce-checkout .custom-checkout-layout>.woocommerce-error,
.woocommerce-checkout .custom-checkout-layout>.woocommerce-message,
.woocommerce-checkout .custom-checkout-layout>.woocommerce-info {
	flex: 0 0 100%;
	width: 100%;
}

/* Checkout Progress Bar in Banner */
.checkout-progress-steps {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 15px;
	position: relative;
	z-index: 5;
	font-family: 'Trebuchet MS', sans-serif;
	font-weight: 800;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.checkout-progress-steps .step {
	font-size: 1.5rem;
	color: #fff;
}

.checkout-progress-steps .step.op-5 {
	opacity: 0.5;
}

.checkout-progress-steps .step.active {
	border-bottom: 2px solid #cda262;
	padding-bottom: 5px;
}

.checkout-progress-steps .sep {
	color: #fff;
	opacity: 0.3;
	font-size: 1.2rem;
}

@media (max-width: 768px) {
	.checkout-progress-steps .step {
		font-size: 1rem;
	}
}

/* Cupón arriba: que abarque solo la mitad (alineado con la columna izquierda) */
.woocommerce-checkout .container.my-4 .woocommerce-form-coupon-toggle,
.woocommerce-checkout .container.my-4 form.checkout_coupon {
	width: calc(50% - 20px);
	max-width: calc(50% - 20px);
	box-sizing: border-box;
}

@media screen and (max-width: 899px) {

	.woocommerce-checkout .container.my-4 .woocommerce-form-coupon-toggle,
	.woocommerce-checkout .container.my-4 form.checkout_coupon {
		width: 100%;
		max-width: 100%;
	}
}

.checkout-left-column {
	flex: 0 0 calc(50% - 20px);
	min-width: 0;
}

.checkout-right-column {
	flex: 0 0 calc(50% - 20px);
	min-width: 0;
	max-width: none;
}

/* Form Styles */
.checkout-left-column h3 {
	font-size: 18px;
	font-weight: 800;
	text-transform: uppercase;
	margin-bottom: 25px;
	color: #222;
	border-bottom: 1px solid #eaeaea;
	padding-bottom: 15px;
}


.form-row.form-row-first {
	margin: 0px;
}

@media screen and (min-width: 900px) {

	.woocommerce-billing-fields .form-row-first,
	.woocommerce-billing-fields .form-row-last {
		width: 48% !important;
		float: left !important;
		clear: none !important;
		margin-top: 0px;
	}

	.woocommerce-billing-fields .form-row-last {
		float: right !important;
	}

	.woocommerce-billing-fields .form-row-wide {
		clear: both !important;
		width: 100% !important;
	}
}

.woocommerce form .form-row label {
	font-size: 13px;
	font-weight: 600;
	color: #555;
	margin-bottom: 8px;
	display: block;
}

.woocommerce form .form-row .required {
	color: #e2401c;
	font-weight: bold;
	text-decoration: none;
}

/* The image form fields look very clean with border and padding */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.select2-container .select2-selection--single {
	border: 1px solid #e5e5e5;
	border-radius: 4px;
	padding: 12px 15px;
	font-size: 14px;
	width: 100%;
	background: #fff;
	box-shadow: none;
	height: auto;
}

.woocommerce form .form-row textarea {
	height: 120px;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.select2-container--default.select2-container--open .select2-selection--single {
	border-color: #cfa15f;
	outline: none;
}

/* Responsive */
@media screen and (max-width: 900px) {
	.woocommerce-checkout .custom-checkout-layout {
		flex-direction: column;
	}

	.checkout-right-column {
		width: 100%;
	}
}

/* Order Review (Right Column) Styles - Based on image ticket styling */
.checkout-order-review-container {
	background-color: #f9f9f9;
	padding: 0 30px 30px;
	/* Add dashed effect on sides */
	border-left: 2px dashed #f0f0f0;
	border-right: 2px dashed #f0f0f0;
	position: relative;
}

.checkout-order-review-container::before {
	content: '';
	position: absolute;
	top: -12px;
	left: -2px;
	right: -2px;
	height: 24px;
	background-image: radial-gradient(circle at 12px 0, transparent 12px, #f9f9f9 13px);
	background-size: 24px 24px;
	background-repeat: repeat-x;
}

.checkout-order-review-container::after {
	content: '';
	position: absolute;
	bottom: -12px;
	left: -2px;
	right: -2px;
	height: 24px;
	background-image: radial-gradient(circle at 12px 24px, transparent 12px, #f9f9f9 13px);
	background-size: 24px 24px;
	background-repeat: repeat-x;
}

.checkout-order-review-container h3 {
	font-size: 21px;
	font-weight: 800;
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 25px;
	color: #222;
	padding-top: 20px;
}

/* Table Order */
.woocommerce table.shop_table.woocommerce-checkout-review-order-table {
	border: none;
	border-collapse: collapse;
	width: 100%;
	margin-bottom: 0;
	background: #fff;
	padding: 20px;
	display: block;
}

.woocommerce table.shop_table.woocommerce-checkout-review-order-table thead,
.woocommerce table.shop_table.woocommerce-checkout-review-order-table tbody,
.woocommerce table.shop_table.woocommerce-checkout-review-order-table tfoot {
	display: block;
	width: 100%;
}

.woocommerce table.shop_table.woocommerce-checkout-review-order-table tr {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	border-bottom: 1px solid #eaeaea;
}

.woocommerce-checkout-review-order-table .order-total .woocommerce-Price-amount {
	font-size: 20px;
}

.woocommerce table.shop_table.woocommerce-checkout-review-order-table th {
	font-size: 14px;
	font-weight: 800;
	text-transform: uppercase;
	color: #222;
	padding: 15px 0;
	background: transparent;
	border: none;
	text-align: left;
}

.woocommerce table.shop_table.woocommerce-checkout-review-order-table th.product-total {
	text-align: right;
}

.woocommerce table.shop_table.woocommerce-checkout-review-order-table td {
	border: none;
	padding: 15px 0;
	font-size: 15px;
	color: #222;
	background: transparent;
	text-align: left;
}

.woocommerce table.shop_table.woocommerce-checkout-review-order-table td.product-total,
.woocommerce table.shop_table.woocommerce-checkout-review-order-table td[data-title="Subtotal"],
.woocommerce table.shop_table.woocommerce-checkout-review-order-table td[data-title="Total"] {
	text-align: right;
	font-weight: 700;
	color: #222;
}

.wc-block-product-filter-price-slider .text input[type=text] {
	border: 1px solid #cfa15f;
}

/* Payment Methods */
.woocommerce-checkout #payment {
	background: #fcfcfc !important;
	border-radius: 4px;
	margin-top: 15px;
	padding: 20px;
}

.woocommerce-checkout #payment ul.payment_methods {
	padding: 0;
	border-bottom: none;
}

.woocommerce-checkout #payment ul.payment_methods li {
	list-style: none;
	margin-bottom: 10px;
}

.woocommerce-checkout #payment button#place_order {
	background-color: #3483fa;
	color: #fff;
	border: none;
	border-radius: 4px;
	padding: 15px 20px;
	font-size: 14px;
	font-weight: 800;
	text-transform: uppercase;
	width: 100%;
	transition: all 0.3s ease;
}

.woocommerce-checkout #payment button#place_order:hover {
	background-color: #256ee0;
	color: #fff;
}

/* Checkboxes */
.woocommerce form .form-row .input-checkbox {
	display: inline-block;
	width: auto;
	margin-right: 10px;
	position: relative;
	top: 2px;
}

#ship-to-different-address label {
	font-size: 14px;
	font-weight: 600;
	display: inline-block;
	cursor: pointer;
}



/* WooCommerce Notices (Coupon, Login, etc) */
.woocommerce-info,
.woocommerce-error,
.woocommerce-message {
	max-width: 1300px;
	margin: 20px auto !important;
	padding: 20px 25px !important;
	border: 1px solid #e1e1e1;
	border-radius: 4px;
	background-color: #fcfcfc;
	color: #444;
	font-size: 14px;
	list-style: none;
	position: relative;
}

.woocommerce-info {
	border-left: 5px solid #cda262;
}

.woocommerce-info::before {
	color: #cda262;
	left: 10px;
}

.woocommerce-info a {
	color: #cda262;
	font-weight: 700;
	text-decoration: underline;
}

.woocommerce-info a:hover {
	color: #b88d50;
}

/* --- My Account Custom Styles --- */
.woocommerce-account #primary {
	width: 100% !important;
	max-width: 100% !important;
	float: none !important;
}

.myaccount-layout {
	display: flex;
	gap: 40px;
	align-items: flex-start;
}

.myaccount-sidebar {
	width: 300px;
	flex-shrink: 0;
	background: #fff;
	border: 1px solid #eee;
	border-radius: 8px;
	overflow: hidden;
	position: sticky;
	top: 20px;
}

.user-account-header {
	padding: 30px 20px;
	text-align: center;
	background: #fbfbfb;
	border-bottom: 1px solid #eee;
}

.user-account-header img {
	border-radius: 50%;
	margin-bottom: 15px;
	border: 3px solid #fff;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.user-info .user-name {
	display: block;
	font-weight: 800;
	font-size: 16px;
	color: #222;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.user-info .user-email {
	display: block;
	font-size: 13px;
	color: #888;
	margin-top: 4px;
}

.woocommerce-MyAccount-navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.woocommerce-MyAccount-navigation li {
	border-bottom: 1px solid #f5f5f5;
}

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

.woocommerce-MyAccount-navigation li a {
	display: flex;
	align-items: center;
	padding: 15px 25px;
	color: #555;
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	transition: all 0.3s ease;
	gap: 15px;
}

.woocommerce-MyAccount-navigation li a .nav-icon {
	width: 20px;
	text-align: center;
	color: #aaa;
	transition: all 0.3s ease;
}

.woocommerce-MyAccount-navigation li:hover a,
.woocommerce-MyAccount-navigation li.is-active a {
	background-color: #fcf9f4;
	color: #cda262;
}

.woocommerce-MyAccount-navigation li:hover a .nav-icon,
.woocommerce-MyAccount-navigation li.is-active a .nav-icon {
	color: #cda262;
}

.myaccount-content {
	flex: 1;
	min-width: 0;
}

.myaccount-inner-content {
	background: #fff;
	padding: 35px;
	border: 1px solid #eee;
	border-radius: 8px;
}

/* Dashboard Styles */
.myaccount-welcome-box {
	margin-bottom: 40px;
}

.myaccount-welcome-box h2 {
	font-size: 28px;
	font-weight: 800;
	margin-bottom: 15px;
	color: #222;
}

.myaccount-welcome-box p {
	font-size: 15px;
	line-height: 1.6;
	color: #666;
}

.myaccount-welcome-box strong {
	color: #cda262;
}

.myaccount-stats-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 30px;
}

.stat-card {
	background: #fcfcfc;
	border: 1px solid #eee;
	border-radius: 8px;
	transition: all 0.3s ease;
}

.stat-card a {
	display: flex;
	align-items: center;
	padding: 25px;
	text-decoration: none;
	gap: 20px;
}

.stat-icon {
	width: 50px;
	height: 50px;
	background: #fff;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	color: #cda262;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.stat-info .stat-label {
	display: block;
	font-size: 12px;
	text-transform: uppercase;
	font-weight: 700;
	color: #999;
	letter-spacing: 0.5px;
}

.stat-info .stat-value {
	display: block;
	font-size: 18px;
	font-weight: 800;
	color: #222;
}

.stat-card:hover {
	transform: translateY(-5px);
	border-color: #cda262;
	box-shadow: 0 10px 25px rgba(205, 162, 98, 0.1);
}

/* My Account Form Styles */
.myaccount-content h3 {
	font-size: 20px;
	font-weight: 800;
	margin-bottom: 25px;
	padding-bottom: 15px;
	border-bottom: 1px solid #eee;
	text-transform: uppercase;
}

.woocommerce-EditAccountForm fieldset {
	border: 1px solid #eee;
	padding: 25px;
	border-radius: 8px;
	margin-top: 30px;
}

.woocommerce-EditAccountForm legend {
	font-weight: 700;
	padding: 0 15px;
	font-size: 14px;
	text-transform: uppercase;
	color: #cda262;
}

/* Addresses */
.woocommerce-Address-title {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.woocommerce-Address-title h3 {
	margin: 0;
	border: none;
	padding: 0;
}

.woocommerce-Address .edit {
	display: inline-block;
	padding: 8px 18px;
	background: #cda262;
	color: #fff;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	text-decoration: none;
	transition: all 0.3s ease;
}

.woocommerce-Address .edit:hover {
	background: #000;
}

address {
	font-style: normal;
	color: #666;
	line-height: 1.6;
	background: #fcfcfc;
	padding: 20px;
	border-radius: 8px;
	border: 1px solid #eee;
}

/* Orders Table */
.my_account_orders.shop_table {
	border: none;
}

.my_account_orders thead th {
	background: #f9f9f9;
	font-size: 12px;
	text-transform: uppercase;
	font-weight: 800;
	padding: 15px;
	border-bottom: 2px solid #eee;
}

.my_account_orders td {
	padding: 15px;
	vertical-align: middle;
	border-bottom: 1px solid #eee;
}

.woocommerce-button.view {
	padding: 8px 15px;
	background: #f5f5f5;
	color: #222;
	border-radius: 4px;
	font-size: 11px;
	margin-right: 5px;
}

.woocommerce-button.view:hover {
	background: #cda262;
	color: #fff;
}

/* Responsive My Account */
@media (max-width: 991px) {
	.myaccount-layout {
		flex-direction: column;
	}

	.myaccount-sidebar {
		width: 100%;
		position: static;
		margin-bottom: 30px;
	}

	.woocommerce-MyAccount-navigation ul {
		display: flex;
		flex-wrap: wrap;
	}

	.woocommerce-MyAccount-navigation li {
		flex: 1 0 50%;
		border-right: 1px solid #f5f5f5;
	}

	.myaccount-stats-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 575px) {
	.woocommerce-MyAccount-navigation li {
		flex: 1 0 100%;
		border-right: none;
	}

	.myaccount-inner-content {
		padding: 20px;
	}
}