/* GCL Cart CSS - from cart.php L965-2472 - GCL-CLEANUP 2026-01-31 */
/* ==================== HELPERS ==================== */
.gcl-desktop-only { display: block; }
.gcl-mobile-only { display: none; }

@media (max-width: 768px) {
    .gcl-desktop-only { display: none !important; }
    .gcl-mobile-only { display: block !important; }
}

/* ==================== BASE STYLES ==================== */

.cart-container, .bc-container {
    max-width: 1536px;
}

.gcl-cart-page {
	background-color: #f4f4f4;
	min-height: 100vh;
	padding-bottom: 60px;
}

.gcl-breadcrumbs ul {
	display: flex;
	gap: 12px;
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 12px;
	color: #6b7280;
}

.gcl-breadcrumbs li.active span {
	font-weight: 600;
	color: #111827;
}

.gcl-breadcrumbs a {
	color: #6b7280;
	text-decoration: none;
}

.gcl-breadcrumbs a:hover:not(.disabled) {
	color: #111827;
}

.gcl-breadcrumbs a.disabled {
	opacity: 0.5;
	pointer-events: none;
}

.gcl-cart-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 24px;
}

.gcl-cart-header h1 {
	font-size: 24px;
	font-weight: 700;
	color: #111827;
	margin: 0;
}

.gcl-back-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: #6b7280;
	text-decoration: none;
}

.gcl-back-link:hover {
	color: #111827;
}

.gcl-cart-grid {
	display: grid !important;
	grid-template-columns: 1fr auto;
	gap: 1.65rem;
	width: 100%;
}

/* Notice'y WooCommerce w koszyku – zakres tylko do .gcl-cart-notices, bez wpływu na checkout/myaccount */
.gcl-cart-notices .woocommerce-message,
.gcl-cart-notices .woocommerce-info,
.gcl-cart-notices .woocommerce-error {
	font-weight: 500;
	padding: 1rem 0;
}
.gcl-cart-notices .woocommerce-error {
	list-style: none;
	padding-left: 0;
}
.gcl-cart-notices .woocommerce-error li {
	margin-bottom: 0.25rem;
}

@media (max-width: 1024px) {
	.gcl-cart-grid {
		grid-template-columns: 1fr;
	}
}

.gcl-cart-items {
	width: 100%;
}

.gcl-cart-sidebar {
	width: 100%;
}

/* ==================== CART ITEM ==================== */
.gcl-cart-item {
	background: white;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 24px;
	margin-bottom: 32px;
	position: relative;
}

.gcl-project-name {
	font-size: 12px;
	color: #6b7280;
	margin-bottom: 16px;
}

.gcl-project-name strong {
	font-weight: 600;
	color: #111827;
}

.gcl-project-name-top {
	text-align: center;
	font-size: 12px;
	color: #000000;
	margin: -40px auto 24px auto;
	padding: 8px 12px;
	background: #ffffff;
	border-radius: 8px;
	max-width: fit-content;
	position: relative;
	z-index: 1;
}

@media (max-width: 768px) {
	.gcl-project-name-top {
		text-align: left;
		margin: 0 0 12px 0;
		padding-bottom: 0;
		border-bottom: none;
	}
}

.gcl-item-wrapper {
	position: relative;
	padding-top: 0;
}

.gcl-item-actions-corner {
	position: absolute;
	top: -24px;
	right: 0;
	display: flex;
	gap: 6px;
	align-items: center;
	z-index: 10;
}

.gcl-item-main {
	display: flex;
	gap: 24px;
	align-items: flex-start;
	padding-top: 0;
}

.gcl-item-image {
	flex-shrink: 0;
	width: 240px;
	height: 240px;
	border-radius: 12px;
	overflow: hidden;
	background: #f3f4f6;
}

.gcl-item-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gcl-item-image.personalized img {
    object-fit: contain;
    width: 92%;
}

.gcl-item-image.personalized {
    text-align: center;
}

.gcl-item-details {
	flex: 1;
	padding-top: 0;
	min-width: 0;
	display: flex;
	flex-direction: column;
	margin-block: auto;
}

