/*
Theme Name: hugfemme

WooCommerce styles override
*/
.page-wrapper {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
}

@media (max-width: 768px) {

	.page-wrapper {
		padding: 0 1rem;
	}
}

.page-wrapper--with-spacing {
	margin-top: 3rem;
}

@media (max-width: 768px) {

	.page-wrapper--with-spacing {
		margin-top: 2rem;
	}
}

.section-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
}

@media (max-width: 768px) {

	.section-container {
		padding: 0 1rem;
	}
}

/**
 * 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;
	overflow: hidden;
}

ul.products::after {
	content: "";
	display: table;
	clear: both;
}

ul.products li.product {
	list-style: none;
	position: relative;
	margin-bottom: 1.5em;
	background: transparent;
	border: none;
	transition: opacity 0.2s ease;
	overflow: visible;
}

ul.products li.product:hover {
	opacity: 0.85;
}

ul.products li.product .product-image-wrapper {
	position: relative;
	overflow: hidden;
	margin-bottom: 0.75rem;
}

ul.products li.product .product-image-wrapper .product-wishlist {
	position: absolute;
	top: 0.5rem;
	left: 0.5rem;
	background: rgba(255, 255, 255, 0.95);
	border: none;
	border-radius: 50%;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.2s ease;
	z-index: 3;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

ul.products li.product .product-image-wrapper .product-wishlist:hover {
	background: #f99;
	transform: scale(1.1);
	box-shadow: 0 4px 8px rgba(255, 153, 153, 0.3);
}

ul.products li.product .product-image-wrapper .product-wishlist:hover i {
	color: #fff;
}

ul.products li.product .product-image-wrapper .product-wishlist i {
	font-size: 18px;
	color: #f99;
	transition: all 0.2s ease;
}

ul.products li.product .product-image-wrapper .product-wishlist.active {
	background: #f99;
}

ul.products li.product .product-image-wrapper .product-wishlist.active i {
	color: #fff;
}

ul.products li.product .product-image-wrapper .product-wishlist.active i::before {
	content: "\f004";
	font-weight: 900;
}

ul.products li.product .woocommerce-LoopProduct-link {
	display: flex;
	flex-direction: column;
	height: 100%;
	text-decoration: none;
	color: inherit;
	padding: 0;
	cursor: pointer;
}

ul.products li.product img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 1/1;
	object-fit: cover;
	margin-bottom: 0.75rem;
	transition: opacity 0.2s ease;
}

ul.products li.product .woocommerce-loop-product__title {
	font-size: 0.9rem;
	font-weight: 500;
	color: #424242;
	margin-bottom: 0.4rem;
	line-height: 1.3;
	flex-grow: 1;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

ul.products li.product .star-rating {
	display: flex;
	align-items: center;
	margin-bottom: 0.4rem;
	font-size: 0.8rem;
}

ul.products li.product .star-rating .stars {
	color: #ffa500;
	margin-right: 0.4rem;
}

ul.products li.product .star-rating .count {
	color: #757575;
	font-size: 0.75rem;
}

ul.products li.product .price {
	font-size: 1.1rem;
	font-weight: 700;
	color: #374151;
	margin-bottom: 0;
}

ul.products li.product .price del {
	opacity: 0.6;
	font-size: 0.9rem;
	font-weight: 400;
	margin-right: 0.4rem;
	color: #757575;
}

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

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

ul.products li.product .onsale {
	position: absolute;
	top: 0.5rem;
	right: 0.5rem;
	background: #6b7280;
	color: #fff;
	padding: 0.25rem 0.5rem;
	border-radius: 3px;
	font-size: 0.7rem;
	font-weight: 700;
	z-index: 2;
	letter-spacing: 0.03em;
}

@media screen and (max-width: 47.99em) {

	ul.products {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}

	ul.products li.product .product-image-wrapper .product-wishlist {
		width: 32px;
		height: 32px;
	}

	ul.products li.product .product-image-wrapper .product-wishlist i {
		font-size: 16px;
	}
}

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

	ul.products {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 1.25rem;
	}

	ul.products li.product {
		float: none !important;
		margin-right: 0 !important;
		width: 100% !important;
	}

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

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

	ul.products.columns-1 {
		grid-template-columns: 1fr;
	}

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

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

	ul.products.columns-2 li.product {
		width: 100% !important;
		float: none !important;
		margin-right: 0 !important;
	}

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

	ul.products.columns-3 li.product {
		width: 100% !important;
		float: none !important;
		margin-right: 0 !important;
	}

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

	ul.products.columns-4 li.product {
		width: 100% !important;
		float: none !important;
		margin-right: 0 !important;
	}

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

	ul.products.columns-5 li.product {
		width: 100% !important;
		float: none !important;
		margin-right: 0 !important;
	}

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

	ul.products.columns-6 li.product {
		width: 100% !important;
		float: none !important;
		margin-right: 0 !important;
	}
}

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

	ul.products {
		display: grid;
		grid-template-columns: repeat(5, 1fr);
		gap: 1.5rem;
	}

	ul.products li.product {
		float: none !important;
		margin-right: 0 !important;
		width: 100% !important;
	}

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

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

	ul.products.columns-1 {
		grid-template-columns: 1fr;
	}

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

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

	ul.products.columns-2 li.product {
		width: 100% !important;
		float: none !important;
		margin-right: 0 !important;
	}

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

	ul.products.columns-3 li.product {
		width: 100% !important;
		float: none !important;
		margin-right: 0 !important;
	}

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

	ul.products.columns-4 li.product {
		width: 100% !important;
		float: none !important;
		margin-right: 0 !important;
	}

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

	ul.products.columns-5 li.product {
		width: 100% !important;
		float: none !important;
		margin-right: 0 !important;
	}

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

	ul.products.columns-6 li.product {
		width: 100% !important;
		float: none !important;
		margin-right: 0 !important;
	}
}

/**
 * Shop page
 */

/*
Theme Name: hugfemme

WooCommerce styles override
*/
.shop-page {
	background: #fff;
}

.shop-content {
	padding: 3rem 0;
}

.shop-content .section-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
}

@media (max-width: 768px) {

	.shop-content .section-container {
		padding: 0 1rem;
	}
}

.shop-layout {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 2.5rem;
	align-items: start;
}

.shop-sidebar {
	position: relative;
}

