/* ===========================
   SHARED BASE
   =========================== */

body.woocommerce-cart,
body.woocommerce-checkout,
body.woocommerce-account,
body.tax-product_cat,
body.tax-colecao,
body.tax-tipologia,
body.post-type-archive-product {
	background-color: var(--cream);
}

/* Cart & Account — hide white logo, dark menu */
body.woocommerce-cart .logo_white,
body.woocommerce-account .logo_white,
body.woocommerce-checkout .logo_white {
	display: none;
}

body.woocommerce-cart .menu_container a,
body.woocommerce-account .menu_container a,
body.woocommerce-checkout .menu_container a {
	color: #2a2520;
}

/* ===========================
   CART
   =========================== */

body.woocommerce-cart {
	background-color: var(--cream);
}

body.woocommerce-cart #page,
body.woocommerce-cart #content,
body.woocommerce-cart .site-content,
body.woocommerce-cart .entry-content,
body.woocommerce-cart .woocommerce,
body.woocommerce-cart form.woocommerce-cart-form {
	padding: 0;
	margin: 0;
}

.woocommerce-cart .entry-header {
	display: block;
	padding-left: 10%;
	font-family: 'Instrument Serif', serif;
	font-size: clamp(48px, 3vw, 90px);
	font-style: italic;
	font-weight: 400;
	color: black;
	line-height: 1;
	padding-top: 150px;
	padding-bottom: 30px;
}

body.woocommerce-cart .woocommerce {
	padding: 0 10% 3% 10% !important;
	display: grid !important;
	grid-template-columns: 1fr 400px !important;
	gap: 8vw !important;
	align-items: start !important;
	max-width: 100% !important;
	box-sizing: border-box !important;
}

/* Notices */
body.woocommerce-cart .woocommerce-notices-wrapper {
	grid-column: 1 / -1;
	display: none;
}

/* Blocking overlay */
body.woocommerce-cart .blockUI.blockOverlay {
	background: var(--cream) !important;
	opacity: 0.5 !important;
}

/* ---- Cart table ---- */

body.woocommerce-cart table.shop_table {
	width: 100%;
	border-collapse: collapse;
	background: none;
	border: none;
	table-layout: fixed;
}

body.woocommerce-cart table.shop_table .product-remove { width: 3% !important; min-width: 30px !important; }
body.woocommerce-cart table.shop_table .product-thumbnail { width: 14% !important; min-width: 120px !important; }
body.woocommerce-cart table.shop_table .product-name { width: auto !important; min-width: 200px !important; }
body.woocommerce-cart table.shop_table .product-price { display: none !important; }
body.woocommerce-cart table.shop_table .product-quantity { width: 14% !important; min-width: 120px !important; }
body.woocommerce-cart table.shop_table .product-subtotal { width: 10% !important; min-width: 80px !important; }

body.woocommerce-cart table.shop_table thead th {
	font-family: 'Inter', sans-serif;
	font-size: 10px;
	color: rgba(42,37,32,0.35);
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 0 0 24px;
	border-bottom: 1px solid rgba(42,37,32,0.12);
	text-align: left;
	font-weight: 400;
	background: none;
}

body.woocommerce-cart table.shop_table tbody td {
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	color: #2a2520;
	padding: 32px 0;
	border-bottom: 1px solid rgba(42,37,32,0.08);
	vertical-align: middle;
	background: none;
}

/* Thumbnail */
body.woocommerce-cart table.shop_table .product-thumbnail {
	padding-right: 24px;
}

body.woocommerce-cart table.shop_table .product-thumbnail img {
	width: 100%;
	height: auto;
	max-width: 100%;
	object-fit: contain;
	background: #d3c8c1;
	padding: 8px;
	box-sizing: border-box;
	display: block;
}

/* Product name */
body.woocommerce-cart table.shop_table .product-name a {
	font-family: 'Instrument Serif', serif;
	font-size: clamp(22px, 2vw, 32px);
	font-weight: 400;
	color: #2a2520;
	text-decoration: none;
	transition: color 0.2s;
	line-height: 1.15;
	display: block;
}

body.woocommerce-cart table.shop_table .product-name a:hover {
	color: var(--orange);
}