.gcl-item-meta.gcl-item-name,
.gcl-item-name {
	font-size: 16px;
	font-weight: 700;
	color: #111827;
	margin: 0 0 8px 0;
}
.gcl-item-meta {
	font-size: 14px;
	color: #6b7280;
	margin-bottom: 4px;
}

.gcl-meta-label {
	font-weight: 500;
	color: #111827;
}

.gcl-item-price {
	font-size: 1.35rem;
	font-weight: 700;
	color: #e3335a;
	margin-top: auto;
	padding-top: 12px;
	width: fit-content;
}

/* Ceny produktów personalizowanych */
.gcl-price-print,
.gcl-price-total,
.gcl-price-discount {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	font-size: 14px;
	font-weight: 500;
	color: #374151;
}

.gcl-price-print,
.gcl-price-discount {
	margin-bottom: 4px;
}

.gcl-discount-highlight {
	color: #10b981;
	font-weight: 600;
}

.gcl-price-label {
	color: #6b7280;
	font-weight: 400;
}

.gcl-price-value {
	font-weight: 600;
}

.gcl-price-highlight {
	color: #e3335a;
	font-size: 1.35rem;
	font-weight: 700;
}

.gcl-price-pink {
	color: #e3335a !important;
}

.gcl-price-pink .woocommerce-Price-amount {
	color: #e3335a !important;
}

.gcl-price-old {
	text-decoration: line-through;
	color: #6b7280;
	font-weight: 400;
	font-size: 1.35rem;
}

.gcl-price-old .woocommerce-Price-amount {
	color: #6b7280;
	text-decoration: line-through;
}

/* ==================== DESKTOP CONTROLS ==================== */
.gcl-icon-btn-small,
a.gcl-icon-btn-small,
button.gcl-icon-btn-small {
	width: 48px !important;
	height: 48px !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	border: 1.5px solid #e5e7eb !important;
	border-radius: 50% !important;
	background: white !important;
	color: #333333 !important;
	cursor: pointer !important;
	transition: all 0.2s !important;
	padding: 0 !important;
	margin: 0 !important;
	text-decoration: none !important;
	flex-shrink: 0 !important;
}

.gcl-icon-btn-small svg {
	width: 23px !important;
	height: 24px !important;
	stroke-width: 2 !important;
	pointer-events: none !important;
}

.gcl-icon-btn-small:hover {
	border-color: #9ca3af !important;
	color: #111827 !important;
}

.gcl-icon-btn-small.gcl-icon-heart:hover {
	border-color: #f472b6 !important;
	color: #e3335a !important;
}

.gcl-icon-btn-small.gcl-icon-heart.active {
	border-color: #e3335a !important;
	color: #e3335a !important;
	background: #fce7f3 !important;
}

.gcl-icon-btn-small .heart-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 16px;
	height: 16px;
	position: relative;
	pointer-events: none;
}

.gcl-icon-btn-small .heart-outline {
	display: block !important;
	position: absolute;
}

.gcl-icon-btn-small .heart-filled {
	display: none !important;
	position: absolute;
}

.gcl-icon-btn-small.gcl-icon-heart.active .heart-outline {
	display: none !important;
}

.gcl-icon-btn-small.gcl-icon-heart.active .heart-filled {
	display: block !important;
}

.gcl-qty-controls {
	display: inline-flex;
	align-items: center;
	/* gap: 6px; */
	border: 1.5px solid #e5e7eb;
	border-radius: 30px;
	padding: 4px 10px;
	background: white;
	height: 32px;
}

.gcl-qty-btn {
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: none;
	border: none;
	color: #6b7280;
	cursor: pointer;
	transition: all 0.2s;
	padding: 0;
	flex-shrink: 0;
}

.gcl-qty-btn svg {
	width: 16px;
	height: 16px;
	stroke-width: 2.5;
	pointer-events: none;
}

.gcl-qty-btn:hover:not(:disabled) {
	color: #111827;
	background: #f3f4f6;
	border-radius: 4px;
}

.gcl-qty-btn:disabled {
	opacity: 0.3;
	cursor: not-allowed;
}

.gcl-qty-btn.gcl-qty-remove:hover:not(:disabled) {
	color: #ef4444;
}