.shop-sidebar .sidebar-sticky {
	position: sticky;
	top: 100px;
	background: #fff;
	border-radius: 12px;
	border: 2px solid #e0dbd4;
	padding: 1.5rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.filter-section {
	margin-bottom: 2rem;
}

.filter-section:last-child {
	margin-bottom: 0;
}

.filter-section .filter-title {
	font-size: 1rem;
	font-weight: 700;
	color: #424242;
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding-bottom: 0.75rem;
	border-bottom: 2px solid #ffe0e6;
}

.filter-section .filter-title i {
	color: #f99;
	font-size: 1.1rem;
}

.filter-section .filter-content {
	padding-top: 0.5rem;
}

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

.filter-list .filter-item {
	margin-bottom: 0.5rem;
}

.filter-list .filter-item:last-child {
	margin-bottom: 0;
}

.filter-list .filter-item a {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.75rem;
	border-radius: 8px;
	text-decoration: none;
	color: #757575;
	font-size: 0.9rem;
	transition: all 0.2s ease;
}

.filter-list .filter-item a:hover {
	background: #faf9f7;
	color: #f99;
	transform: translateX(4px);
}

.filter-list .filter-item a i {
	font-size: 1rem;
	color: #f99;
	min-width: 20px;
	text-align: center;
}

.filter-list .filter-item a span:not(.count) {
	flex: 1;
}

.filter-list .filter-item a .count {
	font-size: 0.75rem;
	color: #757575;
	font-weight: 500;
}

.filter-list .filter-item.active a {
	background: linear-gradient(135deg, #faf9f7 0%, #fff 100%);
	color: #f99;
	font-weight: 600;
	border: 2px solid #ffe0e6;
}

.shop-main {
	min-width: 0;
}

.shop-toolbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.25rem;
	background: #f6f4f1;
	border-radius: 12px;
	margin-bottom: 2rem;
	border: 2px solid #e0dbd4;
}

.shop-toolbar .toolbar-left .woocommerce-result-count {
	margin: 0;
	font-size: 0.9rem;
	color: #757575;
	font-weight: 500;
}

.shop-toolbar .toolbar-right .woocommerce-ordering {
	margin: 0;
}

.shop-toolbar .toolbar-right .woocommerce-ordering select.orderby {
	padding: 0.5rem 2.5rem 0.5rem 1rem;
	border: 2px solid #e0dbd4;
	border-radius: 8px;
	background: #fff;
	color: #424242;
	font-size: 0.9rem;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s ease;
}

.shop-toolbar .toolbar-right .woocommerce-ordering select.orderby:hover {
	border-color: #f99;
}

.shop-toolbar .toolbar-right .woocommerce-ordering select.orderby:focus {
	outline: none;
	border-color: #f99;
	box-shadow: 0 0 0 3px rgba(255, 153, 153, 0.1);
}

.recommended-section {
	background: linear-gradient(135deg, #faf9f7 0%, #fff 100%);
	padding: 4rem 0;
	border-top: 2px solid #ffe0e6;
}

.recommended-section .section-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
}

.recommended-section .section-header {
	text-align: center;
	margin-bottom: 3rem;
}

.recommended-section .section-header .section-title {
	font-size: 2rem;
	font-weight: 700;
	color: #424242;
	margin-bottom: 0.5rem;
	letter-spacing: 0.05em;
}

.recommended-section .section-header .section-subtitle {
	font-size: 1rem;
	color: #757575;
	font-weight: 400;
}

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

	.shop-layout {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.shop-sidebar .sidebar-sticky {
		position: static;
		top: auto;
	}

	.shop-header {
		padding: 2rem 0 1.5rem;
	}

	.shop-header .page-title {
		font-size: 1.75rem;
	}

	.shop-content {
		padding: 2rem 0;
	}

	.shop-toolbar {
		flex-direction: column;
		gap: 1rem;
		align-items: stretch;
	}

	.shop-toolbar .toolbar-left,
	.shop-toolbar .toolbar-right {
		width: 100%;
		text-align: center;
	}

	.shop-toolbar .toolbar-right .woocommerce-ordering select.orderby {
		width: 100%;
	}

	.recommended-section {
		padding: 3rem 0;
	}

	.recommended-section .section-header {
		margin-bottom: 2rem;
	}

	.recommended-section .section-header .section-title {
		font-size: 1.75rem;
	}
}

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

	.shop-header {
		padding: 1.5rem 0 1rem;
	}

	.shop-header .page-title {
		font-size: 1.5rem;
	}

	.shop-header .category-description,
	.shop-header .brand-description {
		font-size: 0.9rem;
	}

	.shop-content {
		padding: 1.5rem 0;
	}

	.shop-sidebar .sidebar-sticky {
		padding: 1rem;
	}

	.filter-section {
		margin-bottom: 1.5rem;
	}

	.filter-section .filter-title {
		font-size: 0.95rem;
	}

	.shop-toolbar {
		padding: 1rem;
	}

	.shop-toolbar .toolbar-left .woocommerce-result-count {
		font-size: 0.85rem;
	}

	.recommended-section {
		padding: 2.5rem 0;
	}

	.recommended-section .section-header {
		margin-bottom: 1.5rem;
	}

	.recommended-section .section-header .section-title {
		font-size: 1.5rem;
	}

	.recommended-section .section-header .section-subtitle {
		font-size: 0.9rem;
	}
}

.btn-block {
	display: block;
	width: 100%;
	text-align: center;
}

/**
 * Wishlist
 */
@keyframes pulse {

	0%,
	100% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.2);
	}
}

.product-wishlist.pulse {
	animation: pulse 0.3s ease;
}

.wishlist-notification {
	position: fixed;
	top: 20px;
	right: 20px;
	background: #fff;
	color: #424242;
	padding: 1rem 1.5rem;
	border-radius: 8px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
	z-index: 9999;
	transform: translateX(400px);
	transition: transform 0.3s ease;
	font-size: 0.9rem;
	font-weight: 500;
}

.wishlist-notification.show {
	transform: translateX(0);
}

.wishlist-notification--success {
	border-left: 4px solid #10b981;
}

.wishlist-notification--info {
	border-left: 4px solid #3b82f6;
}

.wishlist-notification--error {
	border-left: 4px solid #ef4444;
}

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

	.wishlist-notification {
		top: 10px;
		right: 10px;
		left: 10px;
		width: auto;
		transform: translateY(-100px);
	}

	.wishlist-notification.show {
		transform: translateY(0);
	}
}

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

.single-product div.product .woocommerce-product-gallery {
	position: relative;
	float: left;
}

.single-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__trigger {
	position: absolute;
	top: 2em;
	right: 1em;
	display: block;
	z-index: 99;
}

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

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

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