body.woocommerce-cart table.shop_table .product-name .variation {
	font-family: 'Inter', sans-serif;
	font-size: 11px;
	color: rgba(42,37,32,0.4);
	margin-top: 6px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* Subtotal */
body.woocommerce-cart table.shop_table .product-subtotal .woocommerce-Price-amount {
	color: var(--orange);
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	font-weight: 400;
}

/* Quantity */
body.woocommerce-cart .quantity {
	display: inline-flex;
	align-items: center;
	border: 1px solid rgba(42,37,32,0.2);
	width: fit-content;
	border-radius: 999px;
	background: transparent;
	overflow: hidden;
}

body.woocommerce-cart .quantity .qty {
	width: 40px;
	height: 36px;
	border: none;
	background: transparent;
	text-align: center;
	font-size: 13px;
	font-family: 'Inter', sans-serif;
	color: #2a2520;
	padding: 0;
	outline: none;
	-moz-appearance: textfield;
}

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

body.woocommerce-cart .qty-btn {
	width: 32px;
	height: 36px;
	border: none;
	background: transparent;
	cursor: pointer;
	font-size: 1rem;
	color: #2a2520;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.15s;
}

body.woocommerce-cart .qty-btn:hover {
	background: rgba(42,37,32,0.06);
}

/* Remove button */
body.woocommerce-cart table.shop_table .product-remove {
	width: 24px !important;
	min-width: 0 !important;
	max-width: 24px !important;
	white-space: nowrap;
}

body.woocommerce-cart table.shop_table .product-remove a {
	font-size: 22px;
	color: rgba(42,37,32,0.2) !important;
	text-decoration: none;
	transition: color 0.2s;
	display: block;
	line-height: 1;
}

body.woocommerce-cart table.shop_table .product-remove a:hover {
	color: var(--orange) !important;
}

/* Actions row */
body.woocommerce-cart .actions {
	display: flex !important;
	justify-content: space-between;
	align-items: center;
	padding: 28px 0 0;
	flex-wrap: wrap;
	gap: 16px;
	background: none;
	border: none;
}

body.woocommerce-cart .actions [name="update_cart"] {
	display: none !important;
}

body.woocommerce-cart .actions .coupon {
	display: flex;
	gap: 12px;
	align-items: center;
}

body.woocommerce-cart .actions .coupon input[type="text"] {
	background: transparent;
	border: 1px solid rgba(42,37,32,0.2);
	border-radius: 999px;
	color: #2a2520;
	font-family: 'Inter', sans-serif;
	font-size: 12px;
	padding: 10px 20px;
	outline: none;
	transition: border-color 0.2s;
	width: 180px;
}

body.woocommerce-cart .actions .coupon input[type="text"]::placeholder {
	color: rgba(42,37,32,0.3);
}

body.woocommerce-cart .actions .coupon input[type="text"]:focus {
	border-color: var(--orange);
}

body.woocommerce-cart .actions .coupon .button {
	display: inline-block;
	border: 1px solid rgba(42,37,32,0.25);
	color: #2a2520;
	background: transparent;
	border-radius: 999px;
	padding: 10px 24px;
	font-family: 'Inter', sans-serif;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	cursor: pointer;
	transition: border-color 0.2s, color 0.2s;
	text-decoration: none;
	box-shadow: none;
}

body.woocommerce-cart .actions .coupon .button:hover {
	border-color: var(--orange);
	color: var(--orange);
}

/* ---- Cart totals ---- */

body.woocommerce-cart .cart_totals {
	padding: 0;
	position: sticky;
	top: 120px;
}

body.woocommerce-cart .cart_totals h2 {
	font-family: 'Instrument Serif', serif;
	font-size: clamp(32px, 3vw, 48px);
	font-style: italic;
	font-weight: 400;
	color: #2a2520;
	margin: 0 0 32px;
	line-height: 1.1;
}

body.woocommerce-cart .cart_totals table.shop_table {
	background: none !important;
	border: none !important;
	border-top: 1px solid rgba(42,37,32,0.12) !important;
	border-radius: 0 !important;
	padding: 0 !important;
	width: 100%;
	border-collapse: collapse !important;
	table-layout: auto !important;
}

body.woocommerce-cart .cart_totals table.shop_table th {
	font-family: 'Inter', sans-serif;
	font-size: 10px;
	color: rgba(42,37,32,0.4);
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 400;
	padding: 20px 0;
	border-bottom: 1px solid rgba(42,37,32,0.08);
	text-align: left;
	vertical-align: top;
	background: none;
	width: 40%;
}

body.woocommerce-cart .cart_totals table.shop_table td {
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	color: #2a2520;
	padding: 20px 0;
	border-bottom: 1px solid rgba(42,37,32,0.08);
	text-align: right;
	background: none;
}

body.woocommerce-cart .cart_totals .order-total th,
body.woocommerce-cart .cart_totals .order-total td {
	color: #2a2520;
	font-size: 16px;
	border-bottom: none;
	padding-top: 24px;
}

body.woocommerce-cart .cart_totals .order-total td {
	font-family: 'Instrument Serif', serif;
	font-size: clamp(22px, 2vw, 30px);
	font-style: italic;
	color: #2a2520;
}

body.woocommerce-cart .cart_totals .woocommerce-Price-amount {
	color: var(--orange);
}

body.woocommerce-cart .cart_totals .wc-proceed-to-checkout {
	padding: 0;
	margin-top: 32px;
}

body.woocommerce-cart .cart_totals .wc-proceed-to-checkout .checkout-button {
	display: inline-block !important;
	text-align: center;
	background: var(--orange) !important;
	color: white !important;
	border: none !important;
	border-radius: 999px !important;
	padding: 18px 28px !important;
	font-family: 'Inter', sans-serif !important;
	font-size: 11px !important;
	text-transform: uppercase !important;
	letter-spacing: 1px !important;
	cursor: pointer !important;
	text-decoration: none !important;
	transition: opacity 0.2s !important;
	box-shadow: none !important;
}

body.woocommerce-cart .cart_totals .wc-proceed-to-checkout .checkout-button:hover {
	opacity: 0.85 !important;
}

/* ---- Cross-sells ---- */

body.woocommerce-cart .cross-sells {
	margin-top: 80px;
	grid-column: 1 / -1;
}

body.woocommerce-cart .cross-sells h2 {
	font-family: 'Instrument Serif', serif;
	font-size: clamp(32px, 3vw, 52px);
	font-style: italic;
	font-weight: 400;
	color: #2a2520;
	margin: 0 0 40px;
	line-height: 1.1;
}

body.woocommerce-cart .cross-sells ul.products {
	display: grid !important;
	grid-template-columns: repeat(3, 1fr) !important;
	gap: 5% !important;
	list-style: none !important;
	padding: 0 !important;
	margin: 0 !important;
}

body.woocommerce-cart .cross-sells ul.products li.product a {
	text-decoration: none;
	color: inherit;
	display: block;
}

body.woocommerce-cart .cross-sells ul.products li.product img {
	width: 100%;
	aspect-ratio: 1/1;
	object-fit: contain;
	background: #d3c8c1;
	padding: 10%;
	box-sizing: border-box;
	display: block;
	margin-bottom: 16px;
	transition: transform 0.4s ease;
}

body.woocommerce-cart .cross-sells ul.products li.product a:hover img {
	transform: scale(1.05);
}

body.woocommerce-cart .cross-sells ul.products li.product .woocommerce-loop-product__title {
	font-family: 'Instrument Serif', serif;
	font-size: clamp(18px, 1.8vw, 28px);
	font-weight: 400;
	color: #2a2520;
	margin: 0 0 6px;
	line-height: 1.2;
}

body.woocommerce-cart .cross-sells ul.products li.product .price {
	color: var(--orange);
	font-family: 'Inter', sans-serif;
	font-size: 14px;
}

body.woocommerce-cart .cross-sells ul.products li.product .button {
	display: none !important;
}

/* ---- Cart Responsive ---- */

@media (max-width: 768px) {
	.woocommerce-cart .entry-header {
		padding-left: 5%;
		padding-top: 100px;
	}

	body.woocommerce-cart .woocommerce {
		grid-template-columns: 1fr !important;
		padding: 0 5% 10% 5% !important;
		gap: 48px !important;
	}

	body.woocommerce-cart .cart_totals {
		position: static;
	}

	body.woocommerce-cart .cross-sells ul.products {
		grid-template-columns: repeat(2, 1fr) !important;
	}

	body.woocommerce-cart .actions {
		flex-direction: column;
		align-items: flex-start;
	}

	body.woocommerce-cart .actions .coupon {
		flex-wrap: wrap;
	}

	body.woocommerce-cart .actions .coupon input[type="text"] {
		width: 100%;
	}

	body.woocommerce-cart table.shop_table {
		table-layout: auto;
	}

	body.woocommerce-cart table.shop_table thead {
		display: none;
	}

	body.woocommerce-cart table.shop_table tbody tr {
		display: grid;
		grid-template-columns: 80px 1fr 40px;
		gap: 8px;
		padding: 24px 0;
		border-bottom: 1px solid rgba(42,37,32,0.08);
	}

	body.woocommerce-cart table.shop_table tbody td {
		border: none;
		padding: 0;
	}

	body.woocommerce-cart table.shop_table .product-remove {
		grid-column: 3;
		grid-row: 1;
		text-align: right;
		width: auto !important;
		min-width: 0 !important;
		max-width: none !important;
	}

	body.woocommerce-cart table.shop_table .product-thumbnail {
		grid-column: 1;
		grid-row: 1 / 4;
		width: auto !important;
		min-width: 0 !important;
		padding-right: 12px;
	}

	body.woocommerce-cart table.shop_table .product-thumbnail img {
		width: 80px;
		height: 80px;
	}

	body.woocommerce-cart table.shop_table .product-name {
		grid-column: 2;
		grid-row: 1;
		width: auto !important;
		min-width: 0 !important;
	}

	body.woocommerce-cart table.shop_table .product-price {
		display: none !important;
	}

	body.woocommerce-cart table.shop_table .product-quantity {
		grid-column: 2;
		grid-row: 2;
		width: auto !important;
		min-width: 0 !important;
	}

	body.woocommerce-cart table.shop_table .product-subtotal {
		grid-column: 2;
		grid-row: 3;
		width: auto !important;
		min-width: 0 !important;
	}
}


/* ===========================
   CHECKOUT
   =========================== */

body.woocommerce-checkout #page,
body.woocommerce-checkout #content,
body.woocommerce-checkout .site-content,
body.woocommerce-checkout .entry-content,
body.woocommerce-checkout .woocommerce {
	padding: 0;
	margin: 0;
}

.woocommerce-checkout .entry-header {
	display: block;
	padding-left: 10%;
	font-family: 'Instrument Serif', serif;
	font-size: clamp(48px, 3vw, 90px);
	font-style: italic;
	font-weight: 400;
	color: black;
	line-height: 1;
	padding-top: 150px;
	padding-bottom: 0;
}

body.woocommerce-checkout .woocommerce {
	display: block !important;
	padding: 0 10% 8% 10% !important;
	max-width: 100% !important;
	box-sizing: border-box !important;
}

/* Hide coupon toggle */
body.woocommerce-checkout .woocommerce-form-coupon-toggle {
	display: none;
}

body.woocommerce-checkout .woocommerce-notices-wrapper {
	margin-bottom: 16px;
}

body.woocommerce-checkout .woocommerce-message,
body.woocommerce-checkout .woocommerce-info,
body.woocommerce-checkout .woocommerce-error {
	background: rgba(0,0,0,0.04);
	border-top: 3px solid var(--orange);
	border-left: none;
	border-right: none;
	border-bottom: none;
	color: #2a2520;
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	padding: 14px 20px;
	margin-bottom: 24px;
	list-style: none;
	box-shadow: none;
}

/* ---- Checkout form grid ---- */

body.woocommerce-checkout form.checkout {
	display: grid !important;
	grid-template-columns: 1fr 400px !important;
	gap: 8vw !important;
	align-items: start !important;
	width: 100% !important;
}

body.woocommerce-checkout form.checkout .col2-set {
	grid-column: 1;
	grid-row: 1;
	display: block;
}

body.woocommerce-checkout form.checkout #payment {
	grid-column: 1;
	grid-row: 2;
}