/* Input qty – możliwość ręcznego wpisania liczby */
.gcl-qty-display.gcl-qty-input-visible,
.gcl-mobile-qty-num.gcl-qty-input-visible {
	width: 100%;
	/* min-width: 28px; */
	max-width: 40px;
	height: 24px;
	padding: 0 4px;
	text-align: center;
	font-size: 14px;
	font-weight: 600;
	color: #111827;
	border: none;
	background: transparent;
	-moz-appearance: textfield;
}
.gcl-qty-display.gcl-qty-input-visible::-webkit-outer-spin-button,
.gcl-qty-display.gcl-qty-input-visible::-webkit-inner-spin-button,
.gcl-mobile-qty-num.gcl-qty-input-visible::-webkit-outer-spin-button,
.gcl-mobile-qty-num.gcl-qty-input-visible::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
.gcl-qty-display.gcl-qty-input-visible:focus,
.gcl-mobile-qty-num.gcl-qty-input-visible:focus {
	outline: 1px solid #9ca3af;
	border-radius: 4px;
}

/* ==================== SEPARATOR ==================== */
.gcl-separator-with-plus {
	display: flex;
	align-items: center;
	gap: 32px;
	margin: 24px 0;
	width: 100%;
}

.gcl-separator-line {
	flex: 1;
	height: 2.5px;
	background: #77777B;
}

.gcl-separator-plus {
	font-size: 30px !important;
	font-weight: 250 !important;
	color: #77777B !important;
	line-height: 1 !important;
	user-select: none !important;
}

/* ==================== OPTIONS (Desktop) ==================== */
.gcl-item-options {
	margin: 0;
	width: 100%;
}

.gcl-options-layout {
	display: grid;
	gap: 16px;
	width: 100%;
	grid-template-columns: auto auto;
}

.gcl-option-main {
	display: flex;
	gap: 16px;
	align-items: center;
	padding: 0;
	border: none;
	width: 100%;
}

.gcl-option-image-large {
	width: 6.25rem;
	height: 6.25rem;
	flex-shrink: 0;
	border-radius: 8px;
	overflow: hidden;
	background: #f3f4f6;
}

.gcl-option-image-large img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gcl-option-info-main {
	flex: 1;
}

.gcl-option-title {
	font-size: 14px;
	font-weight: 600;
	color: #111827;
	margin-bottom: 4px;
}

.gcl-option-desc {
	font-size: 13px;
	color: #6b7280;
	margin-bottom: 8px;
}

.gcl-option-price-main {
	font-size: 16px;
	font-weight: 700;
	color: #e3335a;
}

.gcl-options-right {
	display: grid;
	/* flex-direction: column; */
	gap: 1rem;
	width: 100%;
	grid-template-columns: auto auto;
}

.gcl-option-small {
	display: flex;
	gap: 12px;
	align-items: center;
	padding: 0;
	border: none;
}

.gcl-option-image-small {
	width: 100px;
	height: 100px;
	flex-shrink: 0;
	border-radius: 8px;
	overflow: hidden;
	background: #f3f4f6;
}

.gcl-option-image-small img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gcl-option-info-small {
	flex: 1;
}

.gcl-option-title-small {
	font-size: 13px;
	font-weight: 600;
	color: #111827;
	margin-bottom: 2px;
}

.gcl-option-desc-small {
	font-size: 12px;
	color: #6b7280;
	margin-bottom: 4px;
}

.gcl-option-price-small {
	font-size: 14px;
	font-weight: 700;
	color: #e3335a;
}

/* ==================== ADD PRODUCT ==================== */
.gcl-add-product {
	background: white;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 24px;
}

.gcl-add-product-content {
	display: flex;
	gap: 24px;
	align-items: center;
}

.gcl-add-product-title {
	border: 1px dashed #E0E0E0;
	border-radius: 0.5rem;
	box-sizing: border-box;
	font-size: 16px;
	font-weight: 600;
	color: #555555;
	padding: 1rem;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 15rem;
	height: 15rem;
}

.gcl-add-product-text {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	flex: 1;
}

.gcl-btn-link {
	font-size: 14px;
	font-weight: 600;
	color: #e3335a;
	text-decoration: none;
}

