/*
 * Request a Quote page — Figma design implementation.
 *
 * Desktop (>1100px):
 * 1. Header spanning full width
 * 2. Products table spanning full width
 * 3. Bottom section: 2 columns
 *    - Left (~65%): Delete button + Contact form
 *    - Right (~35%): Totals card
 *
 * Tablet (861-1100px):
 * 1. Same layout, compressed widths
 *
 * Mobile (<860px):
 * 1. Single column stack
 */

.yith-request-a-quote-page {
	--quote-ink: #152d4c;
	--quote-muted: #697386;
	--quote-line: rgba(21, 45, 76, 0.1);
	--quote-soft: #f5f6f8;
	--quote-card: #ffffff;
	--quote-accent: #ff5a17;
	--quote-radius: 4px;
	--quote-gap: 24px;
}

.yith-request-a-quote-page .ywraq-wrapper {
	width: 100%;
	display: flex;
	flex-direction: column;

}

/* Hide plugin default wrappers and actions */
.yith-request-a-quote-page #yith-ywraq-products-form .update-list-wrapper,
.yith-request-a-quote-page .yith-ywraq-before-table,
.yith-request-a-quote-page .ywraq-wrapper:not(.ywraq-empty) .ywraq-form-table-wrapper {
	display: none !important;
}

.yith-request-a-quote-page .ywraq-wrapper.ywraq-empty .ywraq-form-table-wrapper {
	display: block !important;
}

/* HEADER ================================================================== */
.yith-request-a-quote-page .ykr-quote-page-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--quote-gap);
	margin: 0;
	padding: 14px 16px 16px;
	background: var(--quote-card);
	border-bottom: 1px solid var(--quote-line);
	border-radius: var(--quote-radius) var(--quote-radius) 0 0;
}

.yith-request-a-quote-page .ykr-quote-page-header .woocommerce-cart-page-title {
	margin: 0;
	color: var(--quote-ink);
	font-size: clamp(18px, 2vw, 26px);
	line-height: 1.2;
	font-weight: 700;
}

th.product-name.heading6.mb0 {
    display: none;
}
.yith-request-a-quote-page .woocommerce-cart-item-count {
	color: #999;
	font-size: 0.75em;
	font-weight: 600;
}

.yith-request-a-quote-page .ykr-quote-page-header .woocommerce-cartpage-text {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 1rem;
	font-size: 13px;
	line-height: 1.35;
}

.yith-request-a-quote-page .ykr-quote-page-header .woocommerce-cartpage-text p {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin: 0;
}

/* FORM & TABLE ============================================================ */
.yith-request-a-quote-page #yith-ywraq-products-form.ykr-quote-products-form {
	display: contents;
}
#yith-ywraq-products-form table{
    border-bottom: 1px solid var(--quote-line) !important;
}
/* PRODUCTS TABLE ========================================================== */
.yith-request-a-quote-page .ykr-quote-products-table {
	width: 100%;
	margin: 0 !important;
	padding: 0 16px;
	background: var(--quote-card);
	border: 0 !important;
	border-collapse: separate;
	border-spacing: 0 12px;
	box-shadow: none;
}

.yith-request-a-quote-page .ykr-quote-products-table thead tr,
.yith-request-a-quote-page .ykr-quote-products-table tbody tr.cart_item {
	display: grid;
	grid-template-columns: 32px 100px minmax(260px, 1fr) 130px 185px 140px;
	column-gap: 16px;
	align-items: center;
}
.yith-request-a-quote-page .ykr-quote-products-table th.product-quantity, .yith-request-a-quote-page .ykr-quote-products-table th.product-thumbnail{
	text-align: center !important;
}


.yith-request-a-quote-page .ykr-quote-products-table tbody tr.cart_item {
	padding: 12px 0;
	border-top: 1px solid var(--quote-line);
}

.yith-request-a-quote-page .ykr-quote-products-table th,
.yith-request-a-quote-page .ykr-quote-products-table td {
	min-width: 0;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	color: var(--quote-ink);
	vertical-align: middle;
}

.yith-request-a-quote-page .ykr-quote-products-table thead th {
	font-size: 18px;
	font-weight: 600;
	white-space: nowrap;
}

.yith-request-a-quote-page .ykr-quote-products-table .product-remove {
	grid-column: 1;
}

.yith-request-a-quote-page .ykr-quote-products-table .product-thumbnail {
	grid-column: 2;
}

.yith-request-a-quote-page .ykr-quote-products-table .product-name {
	grid-column: 3;
}