body.woocommerce-checkout form.checkout #order_review_heading {
	grid-column: 2;
	grid-row: 1;
	margin-top: -100px;
}

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

/* Headings */
body.woocommerce-checkout h3,
body.woocommerce-checkout h3 label {
	font-family: 'Instrument Serif', serif;
	font-size: clamp(28px, 2.5vw, 40px);
	font-weight: 400;
	font-style: italic;
	color: #2a2520;
	margin: 0 0 24px;
}

/* Form fields */
body.woocommerce-checkout .col2-set {
	display: block;
}

body.woocommerce-checkout .form-row {
	margin-bottom: 16px;
}

body.woocommerce-checkout .form-row label {
	font-family: 'Inter', sans-serif;
	font-size: 11px;
	color: rgba(42,37,32,0.55);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	display: block;
	margin-bottom: 6px;
	font-style: normal;
}

body.woocommerce-checkout .form-row label .required {
	color: var(--orange);
}

body.woocommerce-checkout .form-row input[type="text"],
body.woocommerce-checkout .form-row input[type="email"],
body.woocommerce-checkout .form-row input[type="tel"],
body.woocommerce-checkout .form-row input[type="password"],
body.woocommerce-checkout .form-row select,
body.woocommerce-checkout .form-row textarea {
	width: 100%;
	background: rgba(42,37,32,0.05);
	border: 1px solid rgba(42,37,32,0.2);
	border-radius: 4px;
	color: #2a2520;
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	padding: 12px 16px;
	box-sizing: border-box;
	outline: none;
	transition: border-color 0.2s, background 0.2s;
	appearance: none;
	-webkit-appearance: none;
	box-shadow: none;
}