.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li img {
	opacity: 0.5;
}

.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li img.flex-active {
	opacity: 1;
}

.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li:hover img {
	opacity: 1;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-2 .flex-control-thumbs li {
	width: 48.1%;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-2 .flex-control-thumbs li:nth-child(2n) {
	margin-right: 0;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-2 .flex-control-thumbs li:nth-child(2n+1) {
	clear: both;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-3 .flex-control-thumbs li {
	width: 30.7966666667%;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-3 .flex-control-thumbs li:nth-child(3n) {
	margin-right: 0;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-3 .flex-control-thumbs li:nth-child(3n+1) {
	clear: both;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-4 .flex-control-thumbs li {
	width: 22.15%;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-4 .flex-control-thumbs li:nth-child(4n) {
	margin-right: 0;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-4 .flex-control-thumbs li:nth-child(4n+1) {
	clear: both;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-5 .flex-control-thumbs li {
	width: 16.96%;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-5 .flex-control-thumbs li:nth-child(5n) {
	margin-right: 0;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-5 .flex-control-thumbs li:nth-child(5n+1) {
	clear: both;
}

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

.stock.in-stock {
	color: #0f834d;
}

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

/**
 * Cart
 */
.page-id-7 .entry-header,
.cart .entry-header {
	display: none !important;
}

.page-id-7 .entry-content,
.cart .entry-content {
	padding-top: 0 !important;
	margin-top: 0 !important;
}

.woocommerce-cart .shop_table {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	overflow: hidden;
	border: 1px solid #ede9e4;
	margin-bottom: 2rem;
}

.woocommerce-cart .shop_table thead {
	background: linear-gradient(135deg, #f8f4f1 0%, #f0ece8 100%);
}

.woocommerce-cart .shop_table th {
	padding: 1.5rem 1rem;
	font-family: Montserrat, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans JP", sans-serif;
	font-weight: 600;
	color: #374151;
	border: none;
	text-align: left;
}

.woocommerce-cart .shop_table td {
	padding: 2rem 1rem;
	vertical-align: middle;
	border-bottom: 1px solid #f6f4f1;
}

.woocommerce-cart .shop_table tbody tr:hover {
	background-color: rgba(248, 244, 241, 0.3);
	transition: background-color 0.3s ease;
}

.woocommerce-cart .product-thumbnail img {
	width: 80px;
	height: 80px;
	object-fit: cover;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.woocommerce-cart .product-name a {
	color: #374151;
	font-weight: 500;
	text-decoration: none;
	transition: color 0.3s ease;
}

.woocommerce-cart .product-name a:hover {
	color: #d4a5a5;
}

.woocommerce-cart .product-price,
.woocommerce-cart .product-subtotal {
	font-weight: 600;
	color: #374151;
	font-size: 1.125rem;
}

.woocommerce-cart .product-remove .remove {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: rgba(239, 68, 68, 0.1);
	color: #ef4444;
	border-radius: 50%;
	text-decoration: none;
	font-weight: 700;
	transition: all 0.3s ease;
}

.woocommerce-cart .product-remove .remove:hover {
	background: #ef4444;
	color: #fff;
	transform: scale(1.1);
}

.woocommerce-cart .quantity .qty {
	width: 60px;
	height: 40px;
	text-align: center;
	border: 2px solid #ede9e4;
	border-radius: 8px;
	transition: border-color 0.3s ease;
}

.woocommerce-cart .quantity .qty:focus {
	border-color: #d4a5a5;
	outline: none;
	box-shadow: 0 0 0 3px rgba(212, 165, 165, 0.1);
}

.woocommerce-cart .actions {
	background: rgba(248, 244, 241, 0.3);
	padding: 2rem;
	border-radius: 12px;
	margin-top: 2rem;
}

.woocommerce-cart .button {
	background: #d4a5a5;
	color: #fff;
	border: none;
	padding: 0.75rem 1.5rem;
	border-radius: 8px;
	font-family: Montserrat, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans JP", sans-serif;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
}

.woocommerce-cart .button:hover {
	background: #374151;
	transform: translateY(-1px);
	color: #fff;
}

.woocommerce-cart .cart-collaterals {
	display: grid;
	grid-template-columns: 1fr 400px;
	gap: 3rem;
	margin-top: 3rem;
}

@media (max-width: 768px) {

	.woocommerce-cart .cart-collaterals {
		grid-template-columns: 1fr;
		gap: 2rem;
		margin-top: 2rem;
	}
}

.woocommerce-cart .cart_totals {
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
	padding: 2.5rem;
	border: 1px solid #ede9e4;
}

.woocommerce-cart .cart_totals h2 {
	font-family: Montserrat, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans JP", sans-serif;
	color: #374151;
	text-align: center;
	margin-bottom: 2rem;
	padding-bottom: 1rem;
	border-bottom: 2px solid #d4a5a5;
}

.woocommerce-cart .cart_totals .shop_table {
	box-shadow: none;
	border-radius: 0;
}

.woocommerce-cart .cart_totals .shop_table th,
.woocommerce-cart .cart_totals .shop_table td {
	padding: 1.5rem 1rem;
	border-bottom: 1px solid #ede9e4;
	background: transparent;
}

.woocommerce-cart .cart_totals .shop_table th:first-child,
.woocommerce-cart .cart_totals .shop_table td:first-child {
	padding-left: 0;
}

.woocommerce-cart .cart_totals .shop_table th:last-child,
.woocommerce-cart .cart_totals .shop_table td:last-child {
	padding-right: 0;
	text-align: right;
}

.woocommerce-cart .cart_totals .shop_table th {
	font-family: Montserrat, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans JP", sans-serif;
	font-weight: 500;
	color: #424242;
	font-size: 1rem;
}

.woocommerce-cart .cart_totals .shop_table td {
	font-weight: 600;
	color: #374151;
}

.woocommerce-cart .cart_totals .shop_table td .woocommerce-Price-amount {
	font-size: 1.125rem;
}

.woocommerce-cart .cart_totals .shop_table .order-total th,
.woocommerce-cart .cart_totals .shop_table .order-total td {
	font-size: 1.25rem;
	font-weight: 700;
	color: #374151;
	border-bottom: none;
	padding-top: 2rem;
	border-top: 2px solid #d4a5a5;
}

.wc-proceed-to-checkout .checkout-button {
	width: 100%;
	padding: 1.25rem 2rem;
	background: linear-gradient(135deg, #d4a5a5 0%, #374151 100%);
	color: #fff;
	font-family: Montserrat, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans JP", sans-serif;
	font-size: 1.125rem;
	font-weight: 600;
	text-decoration: none;
	border-radius: 12px;
	transition: all 0.3s ease;
	display: block;
	text-align: center;
	box-shadow: 0 4px 15px rgba(212, 165, 165, 0.3);
}

.wc-proceed-to-checkout .checkout-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 25px rgba(212, 165, 165, 0.4);
	color: #fff;
}

.woocommerce-info .button,
.woocommerce-message .button {
	background: #d4a5a5 !important;
	color: #fff !important;
	border: none;
	padding: 0.75rem 1.5rem;
	border-radius: 8px;
	font-family: Montserrat, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans JP", sans-serif;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
}

.woocommerce-info .button:hover,
.woocommerce-message .button:hover {
	background: #374151 !important;
	transform: translateY(-1px);
	color: #fff !important;
}

@media (max-width: 768px) {

	.hug-cart-header {
		padding: 2rem 1rem !important;
		margin-top: 0 !important;
		margin-bottom: 2rem !important;
	}

	.hug-cart-header h1 {
		font-size: 1.875rem !important;
	}

	.woocommerce-cart .shop_table th,
	.woocommerce-cart .shop_table td {
		padding: 1rem 0.5rem;
	}

	.woocommerce-cart .product-thumbnail img {
		width: 60px;
		height: 60px;
	}

	.woocommerce-cart .cart_totals {
		padding: 1.5rem;
	}
}

/**
 * Checkout
 */

/*
Theme Name: hugfemme

WooCommerce styles override
*/
.woocommerce-checkout .entry-header,
.page-id-8 .entry-header {
	display: none !important;
}

.woocommerce-checkout .entry-content,
.page-id-8 .entry-content {
	padding-top: 0 !important;
	margin-top: 0 !important;
}

.woocommerce-checkout .entry-content.page-wrapper--with-spacing,
.page-id-8 .entry-content.page-wrapper--with-spacing {
	margin-top: 2rem !important;
}

@media (max-width: 768px) {

	.woocommerce-checkout .entry-content.page-wrapper--with-spacing,
	.page-id-8 .entry-content.page-wrapper--with-spacing {
		margin-top: 1.5rem !important;
	}
}

.woocommerce-checkout .page-wrapper form.checkout,
.woocommerce-checkout form.checkout {
	display: grid;
	grid-template-columns: 1fr 400px;
	gap: 3rem;
	align-items: start;
}

@media (max-width: 768px) {

	.woocommerce-checkout .page-wrapper form.checkout,
	.woocommerce-checkout form.checkout {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
}

.woocommerce-checkout .wc-block-components-sidebar-layout {
	display: grid;
	grid-template-columns: 1fr 400px;
	gap: 2.5rem;
	align-items: start;
}

@media (max-width: 768px) {

	.woocommerce-checkout .wc-block-components-sidebar-layout {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
}

.woocommerce-checkout .wc-block-components-main {
	grid-column: 1;
	min-width: 0;
	width: 100% !important;
	padding-right: 0 !important;
}

.woocommerce-checkout .wc-block-components-sidebar {
	grid-column: 2;
	min-width: 400px;
	width: 100% !important;
	padding-left: 0 !important;
}

@media (max-width: 768px) {

	.woocommerce-checkout .wc-block-components-sidebar {
		grid-column: 1;
		min-width: 0;
	}
}

.woocommerce-checkout #customer_details {
	grid-column: 1;
}

.woocommerce-checkout #customer_details .col-1,
.woocommerce-checkout #customer_details .col-2 {
	background: #fff;
	border-radius: 12px;
	border: 2px solid #ede9e4;
	padding: 2rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	margin-bottom: 2rem;
}

.woocommerce-checkout #customer_details .col-1 h3,
.woocommerce-checkout #customer_details .col-2 h3 {
	font-family: Montserrat, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans JP", sans-serif;
	font-size: 1.5rem;
	color: #374151;
	margin-bottom: 1.5rem;
	padding-bottom: 0.75rem;
	border-bottom: 2px solid #ede9e4;
}

.woocommerce-checkout .form-row {
	margin-bottom: 1.5rem;
}

.woocommerce-checkout .form-row label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 600;
	color: #424242;
	font-size: 1rem;
}

.woocommerce-checkout .form-row label .required {
	color: #ef4444;
	text-decoration: none;
}

.woocommerce-checkout .form-row input[type="text"],
.woocommerce-checkout .form-row input[type="email"],
.woocommerce-checkout .form-row input[type="tel"],
.woocommerce-checkout .form-row input[type="password"],
.woocommerce-checkout .form-row input[type="number"],
.woocommerce-checkout .form-row textarea,
.woocommerce-checkout .form-row select {
	width: 100%;
	padding: 0.875rem;
	border: 2px solid #ede9e4;
	border-radius: 8px;
	font-size: 1rem;
	transition: all 0.3s ease;
	background: #fff;
}

.woocommerce-checkout .form-row input[type="text"]:focus,
.woocommerce-checkout .form-row input[type="email"]:focus,
.woocommerce-checkout .form-row input[type="tel"]:focus,
.woocommerce-checkout .form-row input[type="password"]:focus,
.woocommerce-checkout .form-row input[type="number"]:focus,
.woocommerce-checkout .form-row textarea:focus,
.woocommerce-checkout .form-row select:focus {
	outline: none;
	border-color: #6b7280;
	box-shadow: 0 0 0 3px rgba(107, 114, 128, 0.1);
}

.woocommerce-checkout .form-row textarea {
	min-height: 100px;
	resize: vertical;
}

.woocommerce-checkout .form-row .select2-container {
	width: 100% !important;
}

.woocommerce-checkout .form-row .select2-container .select2-selection {
	border: 2px solid #ede9e4;
	border-radius: 8px;
	padding: 0.5rem;
}

.woocommerce-checkout .form-row .select2-container .select2-selection:focus {
	border-color: #6b7280;
}

.woocommerce-checkout #order_review_heading {
	display: none;
}

.woocommerce-checkout #order_review {
	grid-column: 2;
	grid-row: 1/-1;
	position: sticky;
	top: 100px;
}

@media (max-width: 768px) {

	.woocommerce-checkout #order_review {
		position: relative;
		top: 0;
	}
}

.woocommerce-checkout .woocommerce-checkout-review-order {
	background: #fff;
	border-radius: 16px;
	border: 2px solid #ede9e4;
	padding: 2rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.woocommerce-checkout .woocommerce-checkout-review-order h3 {
	font-family: Montserrat, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans JP", sans-serif;
	font-size: 1.5rem;
	color: #374151;
	text-align: center;
	margin-bottom: 1.5rem;
	padding-bottom: 1rem;
	border-bottom: 2px solid #6b7280;
}

.woocommerce-checkout .woocommerce-checkout-review-order table.shop_table {
	width: 100%;
	margin-bottom: 1.5rem;
	border: none;
}

.woocommerce-checkout .woocommerce-checkout-review-order table.shop_table thead {
	background: rgba(248, 244, 241, 0.3);
}

.woocommerce-checkout .woocommerce-checkout-review-order table.shop_table thead th {
	padding: 1rem;
	font-weight: 600;
	color: #374151;
	border: none;
}

.woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tbody tr {
	border-bottom: 1px solid #ede9e4;
}

.woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tbody tr:last-child {
	border-bottom: none;
}

.woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tbody tr th,
.woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tbody tr td {
	padding: 1rem;
	border: none;
}

.woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tbody tr th {
	font-weight: 500;
	color: #424242;
	text-align: left;
}

.woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tbody tr td {
	font-weight: 600;
	color: #374151;
	text-align: right;
}

.woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tbody tr .product-thumbnail img {
	width: 60px;
	height: 60px;
	object-fit: cover;
	border-radius: 8px;
}

.woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tbody tr .product-name {
	font-weight: 500;
	color: #424242;
}

.woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tbody tr .product-quantity {
	color: #757575;
	font-size: 0.875rem;
}

.woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tfoot tr {
	border-top: 1px solid #ede9e4;
}

.woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tfoot tr th,
.woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tfoot tr td {
	padding: 1rem;
	border: none;
}

.woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tfoot tr th {
	font-weight: 500;
	color: #424242;
	text-align: left;
}

.woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tfoot tr td {
	font-weight: 600;
	color: #374151;
	text-align: right;
}

.woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tfoot tr.order-total th,
.woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tfoot tr.order-total td {
	font-size: 1.25rem;
	font-weight: 700;
	color: #374151;
	border-top: 2px solid #6b7280;
	padding-top: 1.5rem;
}

.woocommerce-checkout .woocommerce-checkout-review-order #payment {
	margin-top: 2rem;
}

.woocommerce-checkout .woocommerce-checkout-review-order #payment .wc_payment_methods {
	list-style: none;
	padding: 0;
	margin: 0 0 1.5rem 0;
}

.woocommerce-checkout .woocommerce-checkout-review-order #payment .wc_payment_methods li {
	background: #faf9f7;
	border: 2px solid #ede9e4;
	border-radius: 8px;
	padding: 1rem;
	margin-bottom: 0.75rem;
	transition: all 0.3s ease;
}

.woocommerce-checkout .woocommerce-checkout-review-order #payment .wc_payment_methods li:hover {
	border-color: #f8f4f1;
}

.woocommerce-checkout .woocommerce-checkout-review-order #payment .wc_payment_methods li input[type="radio"] {
	margin-right: 0.75rem;
}

.woocommerce-checkout .woocommerce-checkout-review-order #payment .wc_payment_methods li label {
	font-weight: 600;
	color: #424242;
	cursor: pointer;
	display: flex;
	align-items: center;
}

.woocommerce-checkout .woocommerce-checkout-review-order #payment .wc_payment_methods li .payment_box {
	margin-top: 1rem;
	padding: 1rem;
	background: #fff;
	border-radius: 4px;
	color: #757575;
	font-size: 0.875rem;
}

.woocommerce-checkout .woocommerce-checkout-review-order #payment .place-order {
	margin-top: 1.5rem;
}

.woocommerce-checkout .woocommerce-checkout-review-order #payment .place-order button[type="submit"] {
	width: 100%;
	padding: 1.25rem 2rem;
	background: linear-gradient(135deg, #6b7280 0%, #f0ece8 100%);
	color: #fff;
	font-family: Montserrat, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans JP", sans-serif;
	font-size: 1.125rem;
	font-weight: 600;
	border: none;
	border-radius: 50px;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(107, 114, 128, 0.3);
}

.woocommerce-checkout .woocommerce-checkout-review-order #payment .place-order button[type="submit"]:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 25px rgba(107, 114, 128, 0.4);
}

.woocommerce-checkout .woocommerce-checkout-review-order #payment .place-order button[type="submit"]:active {
	transform: translateY(0);
}