.yith-request-a-quote-page .ykr-quote-products-table span.ykr-quote-product-title {
    color: var(--color-text-heading, #0F1932);
    font-size: 0.85rem;
    font-style: normal;
    font-weight: 700;
}

.yith-request-a-quote-page .ykr-quote-products-table small.sku_product{
	display: none;
}

.yith-request-a-quote-page .ykr-quote-products-table .product-quantity {
	grid-column: 4;
	text-align: center;
}

.yith-request-a-quote-page .ykr-quote-products-table .product-price {
	grid-column: 5;
	text-align: center !important;
}

.yith-request-a-quote-page .ykr-quote-products-table .product-subtotal {
	grid-column: 6;
	text-align: right;
}

.yith-request-a-quote-page .ykr-quote-products-table .ykr-cart-thumbnail-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 92px;
	height: auto;
}

.yith-request-a-quote-page .ykr-quote-products-table .product-thumbnail img {
	display: block;
	width: auto;
	height: auto;
	object-fit: contain;
}

.yith-request-a-quote-page .ykr-quote-products-table .product-name > a,
.yith-request-a-quote-page .ykr-quote-products-table .product-name {
	font-size: 13px;
	line-height: 1.35;
	font-weight: 500;
	color: var(--quote-ink);
}

.yith-request-a-quote-page .ykr-quote-products-table .product-name ul {
	margin: 5px 0 0 !important;
	padding: 0;
	list-style: none;
	font-size: 12px;
	color: var(--quote-muted);
}

.yith-request-a-quote-page .ykr-quote-products-table .mobile-price {
	display: none;
}



/* REMOVE BUTTON ========================================================== */
.yith-request-a-quote-page .ykr-cart-item-remove {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	padding: 0;
	color: var(--quote-ink);
	background: transparent;
	border: 0;
	border-radius: 0;
	font-size: 16px;
	cursor: pointer;
}

.yith-request-a-quote-page .ykr-cart-item-remove:hover {
	color: inherit;
}

/* QUANTITY INPUT ========================================================= */
.ywraq-with-form .cart-qty-box {
	padding: unset;
	border-radius: var(--site-border-radius);
	border: 1px solid #E0E0E0;
	gap: unset;
	max-height: 44px;
}
.ywraq-with-form .cart-qty-box .quantity .qty {
	/* border: none;
	background: transparent;
	width: 2.5ch;
	text-align: center;
	padding: 0;
	box-shadow: none; */
	background: unset;
	padding: 0;
	text-align: center;
	font-weight: 500;
	margin: 0 !important;
		appearance: textfield;
	-moz-appearance: textfield;
}
.ywraq-with-form .cart-qty-box .quantity .qty::-webkit-outer-spin-button,
.ywraq-with-form .cart-qty-box .quantity .qty::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.ywraq-with-form .cart-qty-box .quantity,
.ywraq-with-form .cart-qty-box .cart-qty-plus,
.ywraq-with-form .cart-qty-box .cart-qty-minus {
	width: calc(2.75rem - 2px) !important;
	min-width: calc(2.75rem - 2px) !important;
	min-height: 42px !important;
	border: unset;
}
.ywraq-with-form .cart-qty-box .cart-qty-plus,
.ywraq-with-form .cart-qty-box .cart-qty-minus {
	border-radius: var(--site-border-radius);
	background: #DDDDE1;
	box-shadow: 0 -4px 4.6px 0 rgba(158, 158, 158, 0.35) inset;

	font-size: 20px !important;
	font-weight: 400 !important;
	line-height: calc(2.75rem - 1px) !important;
	text-align: center !important;
	padding: 0 !important;
	margin: 0 !important;
	vertical-align: middle !important;
	appearance: none;
	-webkit-appearance: none;
}


/* TABLE FOOTER =========================================================== */
.yith-request-a-quote-page .ykr-quote-table-footer {
	padding: 12px 16px;
	background: var(--quote-card);
	border-radius: 0 0 0 var(--quote-radius);
}

.yith-request-a-quote-page .ykr-quote-table-footer .ywraq_clean_list {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--quote-ink);
	font-size: 1rem;
	font-weight: 700;
	box-shadow: none;
	cursor: pointer;
	transition: color 0.2s;
}

.yith-request-a-quote-page .ykr-quote-table-footer .ywraq_clean_list:hover {
	color: var(--quote-accent);
}

.yith-request-a-quote-page .ykr-quote-table-footer .ywraq_clean_list::before {
	content: "\f2ed";
	font-family: "Font Awesome 5 Free", "FontAwesome";
	font-weight: 400;
}

/* BOTTOM SECTION: 2-COLUMN LAYOUT ======================================= */
.yith-request-a-quote-page .ykr-quote-bottom-section {
	display: grid;
	grid-template-columns: 6fr 3fr;
	margin-top: 0;
}