body.woocommerce-checkout .form-row input::placeholder,
body.woocommerce-checkout .form-row textarea::placeholder {
	color: rgba(42,37,32,0.3);
}

body.woocommerce-checkout .form-row input:focus,
body.woocommerce-checkout .form-row select:focus,
body.woocommerce-checkout .form-row textarea:focus {
	border-color: var(--orange);
	background: rgba(42,37,32,0.08);
}

/* Order review table */
body.woocommerce-checkout table.shop_table {
	width: 100%;
	border-collapse: collapse;
	background: none;
}

body.woocommerce-checkout table.shop_table thead th {
	font-family: 'Inter', sans-serif;
	font-size: 10px;
	color: rgba(42,37,32,0.35);
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 0 0 16px;
	border-bottom: 1px solid rgba(42,37,32,0.12);
	text-align: left;
	font-weight: 400;
	background: none;
}

body.woocommerce-checkout table.shop_table tbody td {
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	color: #2a2520;
	padding: 16px 0;
	border-bottom: 1px solid rgba(42,37,32,0.08);
	background: none;
}

body.woocommerce-checkout table.shop_table tfoot th,
body.woocommerce-checkout table.shop_table tfoot td {
	font-family: 'Inter', sans-serif;
	font-size: 10px;
	color: rgba(42,37,32,0.4);
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 16px 0;
	border-bottom: 1px solid rgba(42,37,32,0.06);
	background: none;
}

body.woocommerce-checkout table.shop_table .order-total th,
body.woocommerce-checkout table.shop_table .order-total td {
	border-top: 1px solid rgba(42,37,32,0.12);
	border-bottom: none;
	padding-top: 20px;
}

body.woocommerce-checkout table.shop_table .order-total td {
	font-family: 'Instrument Serif', serif;
	font-size: clamp(22px, 2vw, 30px);
	font-style: italic;
	color: #2a2520;
	text-align: right;
}

body.woocommerce-checkout table.shop_table .woocommerce-Price-amount {
	color: var(--orange);
}

/* Select2 — country dropdown */
body.woocommerce-checkout .select2-container .select2-selection--single {
	height: auto !important;
	background: rgba(42,37,32,0.05) !important;
	border: 1px solid rgba(42,37,32,0.2) !important;
	border-radius: 4px !important;
	outline: none !important;
	box-shadow: none !important;
}

body.woocommerce-checkout .select2-container .select2-selection--single .select2-selection__rendered {
	font-family: 'Inter', sans-serif !important;
	font-size: 13px !important;
	color: #2a2520 !important;
	padding: 12px 40px 12px 16px !important;
	line-height: 1.5 !important;
}

body.woocommerce-checkout .select2-container .select2-selection--single .select2-selection__arrow {
	height: 100% !important;
	top: 0 !important;
	right: 12px !important;
}

body.woocommerce-checkout .select2-container--open .select2-selection--single {
	border-color: var(--orange) !important;
	background: rgba(42,37,32,0.08) !important;
}

body.woocommerce-checkout .select2-dropdown {
	background: var(--cream);
	border: 1px solid rgba(42,37,32,0.2) !important;
	border-radius: 4px !important;
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	color: #2a2520;
}

body.woocommerce-checkout .select2-results__option {
	padding: 10px 16px;
	color: #2a2520;
	background: transparent;
}

body.woocommerce-checkout .select2-results__option--highlighted {
	background: rgba(42,37,32,0.08) !important;
	color: #2a2520 !important;
}

body.woocommerce-checkout .select2-container--default .select2-results__option[aria-selected="true"],
body.woocommerce-checkout .select2-container--default .select2-results__option[data-selected="true"] {
	background-color: transparent !important;
	color: var(--orange) !important;
}

body.woocommerce-checkout .select2-search--dropdown .select2-search__field {
	border: none;
	border-bottom: 1px solid rgba(42,37,32,0.15);
	border-radius: 0;
	padding: 10px 16px;
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	outline: none;
	background: transparent;
	color: #2a2520;
	width: 100%;
	box-sizing: border-box;
}

/* Payment */
body.woocommerce-checkout #payment {
	margin-top: 32px;
	background: none;
}

body.woocommerce-checkout #payment ul.payment_methods {
	list-style: none;
	margin: 0;
	padding: 0;
	background: none;
	border: none;
}

body.woocommerce-checkout #payment ul.payment_methods li {
	padding: 14px 0;
	border-bottom: 1px solid rgba(42,37,32,0.1);
}

body.woocommerce-checkout #payment ul.payment_methods li label {
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	color: #2a2520;
	cursor: pointer;
	text-transform: none;
	letter-spacing: 0;
	display: inline;
	margin-bottom: 0;
}

body.woocommerce-checkout #payment ul.payment_methods li input[type="radio"] {
	accent-color: var(--orange);
	margin-right: 8px;
}

body.woocommerce-checkout #payment div.payment_box {
	background: rgba(42,37,32,0.04);
	border-radius: 4px;
	padding: 14px 16px;
	margin-top: 12px;
	font-family: 'Inter', sans-serif;
	font-size: 12px;
	color: rgba(42,37,32,0.55);
	line-height: 1.7;
}

body.woocommerce-checkout #place_order {
	display: inline-block !important;
	background: var(--orange) !important;
	color: white !important;
	border: none !important;
	border-radius: 999px !important;
	padding: 18px 28px !important;
	font-family: 'Inter', sans-serif !important;
	font-size: 11px !important;
	text-transform: uppercase !important;
	letter-spacing: 1px !important;
	cursor: pointer !important;
	margin-top: 24px !important;
	transition: opacity 0.2s !important;
	box-shadow: none !important;
}