.gcl-btn-link:hover {
	color: #c20057ff;
}

/* ==================== SIDEBAR ==================== */
.gcl-cart-sidebar {
	position: sticky;
	top: 24px;
	width: 100%;
	height: fit-content;
}

.gcl-sidebar-box {
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	background: #FFFFFF;
	border: 1px solid #E0E0E0;
	border-radius: 8px;
	margin-bottom: 16px;
}

.gcl-sidebar-box h2 {
	font-style: normal;
	font-weight: 700;
	font-size: 28px;
	line-height: 38px;
	color: #333333;
	margin: 0;
}

.gcl-shipping-box {
	padding: 20px;
	gap: 20px;
}

.gcl-country-select-wrapper {
	width: 100%;
	position: relative;
	margin-top: 0;
}

.gcl-country-label {
	display: inline-block;
	padding: 0 12px;
	position: absolute;
	left: 0;
	top: -8px;
	background: #FFFFFF;
	font-style: normal;
	font-weight: 400;
	font-size: 10px;
	line-height: 16px;
	color: #333333;
	z-index: 2;
	pointer-events: none;
}

.gcl-country-select {
	box-sizing: border-box;
	width: 100%;
	height: 48px;
	padding: 14px 40px 14px 20px;
	border: 1px solid #E0E0E0;
	border-radius: 8px;
	font-style: normal;
	font-weight: 600;
	font-size: 14px;
	line-height: 20px;
	color: #333333;
	background: #FFFFFF;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	cursor: pointer;
	background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23333333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 16px center;
	background-size: 12px 8px;
}

.gcl-country-select:focus {
	outline: none;
	border-color: #e3335a;
}

.gcl-shipping-methods {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 0;
	width: 100%;
	margin-top: 20px;
}

.gcl-shipping-item {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	padding: 0;
	width: 100%;
	height: 24px;
}

.gcl-shipping-name {
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 24px;
	color: #333333;
}

.gcl-shipping-cost {
	font-style: normal;
	font-weight: 600;
	font-size: 14px;
	line-height: 20px;
	color: #333333;
}

.gcl-shipping-cost.free {
	color: #333333;
}

.gcl-free-shipping-text {
	display: flex;
	align-items: center;
	width: 100%;
	height: 16px;
	font-style: normal;
	font-weight: 400;
	font-size: 10px;
	line-height: 16px;
	color: #333333;
	margin-top: 20px;
}

.gcl-free-shipping-text strong {
	font-weight: 700;
}

.gcl-coupon-box {
	padding: 12px 20px;
	gap: 20px;
}

.gcl-coupon-header {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	padding: 0;
	width: 100%;
	height: 24px;
	cursor: pointer;
	user-select: none;
	position: relative;
}

.gcl-coupon-header::after {
	content: '';
	display: block;
	width: 12px;
	height: 8px;
	background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23333333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	transition: transform 0.3s ease;
}

.gcl-coupon-box.open .gcl-coupon-header::after {
	transform: rotate(180deg);
}

.gcl-coupon-title {
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 24px;
	color: #333333;
}

.gcl-coupon-content {
	display: none;
	margin-top: 20px;
}

.gcl-coupon-box.open .gcl-coupon-content {
	display: block;
}

.gcl-coupon-form {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 33px;
	width: 100%;
}

.gcl-coupon-input-wrapper {
	flex: 1 1 auto;
	position: relative;
	min-width: 0;
	max-width: calc(100% - 110px);
}

.gcl-coupon-input-label {
	display: inline-block;
	padding: 0 12px;
	position: absolute;
	left: 0;
	top: -8px;
	background: #FFFFFF;
	font-style: normal;
	font-weight: 400;
	font-size: 10px;
	line-height: 16px;
	color: #333333;
	z-index: 2;
	pointer-events: none;
}

.gcl-coupon-input {
	box-sizing: border-box;
	width: 100%;
	height: 48px;
	padding: 14px 20px;
	border: 1px solid #E0E0E0;
	border-radius: 8px;
	font-style: normal;
	font-weight: 600;
	font-size: 14px;
	line-height: 20px;
	color: #333333;
	background: #FFFFFF;
}

.gcl-coupon-input:focus {
	outline: none;
	border-color: #e3335a;
}