.yith-request-a-quote-page .ykr-quote-bottom-left {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.yith-request-a-quote-page .ykr-quote-bottom-right {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

/* CONTACT FORM (Moved by JS) ============================================ */
.yith-request-a-quote-page .yith-ywraq-mail-form-wrapper {
	margin: 0 !important;
	padding: 14px 16px;
	background: var(--quote-card);
	border-radius: var(--quote-radius);
    margin-right: 3rem !important;
    margin-top: 1rem !important;
}

.yith-ywraq-mail-form-wrapper h3{
	font-size: 18px !important;
}

.yith-request-a-quote-page .yith-ywraq-mail-form-wrapper h2,
.yith-request-a-quote-page .yith-ywraq-mail-form-wrapper h3,
.yith-request-a-quote-page .yith-ywraq-mail-form-wrapper .form-row-title {
	margin: 0 0 14px;
	color: var(--quote-ink);
	font-size: 15px;
	font-weight: 700;
}

.yith-request-a-quote-page .yith-ywraq-mail-form-wrapper form,
.yith-request-a-quote-page .yith-ywraq-mail-form-wrapper .yith-ywraq-mail-form {
	display: grid !important;
	grid-template-columns: 1fr 1fr;
	gap: 0px !important;
}

.yith-request-a-quote-page .yith-ywraq-mail-form-wrapper .form-row,
.yith-request-a-quote-page .yith-ywraq-mail-form-wrapper p,
.yith-request-a-quote-page .yith-ywraq-mail-form-wrapper li {
	margin: 0 !important;
}

.yith-request-a-quote-page .yith-ywraq-mail-form-wrapper .form-row {
	float: none !important;
	width: 100% !important;
	clear: none !important;
}


.yith-request-a-quote-page .yith-ywraq-mail-form-wrapper .ykr-quote-layout-row-titled {
	align-items: start;
}

.yith-request-a-quote-page .yith-ywraq-mail-form-wrapper .ykr-quote-layout-column {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}

.yith-request-a-quote-page .yith-ywraq-mail-form-wrapper .ykr-quote-layout-column-title {
	margin: 14px 0 4px;
	color: var(--quote-ink);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.3;
}

.yith-request-a-quote-page .yith-ywraq-mail-form-wrapper .form-row-wide,
.yith-request-a-quote-page .yith-ywraq-mail-form-wrapper .raq-send-request,
.yith-request-a-quote-page .yith-ywraq-mail-form-wrapper .ywraq-submit-button,
.yith-request-a-quote-page .yith-ywraq-mail-form-wrapper [type="submit"] {
	grid-column: 1 / -1;
}

.yith-request-a-quote-page .yith-ywraq-mail-form-wrapper .raq-send-request-row {
	display: none;
}

.yith-request-a-quote-page .yith-ywraq-mail-form-wrapper .ykr-quote-layout-title {
	grid-column: 1 / -1;
	margin: 14px 0 4px !important;
	color: var(--quote-ink);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.3;
}

.yith-request-a-quote-page .yith-ywraq-mail-form-wrapper .ykr-quote-layout-title:first-of-type {
	margin-top: 0 !important;
}

.yith-request-a-quote-page .yith-ywraq-mail-form-wrapper .ykr-quote-layout-row {
	grid-column: 1 / -1;
	display: grid;
	gap: 10px 12px;
	width: 100%;
}

.yith-request-a-quote-page .yith-ywraq-mail-form-wrapper .ykr-quote-layout-row-2 {
	grid-template-columns: 1fr 1fr;
}

.yith-request-a-quote-page .yith-ywraq-mail-form-wrapper .ykr-quote-layout-row-1 {
	grid-template-columns: 1fr;
}

.yith-request-a-quote-page .yith-ywraq-mail-form-wrapper .ykr-quote-layout-row > .form-row {
	margin: 0 !important;
	margin-bottom: 8px !important;
}

.yith-request-a-quote-page .yith-ywraq-mail-form-wrapper .ykr-quote-layout-row .form-row:not(#billing_vat_field, #billing_name_prefix_field, #land_field, #bedrijf_field) .woocommerce-input-wrapper:after{
	content: "*";
    border-radius: 0px var(--sp-4) var(--sp-4) 0px;
    position: absolute;
    top: 0px;
    right: 0;
    height: 37px;
    max-height: calc(37px - 10px);
    width: 22px;
    font-size: 1.55rem;
    line-height: 1;
    padding-top: 10px;
    font-weight: lighter;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--yk-dark-blue, #264999);
    pointer-events: none;
}



.woocommerce-input-wrapper .select2-selection:after{
	top: 50%;
}

.yith-request-a-quote-page .yith-ywraq-mail-form-wrapper .ykr-quote-layout-row > .form-row .woocommerce-input-wrapper,
.yith-request-a-quote-page .yith-ywraq-mail-form-wrapper .ykr-quote-layout-row > .form-row .input-text:not(.iti__tel-input),
.yith-request-a-quote-page .yith-ywraq-mail-form-wrapper .ykr-quote-layout-row > .form-row select,
.yith-request-a-quote-page .yith-ywraq-mail-form-wrapper .ykr-quote-layout-row > .form-row textarea {
	width: 100% !important;
	max-width: 100% !important;
}

.yith-request-a-quote-page .yith-ywraq-mail-form-wrapper label {
	display: block;
	font-size: .875rem;
	font-weight: 700;
	color: var(--color-content-heading);
	margin-bottom: .25rem !important;
	margin-top: .75rem;
}

.yith-request-a-quote-page .yith-ywraq-mail-form-wrapper span.required {
	color: var(--yk-accent);
	text-decoration: none;
	margin-left: 2px;
	display: none !important;
}

.yith-request-a-quote-page .yith-ywraq-mail-form-wrapper label abbr[title] {
	text-decoration: none;
}

.yith-request-a-quote-page .yith-ywraq-mail-form-wrapper input[type="text"],
.yith-request-a-quote-page .yith-ywraq-mail-form-wrapper input[type="email"],
.yith-request-a-quote-page .yith-ywraq-mail-form-wrapper input[type="tel"],
.yith-request-a-quote-page .yith-ywraq-mail-form-wrapper input[type="number"],
.yith-request-a-quote-page .yith-ywraq-mail-form-wrapper input[type="password"],
.yith-request-a-quote-page .yith-ywraq-mail-form-wrapper select,
.yith-request-a-quote-page .yith-ywraq-mail-form-wrapper textarea,
.yith-request-a-quote-page .yith-ywraq-mail-form-wrapper .woocommerce-input-wrapper .select2-selection {
	width: 100%;
	min-height: 37px;
	height: 37px;
	margin: 0;
	padding: .5rem 1.75rem .5rem .75rem;
	border: 1px solid rgba(224, 224, 224, 0.35);
	border-radius: var(--sp-4);
	font-family: var(--font-body);
	line-height: 1.5;
	font-size: 14px;
	color: var(--yk-text-heading);
	background: #FAFAFA;
	outline: none;
	appearance: none;
	-webkit-appearance: none;
	transition: border-color .2s, box-shadow .2s;
	box-shadow: none;
}

.yith-request-a-quote-page .yith-ywraq-mail-form-wrapper textarea {
	height: auto;
	min-height: 100px;
	padding: var(--sp-12) var(--sp-16);
	resize: vertical;
}

.yith-request-a-quote-page .yith-ywraq-mail-form-wrapper input:focus,
.yith-request-a-quote-page .yith-ywraq-mail-form-wrapper select:focus,
.yith-request-a-quote-page .yith-ywraq-mail-form-wrapper textarea:focus {
	border-color: var(--yk-blue);
	box-shadow: 0 0 0 3px rgba(38, 73, 153, .12);
}

.yith-request-a-quote-page .yith-ywraq-mail-form-wrapper select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23616161'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	background-size: 20px;
	padding-right: 40px;
	cursor: pointer;
}

.yith-request-a-quote-page .yith-ywraq-mail-form-wrapper .woocommerce-invalid .woocommerce-input-wrapper input,
.yith-request-a-quote-page .yith-ywraq-mail-form-wrapper .woocommerce-invalid .woocommerce-input-wrapper select,
.yith-request-a-quote-page .yith-ywraq-mail-form-wrapper .woocommerce-invalid input,
.yith-request-a-quote-page .yith-ywraq-mail-form-wrapper .woocommerce-invalid select {
	border-color: var(--yk-error) !important;
}

.yith-request-a-quote-page .yith-ywraq-mail-form-wrapper .woocommerce-validated .woocommerce-input-wrapper input,
.yith-request-a-quote-page .yith-ywraq-mail-form-wrapper .woocommerce-validated .woocommerce-input-wrapper select,
.yith-request-a-quote-page .yith-ywraq-mail-form-wrapper .woocommerce-validated input,
.yith-request-a-quote-page .yith-ywraq-mail-form-wrapper .woocommerce-validated select {
	border-color: var(--yk-success) !important;
}

.yith-request-a-quote-page .yith-ywraq-mail-form-wrapper .iti {
	width: 100%;
	display: flex;
	align-items: stretch;
	flex-wrap: wrap;
}
.yith-request-a-quote-page .iti__arrow{
	display: none !important;
}

.yith-request-a-quote-page .yith-ywraq-mail-form-wrapper .iti .iti__country-container {
	position: relative;
	flex: 0 0 33%;
}
body.yith-request-a-quote-page .yith-ywraq-mail-form-wrapper .iti .iti__tel-input {
	position: relative;
	flex: 0 0 66% !important;
	max-width: 66% !important;
}

.yith-request-a-quote-page .yith-ywraq-mail-form-wrapper .iti .iti__country-container,
.yith-request-a-quote-page .yith-ywraq-mail-form-wrapper .iti .iti__country-container .iti__selected-country-primary {
	padding: 0;
}

.yith-request-a-quote-page .yith-ywraq-mail-form-wrapper .iti .iti__country-container button.iti__selected-country {
	width: -webkit-fill-available;
	padding: .5rem .75rem;
	border-radius: .25rem;
	border: 1px solid rgba(224, 224, 224, 0.35);
	background: #FAFAFA;
	max-height: 37px;
	margin-right: .75rem;
}

.yith-request-a-quote-page .yith-ywraq-mail-form-wrapper .iti .iti__country-container button.iti__selected-country::after {
	content: '\f078';
	font-family: 'fontawesome';
	font-size: .75rem;
	margin-left: .5rem;
}

.yith-request-a-quote-page .yith-ywraq-mail-form-wrapper .iti input[type="tel"] {
	min-width: unset;
	padding: .5rem 1.75rem .5rem .75rem !important;
	flex: 1 1 auto !important;
	width: auto !important;
	min-width: 0;
}

/* SUBMIT BUTTON ========================================================== */
.yith-request-a-quote-page .yith-ywraq-mail-form-wrapper button[type="submit"],
.yith-request-a-quote-page .yith-ywraq-mail-form-wrapper input[type="submit"],
.yith-request-a-quote-page .yith-ywraq-mail-form-wrapper .raq-send-request,
.yith-request-a-quote-page .yith-ywraq-mail-form-wrapper .ywraq-submit-button {
	min-height: 40px;
	margin-top: 8px;
	padding: 10px 18px;
	border: 0;
	border-radius: 0;
	background: var(--quote-accent);
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	text-align: center;
	box-shadow: none;
	cursor: pointer;
	transition: filter 0.2s;
}

.yith-request-a-quote-page .yith-ywraq-mail-form-wrapper button[type="submit"]:hover,
.yith-request-a-quote-page .yith-ywraq-mail-form-wrapper input[type="submit"]:hover,
.yith-request-a-quote-page .yith-ywraq-mail-form-wrapper .raq-send-request:hover,
.yith-request-a-quote-page .yith-ywraq-mail-form-wrapper .ywraq-submit-button:hover {
	filter: brightness(0.94);
}

/* TOTALS CARD (Right Column) ============================================ */
.yith-request-a-quote-page .raq-totals {
    text-align: right;
    padding: 0.6rem 0rem !important;
}

.yith-request-a-quote-page .ykr-quote-totals-card {
	margin: 0 !important;
	padding: 14px 16px;
	background: var(--quote-card);
	border-radius: 0px 0px var(--quote-radius) var(--quote-radius);
}

.yith-request-a-quote-page .ykr-quote-totals-card.leka-cart-loading-host {
	position: relative;
}

.yith-request-a-quote-page .ykr-quote-totals-card .leka-cart-loading-overlay {
	position: absolute;
	inset: 0;
	z-index: 100;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(2px);
}

.yith-request-a-quote-page .ykr-quote-totals-card .leka-cart-loading-spinner {
	width: 36px;
	height: 36px;
	border: 3px solid rgba(21, 45, 76, 0.2);
	border-top-color: #152d4c;
	border-radius: 50%;
	animation: leka-cart-spin 0.8s linear infinite;
}

.yith-request-a-quote-page .ykr-quote-totals-card .leka-cart-loading-text {
	font-family: var(--font-body, 'Area Normal', sans-serif);
	font-size: 14px;
	font-weight: 600;
	color: #152d4c;
}

.yith-request-a-quote-page .ykr-quote-totals-card.leka-cart-is-reloading {
	cursor: progress;
}

@keyframes leka-cart-spin {
	to {
		transform: rotate(360deg);
	}
}

.yith-request-a-quote-page .ykr-quote-totals-table {
	width: 100%;
	margin: 0 !important;
	border: 0 !important;
	border-collapse: collapse;
}

.yith-request-a-quote-page .ykr-quote-totals-table th,
.yith-request-a-quote-page .ykr-quote-totals-table td {
	border: none;
	padding: 0.6rem 0rem;
}

.ykr-quote-transport-row .pickup-field-heading{
	display: none;
}

tr.ykr-quote-grand-total-row.order-total {
    color: black;
	border-top: 1px solid rgba(21, 45, 76, 0.35);
}
.ykr-quote-products-total-row{
	color: black;
}
tr.ykr-quote-grand-total-row.order-total th,
tr.ykr-quote-grand-total-row.order-total td {
	border-bottom: none;
}

.yith-request-a-quote-page .ykr-quote-totals-table td {
	text-align: right;
	/* font-weight: 500; */
}

.yith-request-a-quote-page .ykr-quote-shipping-status-warning {
	display: block;
	padding: 6px 8px;
	background: rgba(255, 90, 23, 0.08);
	border-left: 2px solid var(--quote-accent);
	color: var(--quote-ink);
	font-size: 12px;
	font-weight: 500;
	line-height: 1.4;
}

.ykr-quote-grand-total-row.order-total th,
.ykr-quote-grand-total-row.order-total td {
	padding: 1rem 0rem !important;
}

.ykr-quote-vat-row th,
.ykr-quote-vat-row td {
	padding-bottom: 1rem !important;
}

.yith-request-a-quote-page .ykr-quote-transport-options {
	display: flex;
	flex-direction: column;
	gap: 8px;
	text-align: left;
}

.yith-request-a-quote-page .ykr-transport-option {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin: 0;
	padding: 12px 14px;
	border: 1px solid var(--quote-line);
	border-radius: 6px;
	background: #fff;
	cursor: pointer;
	transition: border-color 0.2s, background-color 0.2s, box-shadow 0.2s;
}

.yith-request-a-quote-page .ykr-transport-option:hover {
	border-color: var(--quote-accent);
	background: rgba(255, 90, 23, 0.02);
}

.yith-request-a-quote-page .ykr-quote-transport-input {
	margin: 4px 0 0 0;
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	cursor: pointer;
	accent-color: var(--quote-accent);
}

.yith-request-a-quote-page .ykr-transport-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	flex-shrink: 0;
	background: rgba(21, 45, 76, 0.08);
	border-radius: 6px;
	color: var(--quote-ink);
	font-size: 16px;
}