body.woocommerce-checkout #place_order:hover {
	opacity: 0.85 !important;
}

/* ---- Checkout Responsive ---- */

@media (max-width: 768px) {
	.woocommerce-checkout .entry-header {
		padding-left: 5%;
		padding-top: 100px;
	}

	body.woocommerce-checkout .woocommerce {
		padding: 0 5% 10% 5% !important;
	}

	body.woocommerce-checkout form.checkout {
		display: block !important;
	}

	body.woocommerce-checkout form.checkout .col2-set {
		display: block;
		width: 100%;
	}

	body.woocommerce-checkout form.checkout #payment {
		margin-top: 32px;
	}

	body.woocommerce-checkout form.checkout #order_review_heading,
	body.woocommerce-checkout form.checkout #order_review {
		position: static;
		margin-top: 40px;
		width: 100%;
	}
}


/* ===========================
   MY ACCOUNT
   =========================== */

body.woocommerce-account #page,
body.woocommerce-account #content,
body.woocommerce-account .site-content,
body.woocommerce-account .entry-content,
body.woocommerce-account .woocommerce {
	padding: 0;
	margin: 0;
}

body.woocommerce-account .woocommerce {
	display: grid !important;
	grid-template-columns: 280px 1fr !important;
	gap: 5vw !important;
	padding: 140px 10% 8% 10% !important;
	align-items: start !important;
	max-width: 100% !important;
	box-sizing: border-box !important;
}

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

body.woocommerce-account .woocommerce-MyAccount-navigation ul {
	list-style: none;
	margin: 0;
	padding: 0 30px 0 0;
	border-right: 1px solid rgba(255,103,0,0.4);
	min-height: 100%;
}

body.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
	display: block;
	font-family: 'Instrument Serif', serif;
	font-size: clamp(18px, 1.8vw, 26px);
	font-style: italic;
	font-weight: 400;
	color: rgba(42,37,32,0.4) !important;
	text-decoration: none !important;
	padding: 12px 0;
	border-bottom: 1px solid rgba(42,37,32,0.08);
	transition: color 0.2s;
}

body.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover {
	color: var(--orange) !important;
}

body.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a {
	color: #2a2520 !important;
	font-weight: 400;
}

body.woocommerce-account .woocommerce-MyAccount-content a:not(.button) {
	color: #2a2520 !important;
	text-decoration: none !important;
	border-bottom: 1px solid rgba(42,37,32,0.2);
	transition: color 0.2s, border-color 0.2s;
}

body.woocommerce-account .woocommerce-MyAccount-content a:not(.button):hover {
	color: var(--orange) !important;
	border-color: var(--orange);
}

body.woocommerce-account .woocommerce-MyAccount-content {
	max-width: none;
}

body.woocommerce-account .woocommerce-EditAccountForm,
body.woocommerce-account .woocommerce-address-fields {
	max-width: 600px;
}

body.woocommerce-account .woocommerce-MyAccount-content p,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-info,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-message,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-error {
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	color: rgba(42,37,32,0.7);
	line-height: 1.8;
	background: none;
	border: none;
	box-shadow: none;
	padding: 0;
	margin-bottom: 16px;
}

body.woocommerce-account .woocommerce-MyAccount-content h2 {
	font-family: 'Instrument Serif', serif;
	font-size: clamp(24px, 3vw, 40px);
	font-style: italic;
	font-weight: 400;
	color: #2a2520;
	margin: 0 0 24px;
}

body.woocommerce-account table.shop_table {
	width: 100%;
	border-collapse: collapse;
	background: none;
}

body.woocommerce-account table.shop_table th {
	font-family: 'Inter', sans-serif;
	font-size: 11px;
	color: rgba(42,37,32,0.4);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	padding: 0 16px 14px 0;
	border-bottom: 1px solid rgba(42,37,32,0.15);
	text-align: left;
	font-weight: 400;
	background: none;
}

body.woocommerce-account table.shop_table td {
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	color: rgba(42,37,32,0.75);
	padding: 16px 16px 16px 0;
	border-bottom: 1px solid rgba(42,37,32,0.08);
	vertical-align: middle;
	background: none;
}

body.woocommerce-account table.shop_table td .button,
body.woocommerce-account table.shop_table td a.button {
	display: inline-block;
	border: 1px solid rgba(42,37,32,0.25);
	color: #2a2520 !important;
	background: transparent;
	border-radius: 999px;
	padding: 6px 18px;
	font-family: 'Inter', sans-serif;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	text-decoration: none;
	transition: border-color 0.2s, color 0.2s;
	box-shadow: none;
}

body.woocommerce-account table.shop_table td .button:hover,
body.woocommerce-account table.shop_table td a.button:hover {
	border-color: var(--orange);
	color: var(--orange) !important;
}

body.woocommerce-account mark.order-status {
	background: none;
	font-family: 'Inter', sans-serif;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: var(--orange);
	padding: 0;
}

body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses {
	max-width: 100%;
}

body.woocommerce-account .woocommerce-Addresses {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}

body.woocommerce-account .woocommerce-Address {
	background: rgba(42,37,32,0.05);
	border: 1px solid rgba(42,37,32,0.12);
	border-radius: 4px;
	padding: 28px;
}

body.woocommerce-account .woocommerce-Address-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 16px;
}

body.woocommerce-account .woocommerce-Address-title h3 {
	font-family: 'Instrument Serif', serif;
	font-size: 22px;
	font-style: italic;
	font-weight: 400;
	color: #2a2520;
	margin: 0;
}

body.woocommerce-account .woocommerce-Address-title .edit {
	font-family: 'Inter', sans-serif;
	font-size: 11px;
	color: rgba(42,37,32,0.45);
	text-decoration: none;
	border: 1px solid rgba(42,37,32,0.2);
	border-radius: 999px;
	padding: 4px 14px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: color 0.2s, border-color 0.2s;
}