.gcl-coupon-input::placeholder {
	color: #999;
	font-weight: 400;
}

.gcl-coupon-btn {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding: 12px 20px;
	gap: 4px;
	width: 136px;
	height: 48px;
	background: #e3335a;
	border-radius: 30px;
	border: none;
	cursor: pointer;
	font-style: normal;
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	text-align: center;
	color: #FFFFFF;
	transition: background 0.2s;
	flex-shrink: 0;
	white-space: nowrap;
}

.gcl-coupon-btn:hover {
	background: #d10c64;
}

.gcl-coupon-applied-section {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid #e5e7eb;
	width: 100%;
}

.gcl-coupon-applied-title {
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 24px;
	color: #333333;
	margin-bottom: 12px;
}

.gcl-coupon-applied-list {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 0;
	width: 100%;
}

.gcl-coupon-applied-item {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	padding: 8px 12px;
	background: #f9fafb;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
}

.gcl-coupon-applied-code {
	font-style: normal;
	font-weight: 600;
	font-size: 13px;
	line-height: 20px;
	color: #333333;
}

.gcl-coupon-remove {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	padding: 0;
	background: transparent;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	color: #6b7280;
	transition: all 0.2s;
	flex-shrink: 0;
}

.gcl-coupon-remove:hover {
	background: #fee2e2;
	color: #dc2626;
}

.gcl-coupon-remove svg {
	width: 12px;
	height: 12px;
	stroke-width: 2.5;
	pointer-events: none;
}

.gcl-summary-box {
	padding: 20px 20px 40px;
	gap: 20px;
}

.gcl-summary-items {
	display: flex;
	flex-direction: column;
	padding: 0;
	gap: 0;
	width: 100%;
}

.gcl-summary-row {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	padding: 0;
	width: 100%;
	height: 24px;
}

.gcl-summary-label {
	font-style: normal;
	font-weight: 400 !important;
	font-size: 14px;
	line-height: 24px;
	color: #333333;
}

.gcl-summary-value {
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 24px;
	text-align: right;
	color: #333333;
}

.gcl-summary-total {
	box-sizing: border-box;
	display: flex;
	/* flex-direction: row; */
	justify-content: space-between;
	align-items: center;
	padding: 8px 0;
	gap: 0;
	width: 100%;
	border-top: 1px solid #E0E0E0;
	margin-top: 8px;
	flex-wrap: wrap;
}

.gcl-summary-total-label {
	font-style: normal;
	font-weight: 700;
	font-size: 14px;
	line-height: 24px;
	color: #333333;
}

.gcl-vat-note {
	font-weight: 400;
	font-size: 12px;
	color: #9ca3af;
}

.gcl-summary-total-prices {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 8px;
}

.gcl-summary-old-price {
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 24px;
	text-align: right;
	text-decoration-line: line-through;
	color: #333333;
}

.gcl-summary-new-price {
	font-style: normal;
	font-weight: 700;
	font-size: 14px;
	line-height: 24px;
	text-align: right;
	color: #333333;
}

.wc-proceed-to-checkout {
	width: 100%;
}

.gcl-checkout-button {
	display: flex;
	/* flex-direction: row; */
	justify-content: center;
	align-items: center;
	padding: 12px;
	/* gap: 4px; */
	width: calc(100% - 24px);
	max-width: 430px;
	height: 24px;
	background: #e3335a;
	border-radius: 30px;
	font-style: normal;
	font-weight: 600;
	font-size: 16px;
	/* line-height: 24px; */
	text-align: center;
	color: #FFFFFF;
	text-decoration: none;
	transition: background 0.2s;
}

.gcl-checkout-button:hover {
	background: #d10c64;
}

/* ==================== EMPTY CART ==================== */
.gcl-empty-cart {
	background: white;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 48px 24px;
	text-align: center;
}

.gcl-empty-cart p {
	font-size: 16px;
	color: #6b7280;
	margin: 0 0 24px 0;
}

.gcl-btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	background: #e3335a;
	color: white;
	text-decoration: none;
	border-radius: 8px;
	font-weight: 600;
	transition: background 0.2s;
}