.woocommerce-checkout .woocommerce-checkout-review-order #payment .place-order button[type="submit"]:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.woocommerce-checkout .woocommerce-additional-fields {
	background: #fff;
	border-radius: 12px;
	border: 2px solid #ede9e4;
	padding: 2rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	margin-bottom: 2rem;
}

.woocommerce-checkout .woocommerce-additional-fields h3 {
	font-family: Montserrat, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans JP", sans-serif;
	font-size: 1.5rem;
	color: #374151;
	margin-bottom: 1.5rem;
	padding-bottom: 0.75rem;
	border-bottom: 2px solid #ede9e4;
}

.woocommerce-checkout .woocommerce-error,
.woocommerce-checkout .woocommerce-info,
.woocommerce-checkout .woocommerce-message {
	padding: 1rem 1.5rem;
	border-radius: 8px;
	margin-bottom: 2rem;
}

.woocommerce-checkout .woocommerce-error a,
.woocommerce-checkout .woocommerce-info a,
.woocommerce-checkout .woocommerce-message a {
	font-weight: 600;
	text-decoration: underline;
}

.woocommerce-checkout .woocommerce-error {
	background: rgba(239, 68, 68, 0.1);
	border-left: 4px solid #ef4444;
	color: #ef4444;
}

.woocommerce-checkout .woocommerce-error::before {
	content: "\f06a";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	margin-right: 0.75rem;
}