body.woocommerce-account .woocommerce-Address-title .edit:hover {
	color: var(--orange);
	border-color: var(--orange);
}

body.woocommerce-account address {
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	color: rgba(42,37,32,0.6);
	font-style: normal;
	line-height: 1.9;
}

body.woocommerce-account .woocommerce-form .form-row,
body.woocommerce-account .edit-account .form-row,
body.woocommerce-account .woocommerce-address-fields .form-row {
	margin-bottom: 16px;
}

body.woocommerce-account .woocommerce-form .form-row label,
body.woocommerce-account .edit-account .form-row label,
body.woocommerce-account .woocommerce-address-fields .form-row label {
	font-family: 'Inter', sans-serif;
	font-size: 11px;
	color: rgba(42,37,32,0.55);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	display: block;
	margin-bottom: 6px;
}

body.woocommerce-account .woocommerce-form input[type="text"],
body.woocommerce-account .woocommerce-form input[type="email"],
body.woocommerce-account .woocommerce-form input[type="password"],
body.woocommerce-account .woocommerce-address-fields input[type="text"],
body.woocommerce-account .woocommerce-address-fields input[type="tel"],
body.woocommerce-account .woocommerce-address-fields input[type="email"],
body.woocommerce-account .woocommerce-address-fields select {
	width: 100%;
	max-width: 100%;
	background: rgba(42,37,32,0.05);
	border: 1px solid rgba(42,37,32,0.2);
	border-radius: 4px;
	color: #2a2520;
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	padding: 12px 16px;
	box-sizing: border-box;
	outline: none;
	transition: border-color 0.2s;
	appearance: none;
	-webkit-appearance: none;
	box-shadow: none;
}

body.woocommerce-account .woocommerce-form input::placeholder,
body.woocommerce-account .woocommerce-address-fields input::placeholder {
	color: rgba(42,37,32,0.3);
}

body.woocommerce-account .woocommerce-form input:focus,
body.woocommerce-account .woocommerce-address-fields input:focus,
body.woocommerce-account .woocommerce-address-fields select:focus {
	border-color: var(--orange);
}

body.woocommerce-account .woocommerce-form .button,
body.woocommerce-account .woocommerce-address-fields + p .button,
body.woocommerce-account p .button {
	display: inline-block;
	background: var(--orange);
	color: white !important;
	border: none;
	border-radius: 999px;
	padding: 12px 32px;
	font-family: 'Inter', sans-serif;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	cursor: pointer;
	text-decoration: none;
	transition: opacity 0.2s;
	margin-top: 8px;
	box-shadow: none;
}

body.woocommerce-account .woocommerce-form .button:hover,
body.woocommerce-account p .button:hover {
	opacity: 0.85;
}

body.woocommerce-account .u-columns {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5vw;
}

body.woocommerce-account .u-column1,
body.woocommerce-account .u-column2 {
	background: rgba(42,37,32,0.05);
	border: 1px solid rgba(42,37,32,0.1);
	border-radius: 4px;
	padding: 40px;
}

body.woocommerce-account .u-column1 h2,
body.woocommerce-account .u-column2 h2 {
	font-family: 'Instrument Serif', serif;
	font-size: 32px;
	font-style: italic;
	font-weight: 400;
	color: #2a2520;
	margin: 0 0 28px;
}

body.woocommerce-account .lost_password {
	margin-top: 16px;
}

body.woocommerce-account .lost_password a {
	font-family: 'Inter', sans-serif;
	font-size: 12px;
	color: rgba(42,37,32,0.4);
	text-decoration: none;
	border-bottom: 1px solid rgba(42,37,32,0.15);
	transition: color 0.2s, border-color 0.2s;
}

body.woocommerce-account .lost_password a:hover {
	color: var(--orange);
	border-color: var(--orange);
}

@media (max-width: 768px) {
	body.woocommerce-account .woocommerce {
		grid-template-columns: 1fr !important;
		padding: 100px 5% 10% 5% !important;
	}

	body.woocommerce-account .u-columns,
	body.woocommerce-account .woocommerce-Addresses {
		grid-template-columns: 1fr;
	}

	body.woocommerce-account .woocommerce-MyAccount-navigation ul {
		border-right: none;
		padding-right: 0;
		display: flex;
		flex-wrap: wrap;
		gap: 6px;
		padding-bottom: 20px;
		margin-bottom: 30px;
		border-bottom: 1px solid rgba(255,103,0,0.3);
	}

	body.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
		border: 1px solid rgba(42,37,32,0.15);
		border-radius: 999px;
		padding: 6px 16px;
		font-size: 12px;
	}

	body.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a {
		border-color: var(--orange);
		color: var(--orange);
	}
}


/* ---- Edit Account Form ---- */
body.woocommerce-account .woocommerce-EditAccountForm {
	max-width: 600px;
}

body.woocommerce-account .woocommerce-EditAccountForm .woocommerce-form-row {
	margin-bottom: 16px;
}

body.woocommerce-account .woocommerce-EditAccountForm label {
	font-family: 'Inter', sans-serif;
	font-size: 11px;
	color: rgba(42,37,32,0.55);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	display: block;
	margin-bottom: 6px;
}

body.woocommerce-account .woocommerce-EditAccountForm .input-text {
	width: 100%;
	max-width: 480px;
	background: rgba(42,37,32,0.05);
	border: 1px solid rgba(42,37,32,0.2);
	border-radius: 4px;
	color: #2a2520;
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	padding: 12px 16px;
	box-sizing: border-box;
	outline: none;
	transition: border-color 0.2s;
	appearance: none;
	box-shadow: none;
}

body.woocommerce-account .woocommerce-EditAccountForm .input-text:focus {
	border-color: var(--orange);
	background: rgba(42,37,32,0.08);
}

