/**
 * Cart and Checkout Page Styles
 */

/* Cart Page */
.woocommerce-cart-wrapper {
	width: 100%;
	padding: 2rem 1.5rem;
}

.cart-container {
	max-width: 100rem;
	margin: 0 auto;
	width: 100%;
}

/* Cart Page Header */
.cart-page-header {
	margin-bottom: 2rem;
	padding-bottom: 1.5rem;
	border-bottom: 0.0625rem solid #e0ddd9;
}

.cart-page-header .entry-title {
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: 2.5rem;
	font-weight: 300;
	color: #2c2824;
	margin: 0;
	line-height: 1.2;
}

/* Hide duplicate entry-title if exists outside cart-page-header */
.woocommerce-cart-wrapper ~ .entry-title,
.woocommerce-cart-wrapper .entry-title:not(.cart-page-header .entry-title),
body.woocommerce-cart .entry-content > .entry-title:not(.cart-page-header .entry-title),
body.woocommerce-cart .site-main > .entry-title:not(.cart-page-header .entry-title) {
	display: none;
}

.cart-breadcrumbs {
	margin-bottom: 1rem;
}

.cart-breadcrumbs .rank-math-breadcrumb {
	font-family: "Lato", sans-serif;
	font-size: 0.875rem;
	color: #6b5f52;
}

.cart-breadcrumbs .rank-math-breadcrumb a {
	color: #6b5f52;
	text-decoration: none;
	transition: color 0.3s ease;
}

.cart-breadcrumbs .rank-math-breadcrumb a:hover {
	color: #877d71;
}

.cart-breadcrumbs .rank-math-breadcrumb .separator {
	margin: 0 0.5rem;
	color: #9a8f85;
}

.cart-breadcrumbs .rank-math-breadcrumb .last {
	color: #2c2824;
	font-weight: 500;
}

/* Cart Layout */
.woocommerce-cart-wrapper .cart-container {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

/* Cart header - full width */
.woocommerce-cart-wrapper .cart-container .cart-page-header {
	width: 100%;
}

/* Cart content wrapper - grid layout for form and summary side by side */
.woocommerce-cart-wrapper .cart-container .cart-content-wrapper {
	display: grid;
	grid-template-columns: 60% 1fr;
	gap: 3rem;
	align-items: start;
	width: 100%;
}

/* Cart collaterals (summary) - positioned right after header */
.woocommerce-cart-wrapper .cart-container .cart-collaterals {
	width: 100%;
}

/* Cart form - positioned after summary */
.woocommerce-cart-wrapper .cart-container .woocommerce-cart-form {
	width: 100%;
}

/* Cart Table */
.woocommerce-cart-form {
	margin-bottom: 0;
}

.woocommerce-cart-form table.shop_table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 2rem;
	border: 0.0625rem solid #e0ddd9;
	border-radius: 0.5rem;
	overflow: hidden;
}

.woocommerce-cart-form table.shop_table thead {
	background: #f8f7f5;
}

.woocommerce-cart-form table.shop_table th {
	padding: 1rem;
	text-align: left;
	font-weight: 600;
	color: #2c2824;
	border-bottom: 0.0625rem solid #e0ddd9;
}

.woocommerce-cart-form table.shop_table td {
	padding: 1.5rem 1rem;
	border-bottom: 0.0625rem solid #e0ddd9;
	vertical-align: middle;
}

.woocommerce-cart-form table.shop_table tr:last-child td {
	border-bottom: none;
}

/* Product Remove */
.woocommerce-cart-form .product-remove {
	width: 3rem;
	text-align: center;
}

.woocommerce-cart-form .product-remove a {
	display: inline-block;
	width: 2rem;
	height: 2rem;
	line-height: 2rem;
	text-align: center;
	color: #666666;
	font-size: 1.5rem;
	text-decoration: none;
	border-radius: 50%;
	transition: all 0.3s ease;
}

.woocommerce-cart-form .product-remove a:hover {
	background: #f8f7f5;
	color: #877d71;
}

/* Product Thumbnail */
.woocommerce-cart-form .product-thumbnail {
	width: 8rem;
}

.woocommerce-cart-form .product-thumbnail img {
	width: 6rem;
	height: auto;
	border-radius: 0.375rem;
}

/* Product Name */
.woocommerce-cart-form .product-name {
	font-weight: 500;
}

.woocommerce-cart-form .product-name a {
	color: #2c2824;
	text-decoration: none;
	transition: color 0.3s ease;
}

.woocommerce-cart-form .product-name a:hover {
	color: #877d71;
}