.yith-request-a-quote-page .ykr-transport-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.yith-request-a-quote-page .ykr-transport-title {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: var(--quote-ink);
	line-height: 1.35;
}

.yith-request-a-quote-page .ykr-transport-description {
	display: block;
	font-size: 12px;
	color: var(--quote-muted);
	line-height: 1.4;
}

.yith-request-a-quote-page .ykr-transport-info-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	color: var(--quote-accent);
	font-size: 14px;
	cursor: help;
}

.yith-request-a-quote-page .ykr-quote-shipping-note {
	margin: 6px 0 0 0;
	padding: 6px 8px;
	background: rgba(21, 45, 76, 0.05);
	border-left: 2px solid var(--quote-accent);
	font-size: 11px;
	color: var(--quote-ink);
	line-height: 1.4;
}

/* SUBMIT BUTTON ========================================================== */
.yith-request-a-quote-page .ykr-quote-submit-btn {
	display: block;
	width: 100%;
	min-height: 44px;
	padding: 12px 18px;
	border: 0;
	border-radius: 0;
	background: var(--quote-accent) !important;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	text-align: center;
	box-shadow: none;
	cursor: pointer;
	transition: filter 0.2s, background-color 0.2s;
}

.yith-request-a-quote-page .ykr-quote-submit-btn:hover {
	filter: brightness(0.94);
	background-color: var(--quote-accent);
}