body.woocommerce-account .woocommerce-EditAccountForm fieldset {
	border: none;
	border-top: 1px solid rgba(42,37,32,0.1);
	padding: 24px 0 0;
	margin: 24px 0 0;
}

body.woocommerce-account .woocommerce-EditAccountForm fieldset legend {
	font-family: 'Instrument Serif', serif;
	font-size: clamp(20px, 2vw, 28px);
	font-style: italic;
	font-weight: 400;
	color: #2a2520;
	padding: 0 16px 0 0;
}

body.woocommerce-account .woocommerce-EditAccountForm .password-input {
	position: relative;
	display: block;
	max-width: 480px;
}

body.woocommerce-account .woocommerce-EditAccountForm .password-input .input-text {
	max-width: 100%;
	padding-right: 48px;
}

body.woocommerce-account .woocommerce-EditAccountForm .show-password-input {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	width: 20px;
	height: 20px;
	opacity: 0.4;
	transition: opacity 0.2s;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232a2520' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: contain;
}

body.woocommerce-account .woocommerce-EditAccountForm .show-password-input:hover {
	opacity: 1;
}

body.woocommerce-account .woocommerce-EditAccountForm #account_display_name_description {
	display: block;
	font-family: 'Inter', sans-serif;
	font-size: 11px;
	color: rgba(42,37,32,0.4);
	margin-top: 6px;
}

body.woocommerce-account .woocommerce-EditAccountForm .form-row-first,
body.woocommerce-account .woocommerce-EditAccountForm .form-row-last {
	display: inline-block;
	width: calc(50% - 12px);
	vertical-align: top;
}

body.woocommerce-account .woocommerce-EditAccountForm .form-row-first {
	margin-right: 24px;
}

body.woocommerce-account .woocommerce-EditAccountForm .form-row-first .input-text,
body.woocommerce-account .woocommerce-EditAccountForm .form-row-last .input-text {
	max-width: 100%;
}

/* ---- Account address fields ---- */
body.woocommerce-account .woocommerce-address-fields .form-row,
body.woocommerce-account .woocommerce-billing-fields .form-row {
	margin-bottom: 16px;
}

body.woocommerce-account .woocommerce-address-fields label,
body.woocommerce-account .woocommerce-billing-fields label {
	font-family: 'Inter', sans-serif;
	font-size: 11px;
	color: rgba(42,37,32,0.55);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	display: block;
	margin-bottom: 6px;
}

body.woocommerce-account .woocommerce-address-fields .input-text,
body.woocommerce-account .woocommerce-billing-fields .input-text {
	width: 100%;
	max-width: 100%;
	background: rgba(42,37,32,0.05);
	border: 1px solid rgba(42,37,32,0.2);
	border-radius: 4px;
	color: #2a2520;
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	padding: 12px 16px;
	box-sizing: border-box;
	outline: none;
	transition: border-color 0.2s;
	appearance: none;
	box-shadow: none;
}

body.woocommerce-account .woocommerce-address-fields .input-text:focus,
body.woocommerce-account .woocommerce-billing-fields .input-text:focus {
	border-color: var(--orange);
	background: rgba(42,37,32,0.08);
}

/* Select2 in address forms */
body.woocommerce-account .select2-container .select2-selection--single {
	height: auto !important;
	background: rgba(42,37,32,0.05) !important;
	border: 1px solid rgba(42,37,32,0.2) !important;
	border-radius: 4px !important;
	outline: none !important;
	box-shadow: none !important;
}

body.woocommerce-account .select2-container .select2-selection--single .select2-selection__rendered {
	font-family: 'Inter', sans-serif !important;
	font-size: 13px !important;
	color: #2a2520 !important;
	padding: 12px 40px 12px 16px !important;
	line-height: 1.5 !important;
}

body.woocommerce-account .select2-container .select2-selection--single .select2-selection__arrow {
	height: 100% !important;
	top: 0 !important;
	right: 12px !important;
}

body.woocommerce-account .select2-container--open .select2-selection--single {
	border-color: var(--orange) !important;
	background: rgba(42,37,32,0.08) !important;
}

body.woocommerce-account .select2-dropdown {
	background: var(--cream);
	border: 1px solid rgba(42,37,32,0.2) !important;
	border-radius: 4px !important;
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	color: #2a2520;
}

body.woocommerce-account .select2-results__option {
	padding: 10px 16px;
	color: #2a2520;
	background: transparent;
}

body.woocommerce-account .select2-results__option--highlighted {
	background: rgba(42,37,32,0.08) !important;
	color: #2a2520 !important;
}

body.woocommerce-account .select2-container--default .select2-results__option[aria-selected="true"],
body.woocommerce-account .select2-container--default .select2-results__option[data-selected="true"] {
	background-color: transparent !important;
	color: var(--orange) !important;
}

body.woocommerce-account .select2-search--dropdown .select2-search__field {
	border: none;
	border-bottom: 1px solid rgba(42,37,32,0.15);
	border-radius: 0;
	padding: 10px 16px;
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	outline: none;
	background: transparent;
	color: #2a2520;
	width: 100%;
	box-sizing: border-box;
}

/* ===========================
   LOGIN PAGE
   =========================== */

/* Center the whole login wrapper */
body.woocommerce-account .woocommerce:has(.woocommerce-form-login) {
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
	padding-top: 160px !important;
	grid-template-columns: 1fr !important;
}

body.woocommerce-account .woocommerce:has(.woocommerce-form-login) > h2 {
	font-family: 'Instrument Serif', serif;
	font-size: clamp(32px, 3vw, 52px);
	font-style: italic;
	font-weight: 400;
	color: #2a2520;
	margin: 0 0 32px;
	width: 100%;
	max-width: 480px;
}

body.woocommerce-account .woocommerce-form-login {
	width: 100%;
	max-width: 480px;
}

body.woocommerce-account .woocommerce-form-login .form-row {
	margin-bottom: 16px;
}