.woocommerce-checkout .woocommerce-info {
	background: rgba(107, 114, 128, 0.1);
	border-left: 4px solid #6b7280;
	color: #374151;
}

.woocommerce-checkout .woocommerce-info::before {
	content: "\f05a";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	margin-right: 0.75rem;
}

@media (max-width: 768px) {

	.woocommerce-checkout #customer_details .col-1,
	.woocommerce-checkout #customer_details .col-2 {
		padding: 1.5rem;
	}

	.woocommerce-checkout .woocommerce-checkout-review-order {
		padding: 1.5rem;
	}
}

.woocommerce-checkout .wc-block-checkout__main .wc-block-components-form {
	display: contents;
}

.woocommerce-checkout .wc-block-components-checkout-step {
	background: #fff;
	border-radius: 12px;
	border: 2px solid #ede9e4;
	padding: 2rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	margin-bottom: 2rem;
	grid-column: 1;
}

.woocommerce-checkout .wc-block-components-checkout-step .wc-block-components-checkout-step__title {
	font-family: Montserrat, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans JP", sans-serif;
	font-size: 1.5rem;
	color: #374151;
	margin-bottom: 1.5rem;
	padding-bottom: 0.75rem;
	border-bottom: 2px solid #ede9e4;
}

.woocommerce-checkout .wc-block-components-checkout-step .wc-block-components-checkout-step__description {
	color: #757575;
	margin-bottom: 1.5rem;
}