/* Product Price */
.woocommerce-cart-form .product-price {
	font-weight: 600;
	color: #877d71;
}

/* Product Quantity */
.woocommerce-cart-form .product-quantity {
	width: auto;
	min-width: 12rem;
}

.woocommerce-cart-form .product-quantity .quantity {
	display: flex;
	align-items: center;
	border: 0.125rem solid #e0ddd9;
	border-radius: 0.5rem;
	overflow: hidden;
	background: #ffffff;
	max-width: 12rem;
	box-shadow: 0 0.125rem 0.25rem rgba(135, 125, 113, 0.08);
	transition: all 0.3s ease;
}

.woocommerce-cart-form .product-quantity .quantity:hover {
	border-color: #877d71;
	box-shadow: 0 0.25rem 0.5rem rgba(135, 125, 113, 0.12);
}

.woocommerce-cart-form .product-quantity .qty-minus,
.woocommerce-cart-form .product-quantity .qty-plus {
	width: 2.5rem;
	height: 2.5rem;
	padding: 0;
	border: none;
	background: linear-gradient(135deg, #f8f7f5 0%, #f0ede8 100%);
	color: #877d71;
	font-size: 1.125rem;
	font-weight: 600;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	position: relative;
}

.woocommerce-cart-form .product-quantity .qty-minus::before,
.woocommerce-cart-form .product-quantity .qty-plus::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, #877d71 0%, #6b6359 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.woocommerce-cart-form .product-quantity .qty-minus span,
.woocommerce-cart-form .product-quantity .qty-plus span,
.woocommerce-cart-form .product-quantity .qty-minus,
.woocommerce-cart-form .product-quantity .qty-plus {
	position: relative;
	z-index: 1;
}

.woocommerce-cart-form .product-quantity .qty-minus:hover,
.woocommerce-cart-form .product-quantity .qty-plus:hover {
	color: #ffffff;
}

.woocommerce-cart-form .product-quantity .qty-minus:hover::before,
.woocommerce-cart-form .product-quantity .qty-plus:hover::before {
	opacity: 1;
}

.woocommerce-cart-form .product-quantity .qty-minus:active,
.woocommerce-cart-form .product-quantity .qty-plus:active {
	transform: scale(0.95);
}

thead .product-total{
	text-align: end !important;
}

.product-name{
	text-align: left !important;
}

.woocommerce-cart-form .product-quantity .qty {
	width: calc(100% - 5rem);
	padding: 0.625rem 0;
	border: none;
	border-left: 0.125rem solid #e0ddd9;
	border-right: 0.125rem solid #e0ddd9;
	text-align: center;
	font-size: 1rem;
	font-weight: 600;
	color: #2c2824;
	background: #ffffff;
	-moz-appearance: textfield;
	transition: all 0.3s ease;
}

.woocommerce-cart-form .product-quantity .qty:focus {
	outline: none;
	border-left-color: #877d71;
	border-right-color: #877d71;
	background: #faf9f7;
}

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

/* Product Subtotal */
.woocommerce-cart-form .product-subtotal {
	font-weight: 600;
	color: #2c2824;
}

/* Cart Actions */
.woocommerce-cart-form .actions {
	padding: 1.5rem !important;
	background: #f8f7f5;
}

.woocommerce-cart-form .coupon {
	display: flex;
	gap: 0.75rem;
	margin-bottom: 1rem;
}

.woocommerce-cart-form .coupon input[type="text"] {
	flex: 1;
	padding: 0.75rem;
	border: 0.125rem solid #e0ddd9;
	border-radius: 0.375rem;
	font-size: 1rem;
}

.woocommerce-cart-form .coupon input[type="text"]:focus {
	outline: none;
	border-color: #877d71;
}

.woocommerce-cart-form .coupon button,
.woocommerce-cart-form .actions button {
	padding: 0.75rem 1.5rem;
	background: #877d71;
	color: #ffffff;
	border: none;
	border-radius: 0.375rem;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.woocommerce-cart-form .coupon button:hover,
.woocommerce-cart-form .actions button:hover {
	background: #6b6359;
}

/* Cart Totals */
.cart-collaterals {
	display: contents;
}

.woocommerce-cart .cart_totals {
	position: sticky;
	top: 2rem;
}

.woocommerce-cart .cart_totals {
	background: #f8f7f5;
	padding: 2rem;
	border-radius: 0.5rem;
	border: 0.0625rem solid #e0ddd9;
}

.woocommerce-cart .cart_totals h2 {
	margin-top: 0;
	margin-bottom: 1.5rem;
	font-size: 1.5rem;
	color: #2c2824;
}

.woocommerce-cart .cart_totals table {
	width: 100%;
	margin-bottom: 1.5rem;
}

.woocommerce-cart .cart_totals table th,
.woocommerce-cart .cart_totals table td {
	padding: 0.75rem 0;
	border-bottom: 0.0625rem solid #e0ddd9;
}

.woocommerce-cart .cart_totals table tr:last-child th,
.woocommerce-cart .cart_totals table tr:last-child td {
	border-bottom: none;
}

.woocommerce-cart .cart_totals table th {
	text-align: left;
	color: #666666;
	font-weight: 400;
}

.woocommerce-cart .cart_totals table td {
	text-align: right;
	font-weight: 600;
	color: #2c2824;
}

.woocommerce-cart .cart_totals .order-total th,
.woocommerce-cart .cart_totals .order-total td {
	font-size: 1.25rem;
	color: #877d71;
	padding-top: 1rem;
}

.woocommerce-cart .cart_totals .checkout-button {
	display: block;
	width: 100%;
	padding: 1rem 2rem;
	background: #877d71;
	color: #ffffff;
	border: none;
	border-radius: 0.375rem;
	font-size: 1.125rem;
	font-weight: 600;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-top: 1.5rem;
}

.woocommerce-cart .cart_totals .checkout-button:hover {
	background: #6b6359;
	transform: translateY(-0.125rem);
}

/* Footer styles for cart and checkout - ensure consistency */
body.woocommerce-cart .site-footer,
body.woocommerce-checkout .site-footer {
	background: var(--strefa-primary, #8B7355) !important;
	color: #ffffff !important;
	margin-top: 4rem !important;
}

body.woocommerce-cart .site-footer-bottom,
body.woocommerce-checkout .site-footer-bottom {
	background: var(--strefa-primary-dark, #6B5A47) !important;
	padding: 1rem 0 !important;
	border-top: 0.0625rem solid rgba(255, 255, 255, 0.1) !important;
}

body.woocommerce-cart .footer-container,
body.woocommerce-checkout .footer-container {
	max-width: 100rem !important;
	margin: 0 auto !important;
	padding: 0 1.5rem !important;
}

body.woocommerce-cart .site-footer-widgets,
body.woocommerce-checkout .site-footer-widgets {
	padding: 4rem 0 2rem !important;
	border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.15) !important;
}

body.woocommerce-cart .footer-columns,
body.woocommerce-checkout .footer-columns {
	display: grid !important;
	grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)) !important;
	gap: 3rem !important;
	align-items: start !important;
}

/* Checkout Page */
.woocommerce-checkout-wrapper {
	width: 100%;
	padding: 2rem 1.5rem;
}

.checkout-container {
	max-width: 100rem;
	margin: 0 auto;
	width: 100%;
}

/* Checkout Page Header */
.checkout-page-header {
	margin-bottom: 2rem;
	padding-bottom: 1.5rem;
	border-bottom: 0.0625rem solid #e0ddd9;
}

.checkout-page-header .entry-title {
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: 2.5rem;
	font-weight: 300;
	color: #2c2824;
	margin: 0;
	line-height: 1.2;
}

.checkout-breadcrumbs {
	margin-bottom: 1rem;
}

.checkout-breadcrumbs .rank-math-breadcrumb {
	font-family: "Lato", sans-serif;
	font-size: 0.875rem;
	color: #6b5f52;
}

.checkout-breadcrumbs .rank-math-breadcrumb a {
	color: #6b5f52;
	text-decoration: none;
	transition: color 0.3s ease;
}

.checkout-breadcrumbs .rank-math-breadcrumb a:hover {
	color: #877d71;
}

.checkout-breadcrumbs .rank-math-breadcrumb .separator {
	margin: 0 0.5rem;
	color: #9a8f85;
}

.checkout-breadcrumbs .rank-math-breadcrumb .last {
	color: #2c2824;
	font-weight: 500;
}

/* Empty Cart Styles */
.cart-empty-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 50vh;
	padding: 4rem 2rem;
}