body.woocommerce-account .woocommerce-form-login label {
	font-family: 'Inter', sans-serif;
	font-size: 11px;
	color: rgba(42,37,32,0.55);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	display: block;
	margin-bottom: 6px;
}

body.woocommerce-account .woocommerce-form-login .input-text {
	width: 100%;
	background: rgba(42,37,32,0.05);
	border: 1px solid rgba(42,37,32,0.2);
	border-radius: 4px;
	color: #2a2520;
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	padding: 12px 16px;
	box-sizing: border-box;
	outline: none;
	transition: border-color 0.2s;
	appearance: none;
	box-shadow: none;
}

body.woocommerce-account .woocommerce-form-login .input-text:focus {
	border-color: var(--orange);
	background: rgba(42,37,32,0.08);
}

body.woocommerce-account .woocommerce-form-login .password-input {
	position: relative;
	display: block;
}

body.woocommerce-account .woocommerce-form-login .password-input .input-text {
	padding-right: 48px;
}

body.woocommerce-account .woocommerce-form-login .show-password-input {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	width: 20px;
	height: 20px;
	opacity: 0.4;
	transition: opacity 0.2s;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232a2520' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: contain;
}

body.woocommerce-account .woocommerce-form-login .show-password-input:hover {
	opacity: 1;
}

body.woocommerce-account .woocommerce-form-login .woocommerce-form__label-for-checkbox {
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: 'Inter', sans-serif;
	font-size: 12px;
	color: rgba(42,37,32,0.55);
	text-transform: none;
	letter-spacing: 0;
	cursor: pointer;
	margin-bottom: 16px;
}

body.woocommerce-account .woocommerce-form-login .woocommerce-form__input-checkbox {
	accent-color: var(--orange);
}

body.woocommerce-account .woocommerce-LostPassword {
	margin-top: 16px;
	text-align: center;
}

body.woocommerce-account .woocommerce-LostPassword a {
	font-family: 'Inter', sans-serif;
	font-size: 12px;
	color: rgba(42,37,32,0.4);
	text-decoration: none;
	border-bottom: 1px solid rgba(42,37,32,0.15);
	transition: color 0.2s, border-color 0.2s;
}

body.woocommerce-account .woocommerce-LostPassword a:hover {
	color: var(--orange);
	border-color: var(--orange);
}

body.tax-product_cat .woocommerce-products-header,
body.tax-colecao .woocommerce-products-header,
body.tax-tipologia .woocommerce-products-header,
body.post-type-archive-product .woocommerce-products-header {
	padding: 140px 10% 5% 10%;
}

body.tax-product_cat .woocommerce-products-header h1,
body.tax-colecao .woocommerce-products-header h1,
body.tax-tipologia .woocommerce-products-header h1,
body.post-type-archive-product .woocommerce-products-header h1 {
	font-family: 'Instrument Serif', serif;
	font-size: clamp(42px, 5vw, 80px);
	font-weight: 400;
	font-style: italic;
	color: #2a2520;
	line-height: 1.05;
	margin: 0 0 16px;
}

body.tax-product_cat .term-description,
body.tax-colecao .term-description,
body.tax-tipologia .term-description {
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	color: rgba(42,37,32,0.65);
	max-width: 480px;
	line-height: 1.8;
	padding: 0 10% 5% 10%;
}

body.tax-product_cat ul.products,
body.tax-colecao ul.products,
body.tax-tipologia ul.products,
body.post-type-archive-product ul.products {
	display: grid !important;
	grid-template-columns: repeat(3, 1fr) !important;
	gap: 5% !important;
	padding: 5% 10% !important;
	margin: 0 !important;
	list-style: none !important;
}

body.tax-product_cat ul.products li.product img,
body.tax-colecao ul.products li.product img,
body.tax-tipologia ul.products li.product img,
body.post-type-archive-product ul.products li.product img {
	width: 100%;
	aspect-ratio: 1/1;
	object-fit: contain;
	background: #d3c8c1;
	padding: 10%;
	box-sizing: border-box;
	display: block;
	margin-bottom: 14px;
	transition: transform 0.4s ease;
}

body.tax-product_cat ul.products li.product a:hover img,
body.tax-colecao ul.products li.product a:hover img,
body.tax-tipologia ul.products li.product a:hover img,
body.post-type-archive-product ul.products li.product a:hover img {
	transform: scale(1.05);
}

body.tax-product_cat ul.products li.product .woocommerce-loop-product__title,
body.tax-colecao ul.products li.product .woocommerce-loop-product__title,
body.tax-tipologia ul.products li.product .woocommerce-loop-product__title,
body.post-type-archive-product ul.products li.product .woocommerce-loop-product__title {
	font-family: 'Instrument Serif', serif;
	font-size: clamp(16px, 1.8vw, 32px);
	font-weight: 400;
	color: #2a2520;
	margin: 0 0 6px;
	padding: 0;
}

body.tax-product_cat ul.products li.product .price,
body.tax-colecao ul.products li.product .price,
body.tax-tipologia ul.products li.product .price,
body.post-type-archive-product ul.products li.product .price {
	color: var(--orange);
	font-family: 'Inter', sans-serif;
	font-size: 14px;
}

body.tax-product_cat ul.products li.product .price del,
body.tax-colecao ul.products li.product .price del,
body.tax-tipologia ul.products li.product .price del,
body.post-type-archive-product ul.products li.product .price del {
	color: rgba(42,37,32,0.3);
	margin-right: 6px;
	font-size: 12px;
}

body.tax-product_cat ul.products li.product .button,
body.tax-colecao ul.products li.product .button,
body.tax-tipologia ul.products li.product .button,
body.post-type-archive-product ul.products li.product .button {
	display: none !important;
}

@media (max-width: 768px) {
	body.tax-product_cat ul.products,
	body.tax-colecao ul.products,
	body.tax-tipologia ul.products,
	body.post-type-archive-product ul.products {
		grid-template-columns: repeat(2, 1fr) !important;
		padding: 5% !important;
		gap: 6% !important;
	}
}