.woocommerce-checkout .wc-block-components-text-input,
.woocommerce-checkout .wc-block-components-country-input,
.woocommerce-checkout .wc-block-components-state-input {
	position: relative;
	margin-bottom: 1.5rem;
}

.woocommerce-checkout .wc-block-components-text-input input,
.woocommerce-checkout .wc-block-components-text-input select,
.woocommerce-checkout .wc-block-components-country-input input,
.woocommerce-checkout .wc-block-components-country-input select,
.woocommerce-checkout .wc-block-components-state-input input,
.woocommerce-checkout .wc-block-components-state-input select {
	width: 100%;
	padding: 0.875rem;
	border: 2px solid #ede9e4;
	border-radius: 8px;
	font-size: 1rem;
	transition: all 0.3s ease;
	background: #fff;
}

.woocommerce-checkout .wc-block-components-text-input input:focus,
.woocommerce-checkout .wc-block-components-text-input select:focus,
.woocommerce-checkout .wc-block-components-country-input input:focus,
.woocommerce-checkout .wc-block-components-country-input select:focus,
.woocommerce-checkout .wc-block-components-state-input input:focus,
.woocommerce-checkout .wc-block-components-state-input select:focus {
	outline: none;
	border-color: #6b7280;
	box-shadow: 0 0 0 3px rgba(107, 114, 128, 0.1);
}

.woocommerce-checkout .wc-block-components-text-input label,
.woocommerce-checkout .wc-block-components-country-input label,
.woocommerce-checkout .wc-block-components-state-input label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 600;
	color: #424242;
	font-size: 1rem;
}

.woocommerce-checkout .wc-block-components-sidebar,
.woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-block {
	position: sticky;
	top: 100px;
	background: #fff;
	border-radius: 16px;
	border: 2px solid #ede9e4;
	padding: 2rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {

	.woocommerce-checkout .wc-block-components-sidebar,
	.woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-block {
		position: relative;
		top: 0;
		grid-column: 1;
		grid-row: auto;
		padding: 1.5rem;
	}
}

.woocommerce-checkout .wc-block-components-sidebar h2,
.woocommerce-checkout .wc-block-components-sidebar .wc-block-components-order-summary__title,
.woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-block h2,
.woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-order-summary__title {
	font-family: Montserrat, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans JP", sans-serif;
	font-size: 1.5rem;
	color: #374151;
	text-align: center;
	margin-bottom: 1.5rem;
	padding-bottom: 1rem;
	border-bottom: 2px solid #6b7280;
}

.woocommerce-checkout .wc-block-components-sidebar .wc-block-components-order-summary-item,
.woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-order-summary-item {
	padding: 1rem 0;
	border-bottom: 1px solid #ede9e4;
}

.woocommerce-checkout .wc-block-components-sidebar .wc-block-components-order-summary-item:last-child,
.woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-order-summary-item:last-child {
	border-bottom: none;
}

.woocommerce-checkout .wc-block-components-sidebar .wc-block-components-totals-footer-item,
.woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-totals-footer-item {
	font-size: 1.25rem;
	font-weight: 700;
	color: #374151;
	padding-top: 1.5rem;
	margin-top: 1rem;
	border-top: 2px solid #6b7280;
}

.woocommerce-checkout .wc-block-components-checkbox {
	margin-bottom: 1.5rem;
}

.woocommerce-checkout .wc-block-components-checkbox label {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	cursor: pointer;
}

.woocommerce-checkout .wc-block-components-checkbox input[type="checkbox"] {
	width: 20px;
	height: 20px;
	cursor: pointer;
}

.woocommerce-checkout .wc-block-checkout__actions {
	grid-column: 1/-1;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 2rem;
	padding-top: 2rem;
	border-top: 2px solid #ede9e4;
}

.woocommerce-checkout .wc-block-checkout__actions .wc-block-components-checkout-place-order-button {
	width: 100%;
	max-width: 400px;
	padding: 1.25rem 2rem;
	background: linear-gradient(135deg, #6b7280 0%, #f0ece8 100%);
	color: #fff;
	font-family: Montserrat, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans JP", sans-serif;
	font-size: 1.125rem;
	font-weight: 600;
	border: none;
	border-radius: 50px;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(107, 114, 128, 0.3);
}

.woocommerce-checkout .wc-block-checkout__actions .wc-block-components-checkout-place-order-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 25px rgba(107, 114, 128, 0.4);
}

.woocommerce-checkout .wc-block-checkout__actions .wc-block-components-checkout-place-order-button:active {
	transform: translateY(0);
}

.woocommerce-checkout .wc-block-checkout__actions .wc-block-components-checkout-place-order-button:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.woocommerce-checkout .wc-block-checkout__actions .wc-block-components-checkout-return-to-cart-button {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: #757575;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
}

.woocommerce-checkout .wc-block-checkout__actions .wc-block-components-checkout-return-to-cart-button:hover {
	color: #6b7280;
}

/**
 * My Account
 */

/*
Theme Name: hugfemme

WooCommerce styles override
*/
.woocommerce-account .entry-header {
	display: none;
}

.woocommerce-account .entry-content {
	padding-top: 0 !important;
	margin-top: 0 !important;
}

.woocommerce-account .woocommerce {
	background: #fff;
	padding: 0;
}

.woocommerce-account .woocommerce .section-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
}

.woocommerce-account .woocommerce-MyAccount-wrapper {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
}

@media (max-width: 768px) {

	.woocommerce-account .woocommerce-MyAccount-wrapper {
		padding: 0 1rem;
	}
}

.woocommerce-account .woocommerce-MyAccount-wrapper {
	margin-top: 3rem;
}