.cart-empty-content {
	text-align: center;
	max-width: 32rem;
	width: 100%;
}

.cart-empty-icon {
	margin-bottom: 2rem;
}

.cart-empty-icon i {
	font-size: 6rem;
	color: #d0ccc7;
	opacity: 0.5;
}

.cart-empty-title {
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: 2.5rem;
	font-weight: 300;
	color: #2c2824;
	margin: 0 0 1rem 0;
	line-height: 1.2;
}

.cart-empty-text {
	font-family: "Lato", sans-serif;
	font-size: 1.125rem;
	color: #6b5f52;
	line-height: 1.6;
	margin: 0 0 2.5rem 0;
}

.cart-empty-actions {
	margin-top: 2rem;
}

.cart-empty-button {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem 2rem;
	background: linear-gradient(135deg, #8B7355 0%, #6B5A47 100%);
	color: #ffffff;
	border: none;
	border-radius: 0.5rem;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 0.25rem 0.75rem rgba(139, 115, 85, 0.3);
	cursor: pointer;
	font-family: "Lato", sans-serif;
}

.cart-empty-button:hover {
	background: linear-gradient(135deg, #6B5A47 0%, #8B7355 100%);
	transform: translateY(-0.125rem);
	box-shadow: 0 0.375rem 1rem rgba(139, 115, 85, 0.4);
	color: #ffffff;
	text-decoration: none;
}

.cart-empty-button:active {
	transform: translateY(0);
	box-shadow: 0 0.125rem 0.5rem rgba(139, 115, 85, 0.3);
}

.cart-empty-button i {
	font-size: 0.875rem;
}

/* Hide duplicate entry-title if exists outside checkout-page-header */
.woocommerce-checkout-wrapper ~ .entry-title,
.woocommerce-checkout-wrapper .entry-title:not(.checkout-page-header .entry-title),
body.woocommerce-checkout .entry-content > .entry-title:not(.checkout-page-header .entry-title),
body.woocommerce-checkout .site-main > .entry-title:not(.checkout-page-header .entry-title) {
	display: none;
}

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

.woocommerce-checkout .col2-set {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

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

.woocommerce-checkout #order_review {
	position: sticky;
	top: 2rem;
}

.woocommerce-checkout .col-1,
.woocommerce-checkout .col-2 {
	background: #f8f7f5;
	padding: 2rem;
	border-radius: 0.5rem;
	border: 0.0625rem solid #e0ddd9;
}


.woocommerce-checkout #order_review_heading {
	margin-top: 0;
}

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

.woocommerce-checkout .form-row label {
	position: absolute;
	left: 0.75rem;
	top: 50%;
	transform: translateY(-50%);
	font-weight: 400;
	color: #9a8f85;
	font-size: 1rem;
	pointer-events: none;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	background: #ffffff;
	padding: 0 0.25rem;
	z-index: 1;
	margin: 0;
	white-space: nowrap;
}

.woocommerce-checkout .form-row label .required {
	color: #877d71;
}

.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 select,
.woocommerce-checkout .form-row textarea {
	width: 100%;
	padding: 0.75rem;
	border: 0.125rem solid #e0ddd9;
	border-radius: 0.375rem;
	font-size: 1rem;
	background: #ffffff;
	color: #2c2824;
	transition: all 0.3s ease;
	position: relative;
	z-index: 0;
}

.woocommerce-checkout .form-row input:focus,
.woocommerce-checkout .form-row select:focus,
.woocommerce-checkout .form-row textarea:focus {
	outline: none;
	border-color: #877d71;
}

/* Floating label effect - when input has value or is focused */
.woocommerce-checkout .form-row input:focus ~ label,
.woocommerce-checkout .form-row input.has-value ~ label,
.woocommerce-checkout .form-row.has-value label,
.woocommerce-checkout .form-row input:not(:placeholder-shown) ~ label,
.woocommerce-checkout .form-row textarea:focus ~ label,
.woocommerce-checkout .form-row textarea.has-value ~ label,
.woocommerce-checkout .form-row textarea:not(:placeholder-shown) ~ label,
.woocommerce-checkout .form-row select:focus ~ label,
.woocommerce-checkout .form-row select.has-value ~ label {
	top: 0;
	transform: translateY(-50%) scale(0.85);
	font-size: 0.875rem;
	color: #877d71;
	font-weight: 500;
}

/* Placeholder styling */
.woocommerce-checkout .form-row input::placeholder,
.woocommerce-checkout .form-row textarea::placeholder {
	color: transparent;
}

.woocommerce-checkout .form-row input:focus::placeholder {
	color: #9a8f85;
	opacity: 0.5;
}

/* Password Input Wrapper */
.password-input {
	position: relative;
	display: flex;
	align-items: center;
}

.password-input input[type="password"],
.password-input input[type="text"] {
	padding-right: 3rem;
}

/* Show Password Button */
.show-password-input {
	position: absolute;
	right: 0.75rem;
	top: 50%;
	transform: translateY(-50%);
	background: transparent;
	border: none;
	padding: 0.5rem;
	cursor: pointer;
	color: #6b5f52;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	border-radius: 0.25rem;
	z-index: 10;
}

.show-password-input:hover {
	color: #8B7355;
	background: rgba(139, 115, 85, 0.1);
}

.show-password-input:focus {
	outline: none;
	color: #8B7355;
	background: rgba(139, 115, 85, 0.15);
	box-shadow: 0 0 0 0.1875rem rgba(135, 125, 113, 0.2);
}

/* Eye Icon */
.show-password-input::before {
	content: '';
	font-family: "Font Awesome 6 Free";
	font-weight: 400;
	font-size: 1.125rem;
	display: inline-block;
}

.show-password-input[aria-label*="Show"]::before,
.show-password-input[aria-label*="Pokaż"]::before {
	content: '\f06e'; /* fa-eye */
}

.show-password-input[aria-label*="Hide"]::before,
.show-password-input[aria-label*="Ukryj"]::before {
	content: '\f070'; /* fa-eye-slash */
}

/* Alternative: Use Font Awesome icon directly if available */
.show-password-input .fa-eye,
.show-password-input .fa-eye-slash {
	font-size: 1.125rem;
	color: inherit;
}

/* Hide default WooCommerce password toggle icon */
.show-password-input .dashicons {
	display: none;
}

.woocommerce-checkout #order_review {
	background: #f8f7f5;
	padding: 2rem;
	border-radius: 0.5rem;
	border: 0.0625rem solid #e0ddd9;
}