.gcl-btn-primary:hover {
	background: #c7035bff;
}

/* ==================== MOBILE LAYOUT ==================== */
@media (max-width: 768px) {
	html, body {
		overflow-x: hidden;
		width: 100%;
		max-width: 100vw;
	}
	
	* {
		box-sizing: border-box;
	}
	
	.gcl-cart-page {
		padding-bottom: 20px;
		width: 100%;
		max-width: 100vw;
		overflow-x: hidden;
	}
	
	.container {
		padding-left: 16px !important;
		padding-right: 16px !important;
		max-width: 100vw !important;
		width: 100% !important;
		overflow-x: hidden;
	}
	
	.gcl-cart-grid,
	.gcl-cart-items,
	.gcl-cart-item,
	.gcl-item-wrapper,
	.gcl-item-main,
	.gcl-mobile-options,
	.gcl-mobile-actions,
	.gcl-mobile-actions-row {
		max-width: 100%;
		width: 100%;
		overflow-x: hidden;
	}
	
	.gcl-cart-header {
		margin-bottom: 16px;
		padding: 16px;
		margin-left: -16px;
		margin-right: -16px;
	}
	
	.gcl-cart-header h1 {
		font-size: 20px;
	}
	
	.gcl-cart-item {
		padding: 16px;
		margin-bottom: 12px;
		border-radius: 8px;
	}
	
	.gcl-project-name {
		font-size: 11px;
		margin-bottom: 12px;
	}
	
	.gcl-item-wrapper {
		position: static;
	}
	
	.gcl-item-main {
		flex-direction: row;
		gap: 12px;
		padding-top: 0;
	}
	
	.gcl-item-image {
		width: 80px;
		height: 80px;
	}
	
	.gcl-item-details {
		flex: 1;
		padding-top: 0;
	}
	
	.gcl-item-name {
		font-size: 14px;
		margin-bottom: 4px;
		word-break: break-word;
	}
	
	.gcl-item-meta {
		font-size: 12px;
		margin-bottom: 2px;
	}
	
	.gcl-item-price {
		font-size: 16px;
		margin-top: 8px;
		color: #e3335a;
		width: fit-content;
	}
	
	.gcl-price-print,
	.gcl-price-total {
		font-size: 13px;
	}
	
	.gcl-price-highlight {
		font-size: 14px;
	}
	
	.gcl-separator-with-plus {
		margin: 16px 0;
		gap: 16px;
	}
	
	.gcl-separator-plus {
		font-size: 24px;
	}
	
	.gcl-mobile-options {
		margin: 0;
		width: 100%;
	}
	
	.gcl-mobile-option {
		display: flex;
		align-items: flex-start;
		gap: 12px;
		padding: 12px 0;
		width: 100%;
	}
	
	.gcl-mobile-option img {
		width: 50px;
		height: 50px;
		border-radius: 6px;
		object-fit: cover;
		background: #f3f4f6;
		flex-shrink: 0;
	}
	
	.gcl-mobile-option-large img {
		/* width: 80px !important; */
		/* height: 80px !important; */
	}
	
	.gcl-mobile-option-info {
		flex: 1;
		min-width: 0;
		word-break: break-word;
	}
	
	.gcl-mobile-option-title {
		font-size: 12px;
		font-weight: 600;
		color: #111827;
		margin-bottom: 2px;
	}
	
	.gcl-mobile-option-desc {
		font-size: 11px;
		color: #6b7280;
	}
	
	.gcl-mobile-option-price {
		font-size: 14px;
		font-weight: 700;
		color: #e3335a;
		flex-shrink: 0;
		white-space: nowrap;
	}
	
	.gcl-mobile-actions {
		margin-top: 16px;
		padding-top: 16px;
		border-top: 1px solid #e5e7eb;
		width: 100%;
	}
	
	.gcl-mobile-actions-row {
		display: flex;
		align-items: center;
		gap: 8px;
		width: 100%;
		flex-wrap: nowrap;
	}
	
	.gcl-mobile-edit-btn {
		flex: 1;
		max-width: calc(100% - 128px);
		padding: 10px 12px;
		text-align: center;
		background: #fff;
		border: 1.5px solid #e5e7eb;
		border-radius: 32px;
		font-size: 13px;
		font-weight: 600;
		color: #333;
		text-decoration: none;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		display: block;
	}
	
	.gcl-mobile-icon-btn {
		width: 40px;
		height: 40px;
		min-width: 40px;
		display: flex;
		align-items: center;
		justify-content: center;
		background: #fff;
		border: 1.5px solid #e5e7eb;
		border-radius: 50%;
		color: #333;
		cursor: pointer;
		transition: all 0.2s;
		flex-shrink: 0;
	}
	
	.gcl-mobile-icon-btn svg {
		width: 20px;
		height: 20px;
	}
	
	.gcl-mobile-icon-btn:hover {
		border-color: #9ca3af;
	}
	
	.gcl-mobile-heart .heart-outline {
		display: block;
	}
	
	.gcl-mobile-heart .heart-filled {
		display: none;
	}
	
	.gcl-mobile-heart.active .heart-outline {
		display: none;
	}
	
	.gcl-mobile-heart.active .heart-filled {
		display: block;
		color: #e3335a;
	}
	
	.gcl-mobile-qty {
		flex-shrink: 0;
		display: flex;
		align-items: center;
		gap: 8px;
		background: #fff;
		border: 1.5px solid #e5e7eb;
		border-radius: 24px;
		padding: 6px 12px;
		min-width: 80px;
	}
	
	.gcl-mobile-qty-btn {
		width: 20px;
		height: 20px;
		min-width: 20px;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
		border: none;
		color: #333;
		font-size: 18px;
		font-weight: 600;
		cursor: pointer;
		flex-shrink: 0;
		padding: 0;
	}
	
	.gcl-mobile-qty-btn svg {
		width: 18px;
		height: 18px;
	}
	
	.gcl-mobile-qty-remove {
		color: #ef4444;
	}
	
	.gcl-mobile-qty-num {
		min-width: 20px;
		text-align: center;
		font-size: 14px;
		font-weight: 600;
		color: #333;
	}
	
	.gcl-mobile-add-next {
		background: #fff;
		border: 1px solid #e5e7eb;
		border-radius: 8px;
		padding: 16px;
		margin-bottom: 16px;
		width: 100%;
	}
	
	.gcl-mobile-add-content {
		display: flex;
		flex-direction: column;
		gap: 12px;
		width: 100%;
	}
	
	.gcl-mobile-add-title {
		font-size: 15px;
		font-weight: 700;
		color: #111827;
	}
	
	.gcl-mobile-add-text {
		font-size: 13px;
		color: #6b7280;
		line-height: 1.5;
	}
	
	.gcl-mobile-add-link {
		display: inline-block;
		font-size: 14px;
		font-weight: 600;
		color: #e3335a;
		text-decoration: none;
	}
	
	.gcl-cart-sidebar {
		position: static;
		top: auto;
		width: 100%;
	}
	
	.gcl-sidebar-box {
		width: 100%;
	}
	
	.gcl-sidebar-box h2 {
		font-size: 18px;
		line-height: 24px;
	}
	
	.gcl-shipping-box,
	.gcl-coupon-box,
	.gcl-summary-box {
		padding: 16px;
		width: 100%;
	}
	
	.gcl-coupon-form {
		flex-direction: column;
		gap: 12px;
		width: 100%;
	}
	
	.gcl-coupon-input-wrapper {
		max-width: 100%;
		width: 100%;
	}
	
	.gcl-coupon-input {
		width: 100%;
	}
	
	.gcl-coupon-btn {
		width: 100%;
	}
	
	.gcl-coupon-applied-section {
		margin-top: 16px;
		padding-top: 16px;
	}
	
	.gcl-coupon-applied-title {
		font-size: 13px;
		margin-bottom: 10px;
	}
	
	.gcl-coupon-applied-list {
		gap: 6px;
	}
	
	.gcl-coupon-applied-item {
		padding: 8px 12px;
	}
	
	.gcl-coupon-applied-code {
		font-size: 12px;
	}
	
	.gcl-coupon-remove {
		width: 22px;
		height: 22px;
	}
	
	.gcl-checkout-button {
		width: 100%;
		max-width: 100%;
	}
}