@media (max-width: 768px) {

	.woocommerce-account .woocommerce-MyAccount-wrapper {
		margin-top: 2rem;
	}
}

.woocommerce-account .woocommerce-MyAccount-wrapper {
	display: grid;
	grid-template-columns: 280px 1fr;
	align-items: start;
	gap: 0;
}

.woocommerce-account .woocommerce-MyAccount-wrapper .woocommerce-notices-wrapper {
	order: -1;
	grid-column: span 2;
	margin-bottom: 2rem;
}

.woocommerce-account .woocommerce-MyAccount-wrapper .woocommerce-MyAccount-navigation {
	grid-column: 1;
	grid-row: 2;
	margin-right: 2rem;
}

.woocommerce-account .woocommerce-MyAccount-wrapper .woocommerce-MyAccount-content,
.woocommerce-account .woocommerce-MyAccount-wrapper > p,
.woocommerce-account .woocommerce-MyAccount-wrapper > .u-columns,
.woocommerce-account .woocommerce-MyAccount-wrapper > .woocommerce-Addresses,
.woocommerce-account .woocommerce-MyAccount-wrapper > form,
.woocommerce-account .woocommerce-MyAccount-wrapper > .woocommerce-orders-table,
.woocommerce-account .woocommerce-MyAccount-wrapper > .woocommerce-message,
.woocommerce-account .woocommerce-MyAccount-wrapper > .woocommerce-error,
.woocommerce-account .woocommerce-MyAccount-wrapper > .woocommerce-info {
	grid-column: 2;
	margin-left: 0;
}

.woocommerce-account .woocommerce-MyAccount-wrapper > p {
	margin-top: 0;
	margin-bottom: 1.5rem;
}

.woocommerce-account .woocommerce-MyAccount-wrapper > .u-columns,
.woocommerce-account .woocommerce-MyAccount-wrapper > .woocommerce-Addresses {
	margin-top: 0;
	margin-bottom: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
	background: #fff;
	border-radius: 12px;
	border: 2px solid #ede9e4;
	padding: 1.5rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	margin-bottom: 2rem;
}

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

.woocommerce-account .woocommerce-MyAccount-navigation ul li {
	margin: 0;
	border-bottom: 1px solid #f6f4f1;
}

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