.woocommerce-checkout #order_review_heading {
	margin-top: 0;
	margin-bottom: 1.5rem;
	font-size: 1.5rem;
	color: #2c2824;
}

.woocommerce-checkout .shop_table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 1.5rem;
}

.woocommerce-checkout .shop_table th,
.woocommerce-checkout .shop_table td {
	padding: 0.75rem 0;
	border-bottom: 0.0625rem solid #e0ddd9;
	text-align: left;
}

.woocommerce-checkout .shop_table tr:last-child th,
.woocommerce-checkout .shop_table tr:last-child td {
	border-bottom: none;
}

.woocommerce-checkout .shop_table th {
	font-weight: 400;
	color: #666666;
}

.woocommerce-checkout .shop_table td {
	font-weight: 600;
	color: #2c2824;
	text-align: right;
}

.woocommerce-checkout .shop_table .order-total th,
.woocommerce-checkout .shop_table .order-total td {
	font-size: 1.25rem;
	color: #877d71;
	padding-top: 1rem;
}

.woocommerce-checkout #place_order {
	width: 100%;
	padding: 1rem 2rem;
	background: #877d71;
	color: #ffffff;
	border: none;
	border-radius: 0.375rem;
	font-size: 1.125rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-top: 1.5rem;
}

.woocommerce-checkout #place_order:hover {
	background: #6b6359;
	transform: translateY(-0.125rem);
}

