/**
 * Side cart drawer — first layout, lightly polished.
 */

.novodek-side-cart-overlay {
	position: fixed;
	inset: 0;
	z-index: 10040;
	background: rgba(0, 0, 0, 0.4);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.25s ease, visibility 0.25s ease;
}

.novodek-side-cart-overlay.is-open {
	opacity: 1;
	visibility: visible;
}

.novodek-side-cart {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 10050;
	width: min(400px, 100vw);
	height: 100%;
	pointer-events: none;
}

.novodek-side-cart__panel {
	display: flex;
	flex-direction: column;
	height: 100%;
	background: #fff;
	box-shadow: -6px 0 24px rgba(0, 0, 0, 0.16);
	transform: translateX(100%);
	transition: transform 0.28s ease;
	pointer-events: auto;
	color: #222;
}

.novodek-side-cart.is-open .novodek-side-cart__panel {
	transform: translateX(0);
}

.novodek-side-cart.is-updating .novodek-side-cart__body {
	opacity: 0.55;
	pointer-events: none;
}

.novodek-side-cart__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 18px 20px;
	border-bottom: 1px solid #e8e8e8;
	flex: 0 0 auto;
}

header.novodek-side-cart__header {
	padding-top: 55px;
}

.novodek-side-cart__title {
	margin: 0;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.25;
	color: #111;
}

.novodek-side-cart__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: #333;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
}

.novodek-side-cart__close:hover,
.novodek-side-cart__close:focus {
	color: #000;
	outline: none;
}

.novodek-side-cart__body {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	min-height: 0;
	overflow: hidden;
	background: #fff;
}

.novodek-side-cart__body .widget_shopping_cart_content {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	min-height: 0;
	height: 100%;
	overflow: hidden;
	background: #fff;
	color: #222;
}

/* Reset Ascend/WC mini-cart chrome — do not zero item padding here. */
.novodek-side-cart .product_list_widget,
.novodek-side-cart .woocommerce-mini-cart,
.novodek-side-cart .cart_list {
	color: #222 !important;
	background: transparent !important;
	border: 0 !important;
	float: none !important;
	list-style: none !important;
}

.novodek-side-cart .woocommerce ul.cart_list li,
.novodek-side-cart .woocommerce ul.product_list_widget li,
.novodek-side-cart ul.cart_list li,
.novodek-side-cart ul.product_list_widget li,
.novodek-side-cart ul.woocommerce-mini-cart li.woocommerce-mini-cart-item,
.novodek-side-cart li.novodek-side-cart__item {
	color: #222 !important;
	background: transparent !important;
	border: 0 !important;
	border-bottom: 1px solid #e8e8e8 !important;
	float: none !important;
	padding: 20px 0 !important;
	margin: 0 !important;
	list-style: none !important;
	position: relative !important;
	padding-top: 20px !important;
	padding-right: 0 !important;
	padding-bottom: 20px !important;
	padding-left: 0 !important;
}

.novodek-side-cart ul.product_list_widget li.novodek-side-cart__item:last-child,
.novodek-side-cart li.novodek-side-cart__item:last-child {
	border-bottom: 0 !important;
	padding-bottom: 12px !important;
}

.novodek-side-cart .product_list_widget li a,
.novodek-side-cart .product_list_widget li a:not(.remove),
.novodek-side-cart ul.product_list_widget li a {
	color: inherit !important;
	float: none !important;
	padding: 0 !important;
	display: inline;
}

.novodek-side-cart .product_list_widget li a img,
.novodek-side-cart ul.product_list_widget li a img {
	float: none !important;
	margin: 0 !important;
}

.novodek-side-cart .product_list_widget li .amount,
.novodek-side-cart .product_list_widget li .quantity,
.novodek-side-cart ul.product_list_widget li .amount,
.novodek-side-cart ul.product_list_widget li .quantity {
	color: inherit !important;
	max-width: none !important;
	float: none !important;
}

.novodek-side-cart__list {
	list-style: none !important;
	margin: 0 !important;
	padding: 8px 20px !important;
	overflow-y: auto;
	flex: 1 1 auto;
}