.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
	display: flex;
	align-items: center;
	padding: 1rem;
	color: #424242;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
	border-radius: 8px;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover {
	background: #f8f4f1;
	color: #6b7280;
	transform: translateX(4px);
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a {
	background: linear-gradient(135deg, #6b7280 0%, #f0ece8 100%);
	color: #fff;
	font-weight: 600;
	box-shadow: 0 2px 8px rgba(107, 114, 128, 0.3);
}

.woocommerce-account .woocommerce-MyAccount-content {
	background: #fff;
	border-radius: 12px;
	border: 2px solid #ede9e4;
	padding: 2rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	margin-bottom: 2rem;
}

.woocommerce-account .woocommerce-MyAccount-content h2,
.woocommerce-account .woocommerce-MyAccount-content h3 {
	font-family: Montserrat, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans JP", sans-serif;
	color: #374151;
	margin-bottom: 1.5rem;
	font-weight: 700;
	border-bottom: 2px solid #ede9e4;
	padding-bottom: 0.75rem;
}

.woocommerce-account .woocommerce-MyAccount-content p {
	color: #424242;
	line-height: 1.6;
	margin-bottom: 1rem;
}

.woocommerce-account .woocommerce-MyAccount-content a {
	color: #6b7280;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
}

.woocommerce-account .woocommerce-MyAccount-content a:hover {
	color: #f0ece8;
	text-decoration: underline;
}

.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-orders-table,
.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-MyAccount-orders,
.woocommerce-account .woocommerce-MyAccount-content table.shop_table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 1.5rem;
}

.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-orders-table thead,
.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-MyAccount-orders thead,
.woocommerce-account .woocommerce-MyAccount-content table.shop_table thead {
	background: linear-gradient(135deg, #f8f4f1 0%, rgba(240, 236, 232, 0.1) 100%);
}

.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-orders-table thead th,
.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-MyAccount-orders thead th,
.woocommerce-account .woocommerce-MyAccount-content table.shop_table thead th {
	padding: 1rem;
	text-align: left;
	font-weight: 600;
	color: #374151;
	border-bottom: 2px solid #6b7280;
}

.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-orders-table tbody tr,
.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-MyAccount-orders tbody tr,
.woocommerce-account .woocommerce-MyAccount-content table.shop_table tbody tr {
	border-bottom: 1px solid #ede9e4;
	transition: background 0.3s ease;
}

.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-orders-table tbody tr:hover,
.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-MyAccount-orders tbody tr:hover,
.woocommerce-account .woocommerce-MyAccount-content table.shop_table tbody tr:hover {
	background: #faf9f7;
}

.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-orders-table tbody tr td,
.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-MyAccount-orders tbody tr td,
.woocommerce-account .woocommerce-MyAccount-content table.shop_table tbody tr td {
	padding: 1rem;
	color: #424242;
}

.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-orders-table tbody tr td a,
.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-MyAccount-orders tbody tr td a,
.woocommerce-account .woocommerce-MyAccount-content table.shop_table tbody tr td a {
	color: #6b7280;
	font-weight: 500;
}

.woocommerce-account .woocommerce-MyAccount-content form .form-row {
	margin-bottom: 1.5rem;
}

.woocommerce-account .woocommerce-MyAccount-content form .form-row label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 600;
	color: #424242;
}

.woocommerce-account .woocommerce-MyAccount-content form .form-row label .required {
	color: #ef4444;
}

.woocommerce-account .woocommerce-MyAccount-content form .form-row input[type="text"],
.woocommerce-account .woocommerce-MyAccount-content form .form-row input[type="email"],
.woocommerce-account .woocommerce-MyAccount-content form .form-row input[type="password"],
.woocommerce-account .woocommerce-MyAccount-content form .form-row input[type="tel"],
.woocommerce-account .woocommerce-MyAccount-content form .form-row textarea,
.woocommerce-account .woocommerce-MyAccount-content form .form-row select {
	width: 100%;
	padding: 0.875rem;
	border: 2px solid #ede9e4;
	border-radius: 8px;
	font-size: 1rem;
	transition: all 0.3s ease;
}

.woocommerce-account .woocommerce-MyAccount-content form .form-row input[type="text"]:focus,
.woocommerce-account .woocommerce-MyAccount-content form .form-row input[type="email"]:focus,
.woocommerce-account .woocommerce-MyAccount-content form .form-row input[type="password"]:focus,
.woocommerce-account .woocommerce-MyAccount-content form .form-row input[type="tel"]:focus,
.woocommerce-account .woocommerce-MyAccount-content form .form-row textarea:focus,
.woocommerce-account .woocommerce-MyAccount-content form .form-row select:focus {
	outline: none;
	border-color: #6b7280;
	box-shadow: 0 0 0 3px rgba(107, 114, 128, 0.1);
}

.woocommerce-account .woocommerce-MyAccount-content form button[type="submit"],
.woocommerce-account .woocommerce-MyAccount-content form .button {
	background: linear-gradient(135deg, #6b7280 0%, #f0ece8 100%);
	color: #fff;
	padding: 1rem 2rem;
	border: none;
	border-radius: 50px;
	font-weight: 600;
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(107, 114, 128, 0.3);
}

.woocommerce-account .woocommerce-MyAccount-content form button[type="submit"]:hover,
.woocommerce-account .woocommerce-MyAccount-content form .button:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(107, 114, 128, 0.4);
}

.woocommerce-account .woocommerce-MyAccount-content form button[type="submit"]:active,
.woocommerce-account .woocommerce-MyAccount-content form .button:active {
	transform: translateY(0);
}

.woocommerce-account .woocommerce-message,
.woocommerce-account .woocommerce-error,
.woocommerce-account .woocommerce-info {
	padding: 1rem 1.5rem;
	border-radius: 8px;
	margin-bottom: 1.5rem;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.woocommerce-account .woocommerce-message::before,
.woocommerce-account .woocommerce-error::before,
.woocommerce-account .woocommerce-info::before {
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	font-size: 1.25rem;
}

.woocommerce-account .woocommerce-message a,
.woocommerce-account .woocommerce-error a,
.woocommerce-account .woocommerce-info a {
	font-weight: 600;
	text-decoration: underline;
}

.woocommerce-account .woocommerce-message {
	background: rgb(181.828358209, 248.671641791, 226.5223880597);
	border-left: 4px solid #10b981;
	color: rgb(7.8805970149, 91.1194029851, 63.5373134328);
}

.woocommerce-account .woocommerce-message::before {
	content: "\f058";
	color: #10b981;
}

.woocommerce-account .woocommerce-message a {
	color: rgb(7.8805970149, 91.1194029851, 63.5373134328);
}

.woocommerce-account .woocommerce-error {
	background: hsl(0, 84.236453202%, 105.1960784314%);
	border-left: 4px solid #ef4444;
	color: rgb(188.842364532, 16.157635468, 16.157635468);
}

.woocommerce-account .woocommerce-error::before {
	content: "\f06a";
	color: #ef4444;
}

.woocommerce-account .woocommerce-error a {
	color: rgb(188.842364532, 16.157635468, 16.157635468);
}

.woocommerce-account .woocommerce-info {
	background: rgb(230.2170212766, 231.5723404255, 234.2829787234);
	border-left: 4px solid #6b7280;
	color: rgb(60.5574468085, 64.5191489362, 72.4425531915);
}

.woocommerce-account .woocommerce-info::before {
	content: "\f05a";
	color: #6b7280;
}

.woocommerce-account .woocommerce-info a {
	color: rgb(60.5574468085, 64.5191489362, 72.4425531915);
}

.woocommerce-account .woocommerce-Addresses {
	margin-top: 0;
}

.woocommerce-account .woocommerce-Addresses .woocommerce-Address {
	background: #faf9f7;
	padding: 1.5rem;
	border-radius: 8px;
	border: 1px solid #ede9e4;
	margin-bottom: 1.5rem;
}

.woocommerce-account .woocommerce-Addresses .woocommerce-Address .woocommerce-Address-title {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1rem;
}

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

.woocommerce-account .woocommerce-Addresses .woocommerce-Address .woocommerce-Address-title .edit {
	color: #6b7280;
	font-weight: 500;
	text-decoration: none;
}

.woocommerce-account .woocommerce-Addresses .woocommerce-Address .woocommerce-Address-title .edit:hover {
	text-decoration: underline;
}

.woocommerce-account .woocommerce-Addresses .woocommerce-Address address {
	font-style: normal;
	color: #424242;
	line-height: 1.6;
}

@media (min-width: 769px) {

	.woocommerce-account .woocommerce-MyAccount-navigation {
		position: sticky;
		top: 100px;
	}
}

@media (max-width: 768px) {

	.woocommerce-account .woocommerce {
		padding: 0;
	}

	.woocommerce-account .woocommerce .section-container {
		padding: 0 1rem;
	}

	.woocommerce-account .woocommerce-MyAccount-wrapper {
		display: block;
		margin-top: 2rem;
	}

	.woocommerce-account .woocommerce-MyAccount-navigation {
		margin-bottom: 2rem;
	}

	.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
		padding: 0.875rem;
		font-size: 0.875rem;
	}

	.woocommerce-account .woocommerce-MyAccount-content {
		padding: 1.5rem;
	}
}

/**
 * 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: "SSSSS";
	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: "SSSSS";
	top: 0;
	position: absolute;
	left: 0;
	color: #374151;
}

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: "S";
	color: #424242;
	text-indent: 0;
	opacity: 0.25;
}

p.stars a:hover ~ a::before {
	content: "S";
	color: #424242;
	opacity: 0.25;
}

p.stars:hover a::before {
	content: "S";
	color: #374151;
	opacity: 1;
}

p.stars.selected a.active::before {
	content: "S";
	color: #374151;
	opacity: 1;
}

p.stars.selected a.active ~ a::before {
	content: "S";
	color: #424242;
	opacity: 0.25;
}

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

/**
 * Tabs
 */
.woocommerce-tabs ul.tabs {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: left;
}

.woocommerce-tabs ul.tabs li {
	display: block;
	margin: 0;
	position: relative;
}

.woocommerce-tabs ul.tabs li a {
	padding: 1em 0;
	display: block;
}

.woocommerce-tabs .panel h2:first-of-type {
	margin-bottom: 1em;
}

/**
 * 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-message,
.woocommerce-info,
.woocommerce-error,
.woocommerce-noreviews,
p.no-comments {
	background-color: #0f834d;
	clear: both;
}

.woocommerce-info,
.woocommerce-noreviews,
p.no-comments {
	background-color: #3d9cd2;
}

.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: #374151;
	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: #374151;
}

.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%;
}
