/**
 * Custom Order Section Styles
 * سکشن سفارش محصول دلخواه - طراحی مینیمال و لوکس
 */

/* Section Base */
.custom-order-section {
	position: relative;
	width: 100%;
	max-width: 100vw;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 8rem 2rem;
	background: #000000;
	overflow-x: hidden;
	overflow-y: visible;
	isolation: isolate;
}

/* Background */
.custom-order-section__background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	pointer-events: none;
}

.custom-order-section__grid-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: 
		linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
	background-size: 50px 50px;
	opacity: 0;
	animation: gridFadeIn 1.5s ease-out forwards;
}

@keyframes gridFadeIn {
	to {
		opacity: 1;
	}
}

.custom-order-section__gradient-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	opacity: 0;
	will-change: transform, opacity;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}

.custom-order-section__gradient-orb--1 {
	width: 500px;
	height: 500px;
	top: 15%;
	left: 10%;
	background: radial-gradient(circle, rgba(255, 215, 0, 0.25) 0%, transparent 70%);
}

.custom-order-section__gradient-orb--2 {
	width: 400px;
	height: 400px;
	bottom: 15%;
	right: 10%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
}

/* Container */
.custom-order-section__container {
	position: relative;
	max-width: 1400px;
	width: 100%;
	z-index: 1;
}

/* Header */
.custom-order-section__header {
	text-align: center;
	margin-bottom: 5rem;
}

.custom-order-section__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	font-family: 'Peyda', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: rgba(255, 215, 0, 0.9);
	padding: 0.75rem 1.5rem;
	border: 1px solid rgba(255, 215, 0, 0.3);
	border-radius: 50px;
	background: rgba(255, 215, 0, 0.05);
	backdrop-filter: blur(10px);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
	margin-bottom: 1.5rem;
}

.custom-order-section__badge::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
	transition: left 0.4s ease;
}

.custom-order-section__badge:hover::before {
	left: 100%;
}

.custom-order-section__badge:hover {
	border-color: rgba(255, 215, 0, 0.6);
	background: rgba(255, 215, 0, 0.1);
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(255, 215, 0, 0.2);
}

.custom-order-section__badge-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(255, 215, 0, 0.9);
	box-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
	animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
	0%, 100% {
		transform: scale(1);
		opacity: 1;
	}
	50% {
		transform: scale(1.3);
		opacity: 0.7;
	}
}

.custom-order-section__badge-text {
	position: relative;
	z-index: 1;
}

.custom-order-section__title {
	font-family: 'Peyda', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 800;
	line-height: 1.2;
	color: #ffffff;
	margin: 0 0 1rem 0;
	background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.custom-order-section__subtitle {
	font-family: 'Peyda', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: clamp(1rem, 2vw, 1.25rem);
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.7);
	margin: 0;
	max-width: 600px;
	margin: 0 auto;
}

/* Main Content Grid */
.custom-order-section__main {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 6rem;
	align-items: start;
}

/* Form Side */
.custom-order-section__form-side {
	position: relative;
}

.custom-order-section__form {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}

/* Form Group */
.custom-order-section__form-group {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.custom-order-section__form-label {
	display: flex;
	align-items: center;
	gap: 1rem;
	font-family: 'Peyda', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	color: #ffffff;
}

.custom-order-section__step-number {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 12px;
	background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 215, 0, 0.08) 100%);
	border: 1px solid rgba(255, 215, 0, 0.3);
	font-size: 0.875rem;
	font-weight: 700;
	color: rgba(255, 215, 0, 0.95);
	transition: all 0.3s ease;
}

.custom-order-section__step-title {
	font-size: 1.125rem;
	font-weight: 600;
}

/* Upload Area */
.custom-order-section__upload-area {
	position: relative;
	width: 100%;
	min-height: 280px;
	border-radius: 20px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
	border: 2px dashed rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	overflow: hidden;
}