.woocommerce-checkout #place_order:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

/* Responsive */
@media (max-width: 1024px) {
	.woocommerce-cart-wrapper .cart-container .cart-content-wrapper {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.woocommerce-cart-wrapper .cart-container .cart-collaterals {
		order: -1;
	}
}

@media (max-width: 768px) {
	.woocommerce-cart-wrapper .cart-container .cart-content-wrapper {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.woocommerce-cart-form table.shop_table {
		display: block;
	}

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

	.woocommerce-cart-form table.shop_table tbody,
	.woocommerce-cart-form table.shop_table tr,
	.woocommerce-cart-form table.shop_table td {
		display: block;
		width: 100%;
	}

	.woocommerce-cart-form table.shop_table tr {
		border: 0.0625rem solid #e0ddd9;
		border-radius: 0.5rem;
		margin-bottom: 1.5rem;
		padding: 1rem;
		background: #ffffff;
	}

	.woocommerce-cart-form table.shop_table td {
		border: none;
		padding: 0.75rem 0;
		text-align: left !important;
	}

	.woocommerce-cart-form table.shop_table td::before {
		content: attr(data-title) ": ";
		font-weight: 600;
		color: #2c2824;
	}

	.woocommerce-cart-form .product-thumbnail {
		width: 100%;
		text-align: center;
		margin-bottom: 1rem;
	}

	.woocommerce-cart-form .product-thumbnail img {
		width: 8rem;
	}

	.woocommerce-cart-form .coupon {
		flex-direction: column;
	}

	.woocommerce-cart-form .coupon input[type="text"],
	.woocommerce-cart-form .coupon button {
		width: 100%;
	}

	.woocommerce-checkout form.checkout {
		grid-template-columns: 1fr;
	}

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