.novodek-side-cart ul.product_list_widget li.novodek-side-cart__item,
.novodek-side-cart li.woocommerce-mini-cart-item.novodek-side-cart__item {
	display: flex !important;
	gap: 14px;
	align-items: flex-start;
	width: 100%;
	box-sizing: border-box;
}

.novodek-side-cart__thumb {
	flex: 0 0 72px;
	width: 72px;
}

.novodek-side-cart__thumb a {
	display: block !important;
	line-height: 0;
}

.novodek-side-cart__thumb img {
	display: block;
	width: 72px !important;
	height: 72px !important;
	max-width: 72px !important;
	object-fit: cover;
	border-radius: 2px;
	background: #f5f5f5;
}

.novodek-side-cart__info {
	flex: 1 1 auto;
	min-width: 0;
}

.novodek-side-cart__name {
	margin: 0 0 4px;
	font-size: 14px;
	line-height: 1.35;
	font-weight: 700;
	color: #111;
}

.novodek-side-cart__name a {
	color: #111 !important;
	text-decoration: none !important;
	font-weight: 700;
}

.novodek-side-cart__name a:hover {
	color: #1c3f60 !important;
}

.novodek-side-cart__price {
	margin: 0 0 8px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.3;
	color: #111;
}

.novodek-side-cart__price .amount,
.novodek-side-cart__price .woocommerce-Price-amount {
	color: #111 !important;
	font-weight: 700;
}

.novodek-side-cart__details-toggle {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin: 0 0 8px;
	padding: 0;
	border: 0;
	background: none;
	color: #6b7280;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.3;
	cursor: pointer;
	width: fit-content;
}

.novodek-side-cart__details-toggle:hover,
.novodek-side-cart__details-toggle:focus {
	color: #111;
	outline: none;
}

.novodek-side-cart__details-chevron {
	display: inline-block;
	width: 7px;
	height: 7px;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: rotate(45deg);
	margin-top: -3px;
	transition: transform 0.15s ease;
}

.novodek-side-cart__details-toggle.is-open .novodek-side-cart__details-chevron {
	transform: rotate(-135deg);
	margin-top: 2px;
}

.novodek-side-cart__meta {
	margin: 0 0 10px;
	padding: 2px 0 2px 10px;
	border-left: 2px solid #cfcfcf;
}

.novodek-side-cart__meta[hidden] {
	display: none !important;
}

.novodek-side-cart ul.product-attributes-list {
	padding-left: 0;
}

.novodek-side-cart ul.product-attributes-list li {
	padding-top: 5px !important;
	padding-bottom: 5px !important;
	font-size: 14px;
}

.novodek-side-cart__meta dl.variation,
.novodek-side-cart__meta .variation {
	display: block !important;
	margin: 0 !important;
	padding: 0 !important;
	float: none !important;
	overflow: visible !important;
}

.novodek-side-cart__meta dl.variation:after,
.novodek-side-cart__meta dl.variation:before {
	display: none !important;
	content: none !important;
}

.novodek-side-cart__meta dl.variation dt,
.novodek-side-cart__meta dl.variation dd {
	display: inline !important;
	float: none !important;
	clear: none !important;
	margin: 0 !important;
	padding: 0 !important;
	font-size: 13px;
	line-height: 1.5;
	color: #555;
	font-weight: 400;
}

.novodek-side-cart__meta dl.variation dt {
	font-weight: 500;
}

.novodek-side-cart__meta dl.variation dt:after {
	content: " ";
}

.novodek-side-cart__meta dl.variation dd:after {
	content: "";
	display: block;
	margin-bottom: 1px;
}

.novodek-side-cart__actions {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: nowrap;
}

.novodek-side-cart__qty {
	display: inline-flex;
	align-items: stretch;
	flex: 0 0 auto;
	width: auto;
	max-width: none;
	border: 1px solid #d0d0d0;
	border-radius: 999px;
	overflow: hidden;
	background: #fff;
	height: 32px;
}