.yith-request-a-quote-page .ykr-quote-submit-btn:active {
	filter: brightness(0.88);
}

.yith-request-a-quote-page .ykr-quote-submit-btn.is-loading {
	opacity: 0.8;
	cursor: wait;
	pointer-events: none;
	position: relative;
}

.yith-request-a-quote-page .ykr-quote-submit-btn.is-loading::before {
	content: '';
	position: absolute;
	left: 16px;
	top: 50%;
	width: 14px;
	height: 14px;
	margin-top: -7px;
	border: 2px solid rgba(255, 255, 255, 0.45);
	border-top-color: #fff;
	border-radius: 50%;
	animation: ykr-quote-submit-spin 0.8s linear infinite;
}

@keyframes ykr-quote-submit-spin {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

/* Checked State for Transport Options */
.yith-request-a-quote-page .ykr-quote-transport-input:checked + .ykr-transport-icon {
	background: var(--quote-accent);
	color: #fff;
}

.yith-request-a-quote-page .ykr-quote-transport-input:checked ~ .ykr-transport-content .ykr-transport-title {
	color: var(--quote-accent);
	font-weight: 700;
}

.yith-request-a-quote-page .ykr-transport-option:has(input:checked) {
	border-color: var(--quote-accent);
	background: rgba(255, 90, 23, 0.04);
	box-shadow: 0 0 0 2px rgba(255, 90, 23, 0.1);
}

/* Disabled State for Unavailable Options */
.yith-request-a-quote-page .ykr-transport-option-disabled {
	opacity: 0.6;
	cursor: not-allowed;
	background: rgba(21, 45, 76, 0.02);
	border-color: var(--quote-line);
}

.yith-request-a-quote-page .ykr-transport-option-disabled .ykr-transport-title {
	color: var(--quote-muted);
	font-weight: 500;
}

.yith-request-a-quote-page .ykr-transport-option-disabled .ykr-transport-icon {
	background: rgba(21, 45, 76, 0.05);
	color: var(--quote-muted);
}

.yith-request-a-quote-page .ykr-transport-option-disabled:hover {
	border-color: var(--quote-line);
	background: rgba(21, 45, 76, 0.02);
}


/* TABLET ================================================================= */
@media (max-width: 1100px) {
	.yith-request-a-quote-page {
		--quote-gap: 18px;
	}

	.yith-request-a-quote-page .ykr-quote-products-table thead tr,
	.yith-request-a-quote-page .ykr-quote-products-table tbody tr.cart_item {
		grid-template-columns: 28px 60px minmax(200px, 1fr) 100px 100px 120px;
		column-gap: 12px;
	}

	.yith-request-a-quote-page .ykr-quote-products-table .ykr-cart-thumbnail-inner {
		width: 60px;
		height: 55px;
	}

	.yith-request-a-quote-page .ykr-quote-products-table .product-thumbnail img {
		max-width: 60px;
		max-height: 55px;
	}
}

/* MOBILE ================================================================= */
@media (max-width: 860px) {
	.yith-request-a-quote-page .ywraq-wrapper {
		gap: 0px;
	}

	.yith-request-a-quote-page .ykr-quote-bottom-section {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.yith-request-a-quote-page .ykr-quote-page-header {
		flex-direction: column;
		align-items: flex-start;
		padding: 12px;
		gap: 12px;
	}

	.yith-request-a-quote-page .ykr-quote-page-header .woocommerce-cartpage-text {
		justify-content: flex-start;
	}

	.yith-request-a-quote-page .ykr-quote-products-table {
		padding: 0 12px;
	}

	.yith-request-a-quote-page .ykr-quote-products-table thead {
		display: none;
	}

	.yith-request-a-quote-page .ykr-quote-products-table tbody tr.cart_item {
		display: flex;
		flex-wrap: wrap;
		column-gap: 10px;
		row-gap: 6px;
		align-items: start;
		padding: 12px 0;
		border-spacing: 0;
		position: relative;
	}

	.yith-request-a-quote-page .ykr-quote-products-table .product-remove {
		position: absolute;
		right: 5px;
		top: 5px;
	}

	.yith-request-a-quote-page .ykr-quote-products-table .product-thumbnail {
		grid-area: thumb;
	}

	.yith-request-a-quote-page .ykr-quote-products-table .product-name {
		grid-area: name;
	}

	.yith-request-a-quote-page .ykr-quote-products-table .product-quantity {
		grid-area: quantity;
		text-align: left;
	}

	.yith-request-a-quote-page .ykr-quote-products-table .product-price {
		grid-area: price;
		margin-left: auto;
	}
	.yith-request-a-quote-page .ykr-quote-products-table .product-price:before {
		display: none;
	}

	.yith-request-a-quote-page .ykr-quote-products-table .product-subtotal {
		grid-area: subtotal;
		text-align: left;
		font-weight: 700;
	}

	.yith-request-a-quote-page .ykr-quote-products-table .product-price::before,
	.yith-request-a-quote-page .ykr-quote-products-table .product-subtotal::before {
		content: attr(data-title) ": ";
		font-weight: 500;
	}

	.yith-request-a-quote-page .ykr-quote-products-table .ykr-cart-thumbnail-inner {
		width: 60px;
		height: 55px;
	}

	.yith-request-a-quote-page .ykr-quote-products-table .product-thumbnail img {
		max-width: 60px;
		max-height: 55px;
	}

	.yith-request-a-quote-page .yith-ywraq-mail-form-wrapper {
		padding: 12px;
	}

	.yith-request-a-quote-page .yith-ywraq-mail-form-wrapper form,
	.yith-request-a-quote-page .yith-ywraq-mail-form-wrapper .yith-ywraq-mail-form {
		grid-template-columns: 1fr;
	}

	.yith-request-a-quote-page .yith-ywraq-mail-form-wrapper .ykr-quote-layout-row-2 {
		grid-template-columns: 1fr;
	}

	.yith-request-a-quote-page .cart-qty-actions,
	.yith-request-a-quote-page .cart-qty-wrapper {
		justify-content: flex-start;
	}
}

@media (max-width: 480px) {
	.yith-request-a-quote-page .ykr-quote-products-table thead tr,
	.yith-request-a-quote-page .ykr-quote-products-table tbody tr.cart_item {
		grid-template-columns: 20px 50px 1fr;
	}

	.yith-request-a-quote-page .ykr-quote-products-table .ykr-cart-thumbnail-inner {
		width: 50px;
		height: 48px;
	}

	.yith-request-a-quote-page .ykr-quote-products-table .product-thumbnail img {
		max-width: 50px;
		max-height: 48px;
	}
}


/* --- Heading above the cards --- */
.pickup-field-heading {
    display:        none !important;
    color:          var(--color-text-heading, #0F1932) !important;
    font-family:    var(--Font-Family-Heading, Montserrat), sans-serif !important;
    font-size:      var(--Font-Size-XL, 20px) !important;
    font-style:     normal !important;
    font-weight:    700 !important;
    line-height:    125% !important;
    letter-spacing: -0.4px !important;
    margin-bottom:  12px !important;
}

/* --- Card list --- */
.pickup-radio-options {
    display:        flex;
    flex-direction: column;
    gap:            8px;
    padding:        0;
    margin:         0px 0 0;
}

.pickup-radio-options li {
    list-style-type: none;
    margin-bottom: 0px;
}

/* --- Individual card label --- */
.pickup-radio-options li label {
    display:         flex !important;
    flex-direction:  row !important;
    flex-wrap:       wrap !important;
    align-items:     center;
    gap:             0;
    padding:         12px 16px;
    cursor:          pointer;
    color:           var(--color-text-body, #616161) !important;
    font-size:       var(--Font-Size-S, 14px) !important;
    font-style:      normal !important;
    font-weight:     500 !important;
    line-height:     150% !important;
    border-radius:   var(--Corner-radius-Surface, 4px);
    border:          1px solid rgba(224, 224, 224, 0.35);
    background:      var(--Gray-50, #FAFAFA);
    transition:      border 0.15s ease, background 0.15s ease;
}

/* Selected state */
.pickup-radio-options li:has(input[type="radio"]:checked) label {
    border:     2px solid var(--Brand-Green, #4FA0C1);
    background: rgba(79, 160, 193, 0.10);
}

/* Keyboard focus ring */
.pickup-radio-options li:has(input[type="radio"]:focus-visible) label {
    outline:        2px solid var(--Brand-Green, #4FA0C1);
    outline-offset: 2px;
}

/* Hide native radio visually â€” keep it accessible/focusable */
.pickup-radio-options li label input[type="radio"] {
    position: absolute;
    opacity:  0;
    width:    1px;
    height:   1px;
    margin:   -1px;
    overflow: hidden;
    clip:     rect(0 0 0 0);
}

/* --- Icon + label row inside card --- */
.pickup-option-icon-text {
    display:        flex !important;
    flex-direction: row !important;
    align-items:    center;
    gap:            12px;
    width:          100%;
}

.pickup-option-icon-text span {
    color:       #616161 !important;
    font-family: "Area Normal", sans-serif !important;
    font-size:   14px !important;
    font-style:  normal !important;
    font-weight: 500 !important;
    line-height: 150% !important;
}

.pickup-option-icon {
    display:     flex;
    align-items: center;
    flex-shrink: 0;
}

/* --- Subtext below icon row --- */
.pickup-option-subtext {
    color:       var(--color-text-body, #616161) !important;
    font-family: "Area Normal", sans-serif !important;
    font-size:   12px !important;
    font-style:  normal !important;
    font-weight: 500 !important;
    line-height: 150% !important;
    text-align:  left !important;
}

/* --- Extra info / tooltip area --- */
.pickup-option-extra-info {
    position: relative;
}

.pickup-option-extra-info .pickup-option-subtext {
    display:       block;
    padding-right: 30px;
}

.more-info-icon {
    position:        absolute;
    top:             0;
    right:           0;
    width:           20px;
    height:          20px;
    display:         flex;
    justify-content: center;
    align-items:     center;
}

.tooltip-popup {
    position:       absolute;
    background:     #333;
    color:          #fff;
    padding:        6px 10px;
    border-radius:  4px;
    font-size:      12px;
    line-height:    1.4;
    max-width:      220px;
    white-space:    normal;
    z-index:        9999;
    pointer-events: none;
}

.tooltip-popup::after {
    content: '';
    position: absolute;
    border:   5px solid transparent;
}

.tooltip-popup.tooltip-top::after {
    top:       100%;
    left:      50%;
    transform: translateX(-50%);
    border-top-color: #333;
}


@media screen and (max-width: 768px) {
    .ywraq_responsive .product-price {
        display: block !important;
    }
}