/**
 * Koszyk — layout zgodny z CartSection.astro.
 */

.dehoust-cart-section {
	padding-top: 2.5rem;
	padding-bottom: 3rem;
	background: #fff;
}

.dehoust-cart-section__layout {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.dehoust-cart-section__top {
	margin-bottom: 24px;
}

.dehoust-cart-section__continue-btn {
	width: auto;
	max-width: none;
	align-self: flex-start;
}

.dehoust-cart-section__table-wrap {
	display: none;
	overflow-x: auto;
}

.dehoust-cart-section__table {
	width: 100%;
	min-width: 640px;
	border-collapse: collapse;
	table-layout: fixed;
}

.dehoust-cart-section__col-qty {
	width: 120px;
}

.dehoust-cart-section__col-price,
.dehoust-cart-section__col-total {
	width: 120px;
}

.dehoust-cart-section__col-remove {
	width: 48px;
}

.dehoust-cart-section__table th {
	padding: 0 0 16px;
	border-bottom: 1px solid var(--dehoust-color-line);
	font-size: 14px;
	font-weight: 600;
	text-align: left;
	color: var(--dehoust-color-text);
}

.dehoust-cart-section__th-qty,
.dehoust-cart-section__qty {
	text-align: center;
}

.dehoust-cart-section__th-price,
.dehoust-cart-section__th-total {
	text-align: right;
}

.dehoust-cart-section__row td {
	padding: 24px 0;
	border-bottom: 1px solid var(--dehoust-color-line);
	vertical-align: middle;
}

.dehoust-cart-section__table tbody tr:last-child td {
	border-bottom: 0;
}

.dehoust-cart-section__product {
	overflow: hidden;
}

/* Reset stylów WooCommerce — zachowaj natywny układ tabeli (bez display:block z WC). */
.woocommerce table.dehoust-cart-section__table.shop_table {
	border: 0;
	margin: 0;
}

.woocommerce table.dehoust-cart-section__table.shop_table th,
.woocommerce table.dehoust-cart-section__table.shop_table td {
	border: 0;
	background: transparent;
}

.woocommerce table.dehoust-cart-section__table.shop_table thead,
.woocommerce table.dehoust-cart-section__table.shop_table tbody,
.woocommerce table.dehoust-cart-section__table.shop_table tr {
	display: revert;
}

.woocommerce table.dehoust-cart-section__table.shop_table th,
.woocommerce table.dehoust-cart-section__table.shop_table td {
	display: revert;
}

.dehoust-cart-section__product-link {
	display: flex;
	align-items: center;
	gap: 16px;
	text-decoration: none;
	color: inherit;
}

.dehoust-cart-section__product-link:hover .dehoust-cart-section__product-name {
	color: var(--dehoust-color-primary);
}

.dehoust-cart-section__thumb {
	display: flex;
	width: 80px;
	height: 80px;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	background: var(--dehoust-color-surface);
}

.dehoust-cart-section__thumb img {
	max-width: 90%;
	max-height: 90%;
	object-fit: contain;
}

.dehoust-cart-section__product-text {
	display: flex;
	flex-direction: column;
	gap: 6px;
	min-width: 0;
}

.dehoust-cart-section__product-name {
	font-family: var(--dehoust-font-heading);
	font-size: 18px;
	font-weight: 600;
	line-height: 1.3;
	color: var(--dehoust-color-text);
}

.dehoust-cart-section__product-sku {
	font-size: 14px;
	color: var(--dehoust-color-text-muted);
}

.dehoust-cart-section__th-price,
.dehoust-cart-section__unit,
.dehoust-cart-section__th-total,
.dehoust-cart-section__line-total {
	text-align: right;
}

.dehoust-cart-section__remove {
	text-align: center;
	vertical-align: middle;
}

.dehoust-cart-section__qty-box {
	display: inline-flex;
	width: 98px;
	height: 50px;
	align-items: center;
	justify-content: center;
	gap: 17px;
	border: 0.8px solid var(--dehoust-color-primary);
	border-radius: var(--dehoust-radius-btn);
	background: #fff;
}

.dehoust-cart-section__qty-btn {
	display: flex;
	width: 10px;
	height: 10px;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	border: 0;
	background: transparent;
	padding: 0;
	cursor: pointer;
	color: var(--dehoust-color-primary);
}

.dehoust-cart-section__qty-btn:focus-visible {
	outline: 2px solid var(--dehoust-color-primary);
	outline-offset: 2px;
}

.dehoust-cart-section__qty-minus {
	display: block;
	width: 10px;
	height: 2px;
	background: currentColor;
}

.dehoust-cart-section__qty-plus {
	font-size: 18px;
	line-height: 1;
}

.dehoust-cart-section__qty-input {
	width: 24px;
	border: 0;
	background: transparent;
	padding: 0;
	font-family: var(--dehoust-font-body);
	font-size: 16px;
	font-weight: 600;
	text-align: center;
	color: var(--dehoust-color-text);
	-moz-appearance: textfield;
}

.dehoust-cart-section__qty-input::-webkit-outer-spin-button,
.dehoust-cart-section__qty-input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.dehoust-cart-section__qty-input:focus {
	outline: none;
}

.dehoust-cart-section__unit,
.dehoust-cart-section__line-total {
	font-family: var(--dehoust-font-heading);
	font-size: 16px;
	font-weight: 700;
	text-align: right;
	color: var(--dehoust-color-accent);
	white-space: nowrap;
}

.dehoust-cart-section__remove-btn {
	display: flex;
	width: 44px;
	height: 44px;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: var(--dehoust-radius-btn);
	background: transparent;
	padding: 0;
	font-size: 24px;
	line-height: 1;
	color: var(--dehoust-color-text-muted);
	cursor: pointer;
	text-decoration: none;
}

.dehoust-cart-section__remove-btn:hover {
	background: var(--dehoust-color-surface);
	color: #f14e4e;
}

.dehoust-cart-section__remove-btn--text {
	width: auto;
	height: auto;
	font-size: 14px;
	font-weight: 600;
}

.dehoust-cart-section__mobile-cards {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.dehoust-cart-section__mobile-card {
	padding: 16px;
	border: 1px solid var(--dehoust-color-line);
	border-radius: 8px;
	background: #fff;
}

.dehoust-cart-section__mobile-link {
	display: flex;
	flex-direction: column;
	gap: 8px;
	text-decoration: none;
	color: inherit;
}

.dehoust-cart-section__thumb--mobile {
	width: 100%;
	height: 120px;
	margin-bottom: 4px;
}

.dehoust-cart-section__mobile-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin-top: 16px;
}

.dehoust-cart-section__mobile-total {
	margin: 0 0 0 auto;
	font-family: var(--dehoust-font-heading);
	font-size: 18px;
	font-weight: 700;
	color: var(--dehoust-color-accent);
}

.dehoust-cart-section__actions {
	display: flex;
	flex-direction: column;
	gap: 24px;
	margin-top: 24px;
}

.dehoust-cart-section__coupon-form {
	margin-top: 24px;
}

.dehoust-cart-section__coupon-label {
	display: block;
	margin-bottom: 8px;
	font-size: 15px;
	font-weight: 600;
	color: var(--dehoust-color-text);
}

.dehoust-cart-section__coupon-row {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.dehoust-cart-section__coupon-input {
	width: 100%;
	height: 50px;
	border: 1px solid var(--dehoust-color-border);
	border-radius: var(--dehoust-radius-btn);
	padding: 0 16px;
	font-family: var(--dehoust-font-body);
	font-size: 16px;
	color: var(--dehoust-color-text-muted);
}

.dehoust-cart-section__coupon-input:focus {
	outline: 2px solid var(--dehoust-color-primary);
	outline-offset: 0;
	border-color: var(--dehoust-color-primary);
}

.dehoust-cart-section__summary {
	height: fit-content;
	padding: 24px;
	border: 1px solid var(--dehoust-color-line);
	border-radius: 8px;
	background: var(--dehoust-color-surface);
}

.dehoust-cart-section__summary-title {
	margin: 0 0 20px;
	font-family: var(--dehoust-font-heading);
	font-size: 22px;
	font-weight: 700;
	line-height: 1.2;
	color: var(--dehoust-color-text);
}

.dehoust-cart-section__summary-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin: 0;
}

.dehoust-cart-section__summary-row {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
}

.dehoust-cart-section__summary-row dt {
	margin: 0;
	font-size: 15px;
	color: var(--dehoust-color-text-muted);
}

.dehoust-cart-section__summary-row dd {
	margin: 0;
	font-family: var(--dehoust-font-heading);
	font-size: 16px;
	font-weight: 600;
	color: var(--dehoust-color-text);
	white-space: nowrap;
}

.dehoust-cart-section__summary-row--total dt,
.dehoust-cart-section__summary-row--total dd {
	font-size: 18px;
	font-weight: 700;
	color: var(--dehoust-color-text);
}

.dehoust-cart-section__summary-row--total dd {
	color: var(--dehoust-color-accent);
}

.dehoust-cart-section__summary-row--discount dd {
	color: #c0392b;
	font-weight: 700;
}

.dehoust-cart-section__applied-coupons {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin: 12px 0 0;
	padding: 0;
	list-style: none;
}

.dehoust-cart-section__applied-coupon {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 10px 12px;
	border: 1px solid #b8e0c0;
	border-radius: 8px;
	background: #edf8ef;
	font-size: 14px;
	line-height: 1.4;
}

.dehoust-cart-section__applied-coupon-label {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 8px;
	color: var(--dehoust-color-text);
}

.dehoust-cart-section__applied-coupon-remove {
	flex-shrink: 0;
	font-size: 14px;
	font-weight: 600;
	color: var(--dehoust-color-primary);
	text-decoration: none;
}

.dehoust-cart-section__applied-coupon-remove:hover,
.dehoust-cart-section__applied-coupon-remove:focus-visible {
	text-decoration: underline;
}

.dehoust-cart-section__summary-note {
	margin: 16px 0 0;
	font-size: 14px;
	line-height: 1.5;
	color: var(--dehoust-color-text-muted);
}

.dehoust-cart-section__checkout-btn {
	width: 100%;
	min-height: 64px;
	margin-top: 24px;
	padding: 16px 32px;
	font-size: 18px;
	line-height: 1.25;
}

.dehoust-cart-section--empty .dehoust-cart-empty {
	text-align: center;
	padding: 48px 0;
}

.dehoust-cart-empty__title {
	margin: 0 0 16px;
	font-family: var(--dehoust-font-heading);
	font-size: 28px;
	font-weight: 700;
	color: var(--dehoust-color-text);
}

.dehoust-cart-empty__text {
	margin: 0 0 32px;
	font-size: 16px;
	line-height: 1.5;
	color: var(--dehoust-color-text-muted);
}

@media (min-width: 640px) {
	.dehoust-cart-section__coupon-row {
		flex-direction: row;
		align-items: stretch;
	}

	.dehoust-cart-section__coupon-input {
		max-width: 280px;
	}

	.dehoust-cart-section__coupon-btn {
		flex-shrink: 0;
	}
}

@media (min-width: 1024px) {
	.dehoust-cart-section__table-wrap {
		display: block;
	}

	.dehoust-cart-section__mobile-cards {
		display: none;
	}
}

@media (min-width: 1280px) {
	.dehoust-cart-section {
		padding-top: 64px;
		padding-bottom: 100px;
	}

	.dehoust-cart-section__layout {
		flex-direction: row;
		align-items: flex-start;
		gap: 40px;
	}

	.dehoust-cart-section__main {
		flex: 1;
		min-width: 0;
	}

	.dehoust-cart-section__summary {
		width: 360px;
		flex-shrink: 0;
		position: sticky;
		top: 120px;
	}

	.dehoust-cart-section__col-price,
	.dehoust-cart-section__col-total {
		width: 132px;
	}
}