.novodek-side-cart__qty-btn {
	flex: 0 0 32px;
	width: 32px;
	height: 32px;
	border: 0;
	background: #fff;
	font-size: 16px;
	line-height: 1;
	cursor: pointer;
	color: #333;
	padding: 0;
}

.novodek-side-cart__qty-btn:hover {
	background: #f7f7f7;
}

/* Override global input[type=number] { width: 100% } only inside side cart. */
.novodek-side-cart input.novodek-side-cart__qty-input[type="number"],
.novodek-side-cart .novodek-side-cart__qty-input {
	flex: 0 0 40px !important;
	width: 40px !important;
	min-width: 40px !important;
	max-width: 40px !important;
	height: 32px !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-left: 1px solid #e5e5e5 !important;
	border-right: 1px solid #e5e5e5 !important;
	text-align: center;
	font-size: 14px;
	font-weight: 600;
	color: #222;
	background: #f3f3f3 !important;
	appearance: textfield;
	-moz-appearance: textfield;
	border-radius: 0 !important;
	box-shadow: none !important;
	box-sizing: border-box;
}

.novodek-side-cart__qty-input::-webkit-outer-spin-button,
.novodek-side-cart__qty-input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.novodek-side-cart__remove,
.novodek-side-cart a.novodek-side-cart__remove {
	color: #e53935 !important;
	font-size: 13px !important;
	font-weight: 600 !important;
	text-decoration: none !important;
	float: none !important;
	position: static !important;
	inset: auto !important;
	width: auto !important;
	height: auto !important;
	line-height: 1.2 !important;
	background: none !important;
	border: 0 !important;
	padding: 0 !important;
	margin: 0 !important;
	opacity: 1 !important;
	text-indent: 0 !important;
	overflow: visible !important;
	box-shadow: none !important;
	border-radius: 0 !important;
}

.novodek-side-cart__remove:hover,
.novodek-side-cart a.novodek-side-cart__remove:hover {
	color: #c62828 !important;
	text-decoration: underline !important;
	background: none !important;
	border: 0 !important;
}

.novodek-side-cart__footer {
	flex: 0 0 auto;
	padding: 16px 20px 24px;
	border-top: 1px solid #e8e8e8;
	background: #fff;
}

.novodek-side-cart__total {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin: 0 0 16px;
	font-size: 16px;
	line-height: 1.3;
	color: #111;
}

.novodek-side-cart__total-label {
	font-weight: 500;
}

.novodek-side-cart__total-amount,
.novodek-side-cart__total-amount .amount,
.novodek-side-cart__total-amount .woocommerce-Price-amount {
	font-weight: 700;
	color: #111 !important;
}

.novodek-side-cart__buttons {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 10px;
	margin: 0;
}

.novodek-side-cart__checkout.button,
.novodek-side-cart a.novodek-side-cart__checkout {
	display: block !important;
	width: 100%;
	margin: 0 !important;
	padding: 14px 16px !important;
	border: 0 !important;
	border-radius: 2px !important;
	background: #1c3f60 !important;
	color: #fff !important;
	text-align: center;
	text-decoration: none !important;
	font-weight: 700;
	font-size: 15px;
	line-height: 1.2;
	float: none !important;
	box-shadow: none !important;
}

.novodek-side-cart__checkout:hover,
.novodek-side-cart a.novodek-side-cart__checkout:hover {
	background: #16324c !important;
	color: #fff !important;
}

.novodek-side-cart__view-cart {
	display: block;
	text-align: center;
	color: #1c3f60;
	font-weight: 600;
	font-size: 14px;
	text-decoration: none;
}

.novodek-side-cart__view-cart:hover {
	color: #ff4500;
	text-decoration: underline;
}

.novodek-side-cart__empty {
	margin: auto;
	padding: 40px 20px;
	text-align: center;
	color: #666;
	font-size: 15px;
}

body.novodek-side-cart-open {
	overflow: hidden;
}

@media (max-width: 480px) {
	.novodek-side-cart {
		width: 100%;
	}
}