.custom-order-section__upload-area.dragover {
	border-color: rgba(255, 215, 0, 0.5);
	background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(255, 215, 0, 0.04) 100%);
	box-shadow: 
		0 12px 40px rgba(255, 215, 0, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.custom-order-section__file-input {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
	z-index: 10;
}

.custom-order-section__upload-placeholder {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 280px;
	gap: 1rem;
	text-align: center;
	padding: 2rem;
}

.custom-order-section__upload-icon {
	width: 64px;
	height: 64px;
	color: rgba(255, 215, 0, 0.6);
	margin-bottom: 0.5rem;
	transition: all 0.3s ease;
}

.custom-order-section__upload-area.dragover .custom-order-section__upload-icon {
	color: rgba(255, 215, 0, 0.9);
	transform: scale(1.1);
}

.custom-order-section__upload-icon svg {
	width: 100%;
	height: 100%;
}

.custom-order-section__upload-text {
	font-family: 'Peyda', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: 1.125rem;
	font-weight: 600;
	color: #ffffff;
}

.custom-order-section__upload-hint {
	font-family: 'Peyda', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: 0.9375rem;
	color: rgba(255, 255, 255, 0.6);
}

.custom-order-section__upload-formats {
	font-family: 'Peyda', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: 0.8125rem;
	color: rgba(255, 255, 255, 0.4);
	margin-top: 0.5rem;
}

/* Upload Preview */
.custom-order-section__upload-preview {
	position: relative;
	width: 100%;
	height: 280px;
	border-radius: 20px;
	overflow: hidden;
}

.custom-order-section__preview-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.custom-order-section__remove-image {
	position: absolute;
	top: 1rem;
	left: 1rem;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #ffffff;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	z-index: 10;
}

.custom-order-section__remove-image:hover {
	background: rgba(255, 0, 0, 0.8);
	border-color: rgba(255, 0, 0, 0.5);
	transform: scale(1.1);
}

.custom-order-section__remove-image svg {
	width: 20px;
	height: 20px;
}

/* Textarea */
.custom-order-section__textarea {
	width: 100%;
	min-height: 100px;
	padding: 1.25rem 1.5rem;
	border-radius: 16px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
	border: 1.5px solid rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	color: #ffffff;
	font-family: 'Peyda', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: 1rem;
	line-height: 1.6;
	resize: vertical;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 
		0 4px 20px rgba(0, 0, 0, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.custom-order-section__textarea::placeholder {
	color: rgba(255, 255, 255, 0.4);
}

.custom-order-section__textarea:focus {
	outline: none;
	border-color: rgba(255, 215, 0, 0.4);
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
	box-shadow: 
		0 8px 32px rgba(255, 215, 0, 0.2),
		0 0 0 1px rgba(255, 215, 0, 0.15),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.custom-order-section__char-count {
	font-family: 'Peyda', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: 0.8125rem;
	color: rgba(255, 255, 255, 0.5);
	text-align: left;
	margin-top: -0.5rem;
}

/* Size Cards */
.custom-order-section__sizes {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: 1rem;
}

.custom-order-section__size-card {
	position: relative;
	padding: 1.5rem 1.25rem;
	border-radius: 16px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
	border: 1.5px solid rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	text-align: center;
	box-shadow: 
		0 4px 20px rgba(0, 0, 0, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.08);
	overflow: hidden;
}

.custom-order-section__size-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, transparent 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.custom-order-section__size-card:hover {
	border-color: rgba(255, 215, 0, 0.3);
	transform: translateY(-3px);
	box-shadow: 
		0 8px 32px rgba(0, 0, 0, 0.3),
		0 0 0 1px rgba(255, 215, 0, 0.15);
}

.custom-order-section__size-card:hover::before {
	opacity: 1;
}

.custom-order-section__size-card.active {
	border-color: rgba(255, 215, 0, 0.5);
	background: linear-gradient(135deg, rgba(255, 215, 0, 0.12) 0%, rgba(255, 215, 0, 0.06) 100%);
	box-shadow: 
		0 12px 40px rgba(255, 215, 0, 0.2),
		0 0 0 1px rgba(255, 215, 0, 0.3),
		inset 0 1px 0 rgba(255, 255, 255, 0.15);
	transform: translateY(-3px);
}

.custom-order-section__size-label {
	font-family: 'Peyda', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: 1.125rem;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 0.5rem;
	position: relative;
	z-index: 1;
}

.custom-order-section__size-price {
	font-family: 'Peyda', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: 0.9375rem;
	font-weight: 600;
	color: rgba(255, 215, 0, 0.9);
	position: relative;
	z-index: 1;
}

.custom-order-section__size-check {
	position: absolute;
	top: 0.75rem;
	right: 0.75rem;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: linear-gradient(135deg, #ffd700 0%, #ffb733 100%);
	border: 1px solid rgba(255, 255, 255, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transform: scale(0.5);
	transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
	box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.custom-order-section__size-card.active .custom-order-section__size-check {
	opacity: 1;
	transform: scale(1);
}

.custom-order-section__size-check svg {
	width: 14px;
	height: 14px;
	color: #000000;
	stroke-width: 3;
}

/* Price Display */
.custom-order-section__price-display {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.5rem 2rem;
	border-radius: 16px;
	background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(255, 215, 0, 0.04) 100%);
	border: 1.5px solid rgba(255, 215, 0, 0.25);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	box-shadow: 
		0 8px 32px rgba(255, 215, 0, 0.15),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
	margin-top: 1rem;
}

.custom-order-section__price-label {
	font-family: 'Peyda', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: 1.125rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.9);
}

.custom-order-section__price-value {
	font-family: 'Peyda', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: 1.75rem;
	font-weight: 800;
	color: #ffd700;
	text-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

/* Submit Button */
.custom-order-section__submit-btn {
	width: 100%;
	padding: 1.25rem 2.5rem;
	border-radius: 16px;
	background: linear-gradient(135deg, #ffd700 0%, #ffb733 50%, #ffa500 100%);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #000000;
	font-family: 'Peyda', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: 1.125rem;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.875rem;
	position: relative;
	overflow: hidden;
	box-shadow: 
		0 8px 32px rgba(255, 215, 0, 0.35),
		0 4px 16px rgba(255, 215, 0, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.custom-order-section__submit-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
	transition: left 0.5s ease;
}

.custom-order-section__submit-btn:hover::before {
	left: 100%;
}

.custom-order-section__submit-btn:hover {
	background: linear-gradient(135deg, #ffe44d 0%, #ffd700 50%, #ffb733 100%);
	transform: translateY(-2px);
	box-shadow: 
		0 12px 40px rgba(255, 215, 0, 0.45),
		0 6px 20px rgba(255, 215, 0, 0.3),
		inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.custom-order-section__submit-btn:active {
	transform: translateY(0) scale(0.98);
}

.custom-order-section__submit-btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
	transform: none;
}

.custom-order-section__btn-text {
	position: relative;
	z-index: 1;
}

.custom-order-section__btn-icon {
	position: relative;
	z-index: 1;
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s ease;
}

.custom-order-section__submit-btn:hover .custom-order-section__btn-icon {
	transform: translateX(-3px);
}

.custom-order-section__btn-icon svg {
	width: 100%;
	height: 100%;
	stroke: #000000;
	stroke-width: 2.5;
}

/* Preview Side */
.custom-order-section__preview-side {
	position: sticky;
	top: 120px;
	height: fit-content;
}

.custom-order-section__preview-wrapper {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.custom-order-section__preview-frame {
	position: relative;
	width: 100%;
	aspect-ratio: 3 / 4;
	border-radius: 24px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
	backdrop-filter: blur(25px);
	-webkit-backdrop-filter: blur(25px);
	border: 2px solid rgba(255, 255, 255, 0.15);
	overflow: hidden;
	box-shadow: 
		0 20px 60px rgba(0, 0, 0, 0.4),
		0 10px 30px rgba(0, 0, 0, 0.3),
		inset 0 2px 0 rgba(255, 255, 255, 0.1);
	padding: 1.5rem;
}

/* Frame Border - Luxury Effect */
.custom-order-section__frame-border {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border: 4px solid transparent;
	border-image: linear-gradient(135deg, rgba(255, 215, 0, 0.3), rgba(255, 255, 255, 0.2), rgba(255, 215, 0, 0.3)) 1;
	border-radius: 24px;
	pointer-events: none;
	z-index: 1;
}

/* Preview Content */
.custom-order-section__preview-content {
	position: relative;
	width: 100%;
	height: 100%;
	border-radius: 16px;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.custom-order-section__preview-placeholder {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1.25rem;
	text-align: center;
	opacity: 0.6;
}

.custom-order-section__placeholder-icon {
	width: 80px;
	height: 80px;
	color: rgba(255, 255, 255, 0.4);
}

.custom-order-section__placeholder-icon svg {
	width: 100%;
	height: 100%;
}

.custom-order-section__placeholder-text {
	font-family: 'Peyda', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: 1.125rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.6);
}

.custom-order-section__preview-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: all 0.3s ease;
}

.custom-order-section__preview-text {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	font-family: 'Peyda', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: clamp(1.25rem, 2vw, 2rem);
	font-weight: 700;
	color: #ffffff;
	text-align: center;
	text-shadow: 
		0 2px 8px rgba(0, 0, 0, 0.8),
		0 4px 16px rgba(0, 0, 0, 0.6);
	padding: 1rem 2rem;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%);
	backdrop-filter: blur(10px);
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	max-width: 80%;
	word-wrap: break-word;
	line-height: 1.4;
}

.custom-order-section__preview-glow {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 150%;
	height: 150%;
	background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
	border-radius: 50%;
	filter: blur(60px);
	opacity: 0.5;
	pointer-events: none;
	z-index: 0;
}

/* Size Indicator */
.custom-order-section__size-indicator {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	padding: 1rem 1.5rem;
	border-radius: 12px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
	border: 1px solid rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	color: rgba(255, 255, 255, 0.8);
	font-family: 'Peyda', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: 0.9375rem;
	font-weight: 600;
}

.custom-order-section__size-indicator svg {
	width: 18px;
	height: 18px;
	color: rgba(255, 215, 0, 0.8);
}

.custom-order-section__size-text {
	color: rgba(255, 255, 255, 0.9);
}

/* Responsive - Advanced & Attractive Design */

/* Large Tablets & Small Desktops (1200px - 1439px) */
@media (max-width: 1439px) and (min-width: 1201px) {
	.custom-order-section {
		padding: 7rem 2rem !important;
	}

	.custom-order-section__main {
		gap: 5rem !important;
	}

	.custom-order-section__header {
		margin-bottom: 4.5rem !important;
	}
}

/* Tablets Landscape & Medium Screens (1025px - 1200px) */
@media (max-width: 1200px) and (min-width: 1025px) {
	.custom-order-section {
		padding: 6.5rem 2rem !important;
	}

	.custom-order-section__main {
		gap: 4.5rem !important;
	}

	.custom-order-section__header {
		margin-bottom: 4rem !important;
	}

	.custom-order-section__title {
		font-size: clamp(2.25rem, 4.5vw, 3.25rem) !important;
	}

	.custom-order-section__subtitle {
		font-size: clamp(1rem, 1.8vw, 1.125rem) !important;
	}
}

/* Tablets (769px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
	.custom-order-section {
		padding: 6rem 1.75rem !important;
		min-height: auto !important;
	}

	.custom-order-section__gradient-orb {
		filter: blur(60px) !important;
	}

	.custom-order-section__gradient-orb--1 {
		width: 400px !important;
		height: 400px !important;
		top: 10% !important;
		left: 5% !important;
	}

	.custom-order-section__gradient-orb--2 {
		width: 350px !important;
		height: 350px !important;
		bottom: 10% !important;
		right: 5% !important;
	}

	.custom-order-section__header {
		margin-bottom: 3.5rem !important;
	}

	.custom-order-section__badge {
		font-size: 0.8125rem !important;
		padding: 0.65rem 1.35rem !important;
		letter-spacing: 2.5px !important;
	}

	.custom-order-section__title {
		font-size: clamp(2rem, 4vw, 2.75rem) !important;
		margin-bottom: 0.875rem !important;
	}

	.custom-order-section__subtitle {
		font-size: clamp(0.9375rem, 1.8vw, 1.125rem) !important;
		max-width: 550px !important;
	}

	.custom-order-section__main {
		grid-template-columns: 1fr !important;
		gap: 4rem !important;
	}

	.custom-order-section__preview-side {
		position: relative !important;
		top: auto !important;
		order: -1 !important;
	}

	.custom-order-section__preview-frame {
		max-width: 480px !important;
		margin: 0 auto !important;
		aspect-ratio: 3 / 4 !important;
	}

	.custom-order-section__form {
		gap: 2.25rem !important;
	}

	.custom-order-section__upload-area {
		min-height: 260px !important;
	}

	.custom-order-section__upload-placeholder {
		height: 260px !important;
		gap: 0.875rem !important;
		padding: 1.75rem !important;
	}

	.custom-order-section__upload-icon {
		width: 56px !important;
		height: 56px !important;
	}

	.custom-order-section__upload-text {
		font-size: 1.0625rem !important;
	}

	.custom-order-section__upload-hint {
		font-size: 0.875rem !important;
	}

	.custom-order-section__textarea {
		min-height: 90px !important;
		padding: 1.125rem 1.375rem !important;
		font-size: 0.9375rem !important;
	}

	.custom-order-section__sizes {
		grid-template-columns: repeat(3, 1fr) !important;
		gap: 0.875rem !important;
	}

	.custom-order-section__size-card {
		padding: 1.375rem 1.125rem !important;
	}

	.custom-order-section__size-label {
		font-size: 1.0625rem !important;
	}

	.custom-order-section__size-price {
		font-size: 0.875rem !important;
	}

	.custom-order-section__price-display {
		padding: 1.375rem 1.75rem !important;
	}

	.custom-order-section__price-label {
		font-size: 1.0625rem !important;
	}

	.custom-order-section__price-value {
		font-size: 1.625rem !important;
	}

	.custom-order-section__submit-btn {
		padding: 1.125rem 2.25rem !important;
		font-size: 1.0625rem !important;
	}
}

/* Mobile Landscape & Small Tablets (641px - 768px) */
@media (max-width: 768px) and (min-width: 641px) {
	.custom-order-section {
		padding: 5rem 1.5rem !important;
		min-height: auto !important;
	}

	.custom-order-section__gradient-orb {
		filter: blur(50px) !important;
	}

	.custom-order-section__gradient-orb--1 {
		width: 350px !important;
		height: 350px !important;
		top: 8% !important;
		left: -5% !important;
	}

	.custom-order-section__gradient-orb--2 {
		width: 300px !important;
		height: 300px !important;
		bottom: 8% !important;
		right: -5% !important;
	}

	.custom-order-section__header {
		margin-bottom: 3rem !important;
	}

	.custom-order-section__badge {
		font-size: 0.75rem !important;
		padding: 0.625rem 1.25rem !important;
		letter-spacing: 2px !important;
		margin-bottom: 1.25rem !important;
	}

	.custom-order-section__badge-dot {
		width: 7px !important;
		height: 7px !important;
	}

	.custom-order-section__title {
		font-size: clamp(1.875rem, 4vw, 2.5rem) !important;
		margin-bottom: 0.75rem !important;
	}

	.custom-order-section__subtitle {
		font-size: clamp(0.875rem, 1.8vw, 1rem) !important;
		max-width: 500px !important;
		line-height: 1.5 !important;
	}

	.custom-order-section__main {
		grid-template-columns: 1fr !important;
		gap: 3.5rem !important;
	}

	.custom-order-section__preview-side {
		position: relative !important;
		top: auto !important;
		order: -1 !important;
	}

	.custom-order-section__preview-frame {
		max-width: 420px !important;
		margin: 0 auto !important;
		aspect-ratio: 3 / 4 !important;
		border-radius: 20px !important;
		padding: 1.25rem !important;
	}

	.custom-order-section__preview-content {
		border-radius: 14px !important;
	}

	.custom-order-section__preview-text {
		font-size: clamp(1.125rem, 2vw, 1.75rem) !important;
		padding: 0.875rem 1.75rem !important;
		bottom: 1.75rem !important;
	}

	.custom-order-section__form {
		gap: 2rem !important;
	}

	.custom-order-section__form-group {
		gap: 1.125rem !important;
	}

	.custom-order-section__step-number {
		width: 34px !important;
		height: 34px !important;
		font-size: 0.8125rem !important;
		border-radius: 10px !important;
	}

	.custom-order-section__step-title {
		font-size: 1.0625rem !important;
	}

	.custom-order-section__upload-area {
		min-height: 240px !important;
		border-radius: 18px !important;
	}

	.custom-order-section__upload-placeholder {
		height: 240px !important;
		gap: 0.75rem !important;
		padding: 1.5rem !important;
	}

	.custom-order-section__upload-icon {
		width: 52px !important;
		height: 52px !important;
	}

	.custom-order-section__upload-text {
		font-size: 1rem !important;
	}

	.custom-order-section__upload-hint {
		font-size: 0.8125rem !important;
	}

	.custom-order-section__upload-formats {
		font-size: 0.75rem !important;
	}

	.custom-order-section__upload-preview {
		height: 240px !important;
		border-radius: 18px !important;
	}

	.custom-order-section__remove-image {
		width: 36px !important;
		height: 36px !important;
		top: 0.875rem !important;
		left: 0.875rem !important;
	}

	.custom-order-section__remove-image svg {
		width: 18px !important;
		height: 18px !important;
	}

	.custom-order-section__textarea {
		min-height: 85px !important;
		padding: 1rem 1.25rem !important;
		font-size: 0.875rem !important;
		border-radius: 14px !important;
	}

	.custom-order-section__char-count {
		font-size: 0.75rem !important;
		margin-top: -0.375rem !important;
	}

	.custom-order-section__sizes {
		grid-template-columns: repeat(3, 1fr) !important;
		gap: 0.75rem !important;
	}

	.custom-order-section__size-card {
		padding: 1.25rem 1rem !important;
		border-radius: 14px !important;
	}

	.custom-order-section__size-label {
		font-size: 1rem !important;
		margin-bottom: 0.375rem !important;
	}

	.custom-order-section__size-price {
		font-size: 0.8125rem !important;
	}

	.custom-order-section__size-check {
		width: 22px !important;
		height: 22px !important;
		top: 0.625rem !important;
		right: 0.625rem !important;
	}

	.custom-order-section__size-check svg {
		width: 12px !important;
		height: 12px !important;
	}

	.custom-order-section__price-display {
		padding: 1.25rem 1.5rem !important;
		border-radius: 14px !important;
	}

	.custom-order-section__price-label {
		font-size: 1rem !important;
	}

	.custom-order-section__price-value {
		font-size: 1.5rem !important;
	}

	.custom-order-section__submit-btn {
		padding: 1.125rem 2rem !important;
		font-size: 1rem !important;
		border-radius: 14px !important;
		gap: 0.75rem !important;
	}

	.custom-order-section__btn-icon {
		width: 18px !important;
		height: 18px !important;
	}

	.custom-order-section__size-indicator {
		padding: 0.875rem 1.25rem !important;
		border-radius: 10px !important;
		font-size: 0.875rem !important;
	}

	.custom-order-section__size-indicator svg {
		width: 16px !important;
		height: 16px !important;
	}
}

/* Mobile Portrait (481px - 640px) */
@media (max-width: 640px) and (min-width: 481px) {
	.custom-order-section {
		padding: 4.5rem 1.25rem !important;
		min-height: auto !important;
	}

	.custom-order-section__gradient-orb {
		filter: blur(40px) !important;
	}

	.custom-order-section__gradient-orb--1 {
		width: 280px !important;
		height: 280px !important;
		top: 5% !important;
		left: -10% !important;
	}

	.custom-order-section__gradient-orb--2 {
		width: 250px !important;
		height: 250px !important;
		bottom: 5% !important;
		right: -10% !important;
	}

	.custom-order-section__header {
		margin-bottom: 2.75rem !important;
	}

	.custom-order-section__badge {
		font-size: 0.6875rem !important;
		padding: 0.575rem 1.125rem !important;
		letter-spacing: 1.5px !important;
		margin-bottom: 1.125rem !important;
		gap: 0.625rem !important;
	}

	.custom-order-section__badge-dot {
		width: 6px !important;
		height: 6px !important;
	}

	.custom-order-section__title {
		font-size: clamp(1.75rem, 4.5vw, 2.25rem) !important;
		margin-bottom: 0.625rem !important;
		line-height: 1.15 !important;
	}

	.custom-order-section__subtitle {
		font-size: clamp(0.8125rem, 2vw, 0.9375rem) !important;
		max-width: 450px !important;
		line-height: 1.5 !important;
	}

	.custom-order-section__main {
		grid-template-columns: 1fr !important;
		gap: 3rem !important;
	}

	.custom-order-section__preview-side {
		position: relative !important;
		top: auto !important;
		order: -1 !important;
	}

	.custom-order-section__preview-frame {
		max-width: 380px !important;
		margin: 0 auto !important;
		aspect-ratio: 3 / 4 !important;
		border-radius: 18px !important;
		padding: 1.125rem !important;
	}

	.custom-order-section__frame-border {
		border-width: 3px !important;
		border-radius: 18px !important;
	}

	.custom-order-section__preview-content {
		border-radius: 12px !important;
	}

	.custom-order-section__placeholder-icon {
		width: 70px !important;
		height: 70px !important;
	}

	.custom-order-section__placeholder-text {
		font-size: 1rem !important;
	}

	.custom-order-section__preview-text {
		font-size: clamp(1rem, 2.5vw, 1.5rem) !important;
		padding: 0.75rem 1.5rem !important;
		bottom: 1.5rem !important;
		border-radius: 10px !important;
	}

	.custom-order-section__form {
		gap: 1.875rem !important;
	}

	.custom-order-section__form-group {
		gap: 1rem !important;
	}

	.custom-order-section__step-number {
		width: 32px !important;
		height: 32px !important;
		font-size: 0.75rem !important;
		border-radius: 9px !important;
	}

	.custom-order-section__step-title {
		font-size: 1rem !important;
	}

	.custom-order-section__upload-area {
		min-height: 220px !important;
		border-radius: 16px !important;
		border-width: 2px !important;
	}

	.custom-order-section__upload-placeholder {
		height: 220px !important;
		gap: 0.625rem !important;
		padding: 1.375rem !important;
	}

	.custom-order-section__upload-icon {
		width: 48px !important;
		height: 48px !important;
		margin-bottom: 0.375rem !important;
	}

	.custom-order-section__upload-text {
		font-size: 0.9375rem !important;
	}

	.custom-order-section__upload-hint {
		font-size: 0.75rem !important;
	}

	.custom-order-section__upload-formats {
		font-size: 0.6875rem !important;
		margin-top: 0.375rem !important;
	}

	.custom-order-section__upload-preview {
		height: 220px !important;
		border-radius: 16px !important;
	}

	.custom-order-section__remove-image {
		width: 34px !important;
		height: 34px !important;
		top: 0.75rem !important;
		left: 0.75rem !important;
	}

	.custom-order-section__remove-image svg {
		width: 16px !important;
		height: 16px !important;
	}

	.custom-order-section__textarea {
		min-height: 80px !important;
		padding: 0.9375rem 1.125rem !important;
		font-size: 0.8125rem !important;
		border-radius: 13px !important;
		border-width: 1.5px !important;
	}

	.custom-order-section__char-count {
		font-size: 0.6875rem !important;
		margin-top: -0.25rem !important;
	}

	.custom-order-section__sizes {
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 0.75rem !important;
	}

	.custom-order-section__size-card {
		padding: 1.125rem 0.875rem !important;
		border-radius: 13px !important;
		border-width: 1.5px !important;
	}

	.custom-order-section__size-label {
		font-size: 0.9375rem !important;
		margin-bottom: 0.375rem !important;
	}

	.custom-order-section__size-price {
		font-size: 0.75rem !important;
	}

	.custom-order-section__size-check {
		width: 20px !important;
		height: 20px !important;
		top: 0.5rem !important;
		right: 0.5rem !important;
	}

	.custom-order-section__size-check svg {
		width: 11px !important;
		height: 11px !important;
		stroke-width: 2.5 !important;
	}

	.custom-order-section__price-display {
		padding: 1.125rem 1.375rem !important;
		border-radius: 13px !important;
		border-width: 1.5px !important;
		margin-top: 0.875rem !important;
	}

	.custom-order-section__price-label {
		font-size: 0.9375rem !important;
	}

	.custom-order-section__price-value {
		font-size: 1.375rem !important;
	}

	.custom-order-section__submit-btn {
		padding: 1rem 1.875rem !important;
		font-size: 0.9375rem !important;
		border-radius: 13px !important;
		gap: 0.625rem !important;
	}

	.custom-order-section__btn-icon {
		width: 17px !important;
		height: 17px !important;
	}

	.custom-order-section__size-indicator {
		padding: 0.8125rem 1.125rem !important;
		border-radius: 9px !important;
		font-size: 0.8125rem !important;
		gap: 0.625rem !important;
	}

	.custom-order-section__size-indicator svg {
		width: 15px !important;
		height: 15px !important;
	}
}

/* Mobile Small (376px - 480px) */
@media (max-width: 480px) and (min-width: 376px) {
	.custom-order-section {
		padding: 4rem 1rem !important;
		min-height: auto !important;
	}

	.custom-order-section__gradient-orb {
		filter: blur(35px) !important;
	}

	.custom-order-section__gradient-orb--1 {
		width: 240px !important;
		height: 240px !important;
		top: 3% !important;
		left: -15% !important;
	}

	.custom-order-section__gradient-orb--2 {
		width: 220px !important;
		height: 220px !important;
		bottom: 3% !important;
		right: -15% !important;
	}

	.custom-order-section__header {
		margin-bottom: 2.5rem !important;
	}

	.custom-order-section__badge {
		font-size: 0.625rem !important;
		padding: 0.5rem 1rem !important;
		letter-spacing: 1px !important;
		margin-bottom: 1rem !important;
		gap: 0.5rem !important;
	}

	.custom-order-section__badge-dot {
		width: 5px !important;
		height: 5px !important;
	}

	.custom-order-section__title {
		font-size: clamp(1.625rem, 5vw, 2rem) !important;
		margin-bottom: 0.5rem !important;
		line-height: 1.15 !important;
	}

	.custom-order-section__subtitle {
		font-size: clamp(0.75rem, 2.2vw, 0.875rem) !important;
		max-width: 400px !important;
		line-height: 1.5 !important;
	}

	.custom-order-section__main {
		grid-template-columns: 1fr !important;
		gap: 2.75rem !important;
	}

	.custom-order-section__preview-side {
		position: relative !important;
		top: auto !important;
		order: -1 !important;
	}

	.custom-order-section__preview-frame {
		max-width: 340px !important;
		margin: 0 auto !important;
		aspect-ratio: 3 / 4 !important;
		border-radius: 16px !important;
		padding: 1rem !important;
	}

	.custom-order-section__frame-border {
		border-width: 3px !important;
		border-radius: 16px !important;
	}

	.custom-order-section__preview-content {
		border-radius: 11px !important;
	}

	.custom-order-section__placeholder-icon {
		width: 64px !important;
		height: 64px !important;
	}

	.custom-order-section__placeholder-text {
		font-size: 0.9375rem !important;
	}

	.custom-order-section__preview-text {
		font-size: clamp(0.9375rem, 3vw, 1.375rem) !important;
		padding: 0.625rem 1.25rem !important;
		bottom: 1.375rem !important;
		border-radius: 9px !important;
		max-width: 85% !important;
	}

	.custom-order-section__preview-glow {
		filter: blur(50px) !important;
	}

	.custom-order-section__form {
		gap: 1.75rem !important;
	}

	.custom-order-section__form-group {
		gap: 0.9375rem !important;
	}

	.custom-order-section__step-number {
		width: 30px !important;
		height: 30px !important;
		font-size: 0.6875rem !important;
		border-radius: 8px !important;
	}

	.custom-order-section__step-title {
		font-size: 0.9375rem !important;
	}

	.custom-order-section__upload-area {
		min-height: 200px !important;
		border-radius: 14px !important;
		border-width: 2px !important;
	}

	.custom-order-section__upload-placeholder {
		height: 200px !important;
		gap: 0.5rem !important;
		padding: 1.25rem !important;
	}

	.custom-order-section__upload-icon {
		width: 44px !important;
		height: 44px !important;
		margin-bottom: 0.25rem !important;
	}

	.custom-order-section__upload-text {
		font-size: 0.875rem !important;
	}

	.custom-order-section__upload-hint {
		font-size: 0.6875rem !important;
	}

	.custom-order-section__upload-formats {
		font-size: 0.625rem !important;
		margin-top: 0.25rem !important;
	}

	.custom-order-section__upload-preview {
		height: 200px !important;
		border-radius: 14px !important;
	}

	.custom-order-section__remove-image {
		width: 32px !important;
		height: 32px !important;
		top: 0.625rem !important;
		left: 0.625rem !important;
	}

	.custom-order-section__remove-image svg {
		width: 15px !important;
		height: 15px !important;
	}

	.custom-order-section__textarea {
		min-height: 75px !important;
		padding: 0.875rem 1rem !important;
		font-size: 0.75rem !important;
		border-radius: 12px !important;
		border-width: 1.5px !important;
	}

	.custom-order-section__char-count {
		font-size: 0.625rem !important;
		margin-top: -0.25rem !important;
	}

	.custom-order-section__sizes {
		grid-template-columns: 1fr !important;
		gap: 0.75rem !important;
	}

	.custom-order-section__size-card {
		padding: 1.125rem 1rem !important;
		border-radius: 12px !important;
		border-width: 1.5px !important;
	}

	.custom-order-section__size-label {
		font-size: 0.9375rem !important;
		margin-bottom: 0.375rem !important;
	}

	.custom-order-section__size-price {
		font-size: 0.75rem !important;
	}

	.custom-order-section__size-check {
		width: 20px !important;
		height: 20px !important;
		top: 0.5rem !important;
		right: 0.5rem !important;
	}

	.custom-order-section__size-check svg {
		width: 10px !important;
		height: 10px !important;
		stroke-width: 2.5 !important;
	}

	.custom-order-section__price-display {
		padding: 1rem 1.25rem !important;
		border-radius: 12px !important;
		border-width: 1.5px !important;
		margin-top: 0.75rem !important;
		flex-direction: column !important;
		gap: 0.625rem !important;
		text-align: center !important;
	}

	.custom-order-section__price-label {
		font-size: 0.875rem !important;
	}

	.custom-order-section__price-value {
		font-size: 1.375rem !important;
	}

	.custom-order-section__submit-btn {
		padding: 1rem 1.75rem !important;
		font-size: 0.875rem !important;
		border-radius: 12px !important;
		gap: 0.5rem !important;
	}

	.custom-order-section__btn-icon {
		width: 16px !important;
		height: 16px !important;
	}

	.custom-order-section__size-indicator {
		padding: 0.75rem 1rem !important;
		border-radius: 8px !important;
		font-size: 0.75rem !important;
		gap: 0.5rem !important;
	}

	.custom-order-section__size-indicator svg {
		width: 14px !important;
		height: 14px !important;
	}
}

/* Mobile Extra Small (≤ 375px) */
@media (max-width: 375px) {
	.custom-order-section {
		padding: 3.5rem 0.875rem !important;
		min-height: auto !important;
	}

	.custom-order-section__gradient-orb {
		filter: blur(30px) !important;
	}

	.custom-order-section__gradient-orb--1 {
		width: 200px !important;
		height: 200px !important;
		top: 2% !important;
		left: -20% !important;
	}

	.custom-order-section__gradient-orb--2 {
		width: 180px !important;
		height: 180px !important;
		bottom: 2% !important;
		right: -20% !important;
	}

	.custom-order-section__header {
		margin-bottom: 2.25rem !important;
	}

	.custom-order-section__badge {
		font-size: 0.5625rem !important;
		padding: 0.45rem 0.875rem !important;
		letter-spacing: 0.5px !important;
		margin-bottom: 0.875rem !important;
		gap: 0.4rem !important;
		border-radius: 40px !important;
	}

	.custom-order-section__badge-dot {
		width: 4px !important;
		height: 4px !important;
	}

	.custom-order-section__title {
		font-size: clamp(1.5rem, 5.5vw, 1.875rem) !important;
		margin-bottom: 0.5rem !important;
		line-height: 1.15 !important;
	}

	.custom-order-section__subtitle {
		font-size: clamp(0.6875rem, 2.5vw, 0.8125rem) !important;
		max-width: 360px !important;
		line-height: 1.5 !important;
	}

	.custom-order-section__main {
		grid-template-columns: 1fr !important;
		gap: 2.5rem !important;
	}

	.custom-order-section__preview-side {
		position: relative !important;
		top: auto !important;
		order: -1 !important;
	}

	.custom-order-section__preview-frame {
		max-width: 300px !important;
		margin: 0 auto !important;
		aspect-ratio: 3 / 4 !important;
		border-radius: 14px !important;
		padding: 0.875rem !important;
	}

	.custom-order-section__frame-border {
		border-width: 2px !important;
		border-radius: 14px !important;
	}

	.custom-order-section__preview-content {
		border-radius: 10px !important;
	}

	.custom-order-section__placeholder-icon {
		width: 56px !important;
		height: 56px !important;
	}

	.custom-order-section__placeholder-text {
		font-size: 0.875rem !important;
	}

	.custom-order-section__preview-text {
		font-size: clamp(0.875rem, 3.5vw, 1.25rem) !important;
		padding: 0.5rem 1rem !important;
		bottom: 1.125rem !important;
		border-radius: 8px !important;
		max-width: 90% !important;
		line-height: 1.3 !important;
	}

	.custom-order-section__preview-glow {
		filter: blur(45px) !important;
		opacity: 0.4 !important;
	}

	.custom-order-section__form {
		gap: 1.5rem !important;
	}

	.custom-order-section__form-group {
		gap: 0.875rem !important;
	}

	.custom-order-section__step-number {
		width: 28px !important;
		height: 28px !important;
		font-size: 0.625rem !important;
		border-radius: 7px !important;
	}

	.custom-order-section__step-title {
		font-size: 0.875rem !important;
	}

	.custom-order-section__upload-area {
		min-height: 180px !important;
		border-radius: 13px !important;
		border-width: 2px !important;
	}

	.custom-order-section__upload-placeholder {
		height: 180px !important;
		gap: 0.4rem !important;
		padding: 1rem !important;
	}

	.custom-order-section__upload-icon {
		width: 40px !important;
		height: 40px !important;
		margin-bottom: 0.25rem !important;
	}

	.custom-order-section__upload-text {
		font-size: 0.8125rem !important;
	}

	.custom-order-section__upload-hint {
		font-size: 0.625rem !important;
	}

	.custom-order-section__upload-formats {
		font-size: 0.5625rem !important;
		margin-top: 0.25rem !important;
	}

	.custom-order-section__upload-preview {
		height: 180px !important;
		border-radius: 13px !important;
	}

	.custom-order-section__remove-image {
		width: 30px !important;
		height: 30px !important;
		top: 0.5rem !important;
		left: 0.5rem !important;
	}

	.custom-order-section__remove-image svg {
		width: 14px !important;
		height: 14px !important;
	}

	.custom-order-section__textarea {
		min-height: 70px !important;
		padding: 0.8125rem 0.9375rem !important;
		font-size: 0.6875rem !important;
		border-radius: 11px !important;
		border-width: 1.5px !important;
		line-height: 1.5 !important;
	}

	.custom-order-section__char-count {
		font-size: 0.5625rem !important;
		margin-top: -0.25rem !important;
	}

	.custom-order-section__sizes {
		grid-template-columns: 1fr !important;
		gap: 0.625rem !important;
	}

	.custom-order-section__size-card {
		padding: 1rem 0.9375rem !important;
		border-radius: 11px !important;
		border-width: 1.5px !important;
	}

	.custom-order-section__size-label {
		font-size: 0.875rem !important;
		margin-bottom: 0.3rem !important;
	}

	.custom-order-section__size-price {
		font-size: 0.6875rem !important;
	}

	.custom-order-section__size-check {
		width: 18px !important;
		height: 18px !important;
		top: 0.45rem !important;
		right: 0.45rem !important;
	}

	.custom-order-section__size-check svg {
		width: 9px !important;
		height: 9px !important;
		stroke-width: 2.5 !important;
	}

	.custom-order-section__price-display {
		padding: 0.9375rem 1.125rem !important;
		border-radius: 11px !important;
		border-width: 1.5px !important;
		margin-top: 0.625rem !important;
		flex-direction: column !important;
		gap: 0.5rem !important;
		text-align: center !important;
	}

	.custom-order-section__price-label {
		font-size: 0.8125rem !important;
	}

	.custom-order-section__price-value {
		font-size: 1.25rem !important;
	}

	.custom-order-section__submit-btn {
		padding: 0.9375rem 1.625rem !important;
		font-size: 0.8125rem !important;
		border-radius: 11px !important;
		gap: 0.45rem !important;
	}

	.custom-order-section__btn-icon {
		width: 15px !important;
		height: 15px !important;
	}

	.custom-order-section__size-indicator {
		padding: 0.6875rem 0.9375rem !important;
		border-radius: 7px !important;
		font-size: 0.6875rem !important;
		gap: 0.45rem !important;
	}

	.custom-order-section__size-indicator svg {
		width: 13px !important;
		height: 13px !important;
	}
}

