@charset "utf-8";
/* CSS Document - Order / Enquiry v2
 * Overrides form.css for LXRY ICE dark luxury theme
 * Requires: form.css loaded before this file
 */

/* =============================================
   INTRO SECTION
   ============================================= */
#Intro .img-ice-collection {
	z-index: 0;
	max-width: 600px;
	width: 60%;
	margin: 2% auto -14%;
}
#Intro .txt-col { padding-top:1em; }

/* =============================================
   FORM WRAPPER - Reset form.css defaults
   ============================================= */
#order .form-box {
	background: none;
	border: none;
	padding: 0;
	margin: 0 auto 2em;
	max-width: 800px;
}
#order .form-box .form-content {
	background: none;
	border: none;
	padding: 0;
}
#order .form-content form,
#order .form-content .form {
	padding: 0;
}

/* =============================================
   FORM FIELDS CONTAINER - Reset negative margin
   ============================================= */
#order .form-content .form-fields {
	margin: 0;
}

/* =============================================
   FORM SECTIONS - Grouped fieldsets with legend
   ============================================= */
#order .form-fields > fieldset.form-section {
	width: 100% !important;
	display: flex;
	flex-wrap: wrap;
	border: 1px solid rgba(210, 185, 130, 0.25) !important;
	border-radius: 10px !important;
	padding: 2em 2.5em 0.5em !important;
	margin: 0 0 2em !important;
}
#order .form-section > legend {
	font-family: Cinzel, "Times New Roman", Times, serif;
	font-size: 1.5em;
	font-weight: 500;
	color: #FFF;
	padding: 0 0.6em;
}

/* Inner fieldset resets within form-sections */
#order .form-section fieldset {
	border: none !important;
	border-radius: 0 !important;
	padding: 0.5em 12px !important;
	margin: 0 !important;
}
#order .form-section .fieldset1 { width: 100%; }
#order .form-section .fieldset2 { width: 50%; }

/* Section content (for custom HTML blocks like checkboxes) */
#order .form-section-content {
	width: 100%;
	padding: 0 12px;
}

/* =============================================
   LABELS
   ============================================= */
#order .form-content fieldset .label {
	display: block;
	font-size: 0.9em;
	font-weight: 400;
	color: #F2E6AC;
	padding: 0.3em 0 0.3em;
	letter-spacing: 0.5px;
}

/* =============================================
   INPUTS, SELECTS, TEXTAREAS
   ============================================= */
#order .form-content fieldset input[type=text],
#order .form-content fieldset input[type=email],
#order .form-content fieldset input[type=tel],
#order .form-content fieldset input[type=password],
#order .form-content fieldset input[type=number],
#order .form-content fieldset input[type=date],
#order .form-content fieldset select,
#order .form-content fieldset textarea {
	display: block;
	width: 100%;
	padding: 0.8em 1em;
	font-family: Montserrat, Helvetica, Arial, sans-serif;
	font-size: 1em;
	font-weight: 300;
	color: #ECECFB;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(210, 185, 130, 0.3);
	border-radius: 6px;
	outline: none;
	transition: border-color 0.3s ease, background 0.3s ease;
}
#order .form-content fieldset input:focus,
#order .form-content fieldset select:focus,
#order .form-content fieldset textarea:focus {
	border-color: rgba(210, 185, 130, 0.7);
	background: rgba(255, 255, 255, 0.08);
}
#order .form-content fieldset input::placeholder,
#order .form-content fieldset textarea::placeholder {
	color: rgba(236, 236, 251, 0.35);
	font-weight: 300;
}
#order .form-content fieldset textarea {
	resize: vertical;
	min-height: 120px !important;
}

/* =============================================
   SELECT - Custom gold dropdown arrow
   ============================================= */
#order .form-content fieldset select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23F2E6AC' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 1em center;
	padding-right: 2.5em;
	cursor: pointer;
}
#order .form-content fieldset select option {
	background: #111;
	color: #ECECFB;
}

/* =============================================
   DATE INPUT - Calendar icon colour fix
   ============================================= */
#order .form-content fieldset input[type="date"]::-webkit-calendar-picker-indicator {
	filter: invert(0.8) sepia(1) saturate(3) hue-rotate(10deg);
	cursor: pointer;
}

/* =============================================
   PRODUCT CHECKBOXES (custom HTML)
   ============================================= */
#order .checkbox-grid {
	display: flex;
	flex-wrap: wrap;
	/*gap: 12px 24px;*/
	padding-bottom: 1em;
	flex-direction: column;
	gap: 12px;
}
#order .checkbox-label {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.95em;
	color: #ECECFB;
	cursor: pointer;
	user-select: none;
}
#order .checkbox-label input[type="checkbox"] {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}
#order .checkbox-custom {
	width: 20px;
	height: 20px;
	border: 1px solid rgba(210, 185, 130, 0.4);
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.05);
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: border-color 0.3s ease, background 0.3s ease;
}
#order .checkbox-label:hover .checkbox-custom {
	border-color: rgba(210, 185, 130, 0.7);
}
#order .checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
	background: linear-gradient(
		to bottom,
		#CD9F49 0%,
		#ECD88E 40%,
		#F8F0BC 60%,
		#ECD88E 80%,
		#CD9F49 100%
	);
	border-color: #CD9F49;
}
#order .checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
	content: '\2714';
	color: #000;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
}

/* =============================================
   FORM CLASS CHECKBOX (marketing opt-in)
   Override form.css green to gold theme
   ============================================= */
#order .form-content fieldset .checkbox-row {
	display: flex;
	gap: 10px;
	padding: 0.3em 0;
}
#order .checkbox-row .checkbox-input .checkmark {
	background-color: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(210, 185, 130, 0.4);
	border-radius: 4px;
}
#order .checkbox-row .checkbox-input:hover input ~ .checkmark {
	background-color: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(210, 185, 130, 0.7);
}
#order .checkbox-row .checkbox-input input:checked ~ .checkmark {
	background: linear-gradient(
		to bottom,
		#CD9F49 0%,
		#ECD88E 40%,
		#F8F0BC 60%,
		#ECD88E 80%,
		#CD9F49 100%
	);
	border: 1px solid #CD9F49;
}
#order .checkbox-row .checkbox-input .checkmark:after {
	border-color: #000;
}
#order .checkbox-row .checkbox-txt {
	font-size: 0.95em;
	color: #ECECFB;
}

/* =============================================
   FORM INFO TEXT
   ============================================= */
#order .form-info {
	font-size: 0.9em;
	color: rgba(236, 236, 251, 0.5);
	margin: 0 0 0.8em;
	padding: 0;
}

/* =============================================
   ASTERISK / REQUIRED
   ============================================= */
#order .form-content .asterisk,
#order .form-content .required {
	color: rgba(236, 236, 251, 0.5);
	font-size: 0.85em;
}
#order .svg-asterisk {
	/* gold tint via filter */
	filter: sepia(1) saturate(3) hue-rotate(10deg) brightness(1.1);
}

/* =============================================
   ROBOT Check
   ============================================= */
.robot {
	width: 100%;
	text-align: center;
}
.robot label {
	display: inline-block;
	margin: 0 auto;
}

/* =============================================
   FORM BUTTON AREA
   ============================================= */
#order .form-content .form-btn {
	text-align: center;
	padding: 1.5em 0 0;
	min-height: auto;
}
#order .form-content .required {
	float: none;
	display: block;
	text-align: center;
	padding: 0 0 1em;
}
#order .form-content button {
	float: none;
	min-width: 220px;
	font-size: 1.2em;
}

/* =============================================
   FORM COVER (loading spinner)
   ============================================= */
#order .form-box .form-cover {
	background: rgba(6, 4, 5, 0.85);
	border: none;
	border-radius: 10px;
}
#order .form-box .form-cover .lds-roller div:after {
	background: #F2E6AC;
}

/* =============================================
   ERROR STATES
   ============================================= */
#order .form-content .form-error .label {
	color: #FF6B6B !important;
}
#order .form-content .form-error input,
#order .form-content .form-error select,
#order .form-content .form-error textarea {
	border-color: #FF6B6B !important;
	background: rgba(255, 107, 107, 0.05) !important;
}

/* Error message box */
#order .msg-box {
	background: rgba(255, 107, 107, 0.08);
	border: 1px solid rgba(255, 107, 107, 0.3);
	border-radius: 10px;
	padding: 1.5em 2em;
	margin: 0 auto 2em;
	max-width: 800px;
}
#order .msg-box-grn { text-align:center; }
#order .msg-box .msg-box-hd {
	color: #FF6B6B;
	font-family: Cinzel, "Times New Roman", Times, serif;
	font-size: 1.2em;
	font-weight: 500;
	margin: 0 0 0.5em;
}
#order .msg-box ul {
	padding-left: 1.5em;
	margin: 0;
}
#order .msg-box li {
	color: #ECECFB;
	padding: 0.2em 0;
	font-size: 0.95em;
}

/* Success message box */
#order .msg-box-grn {
	background: rgba(0, 180, 90, 0.2);
	border: 1px solid rgba(0, 180, 90, 0.5);
}
#order .msg-box-grn p {
	color: #ECECFB;
}
#order .msg-box-grn b {
	color: #FFF;
}


/* =============================================
   PRODUCT CATEGORIES (expandable)
   ============================================= */
#order .product-cat {
	border-top: 1px solid rgba(210, 185, 130, 0.15);
	padding: 1.2em 0;
}
#order .product-cat:last-child {
	border-bottom: 1px solid rgba(210, 185, 130, 0.15);
}

/* Category header: checkbox + title */
#order .product-cat-header {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	cursor: pointer;
	user-select: none;
}
#order .product-cat-header .checkbox-custom {
	margin-top: 2px;
}
#order .product-cat-title {
	font-family: Cinzel, "Times New Roman", Times, serif;
	font-size: 1.15em;
	font-weight: 500;
	color: #FFF;
	letter-spacing: 0.5px;
}
#order .product-cat-header:hover .checkbox-custom {
	border-color: rgba(210, 185, 130, 0.7);
}
#order .product-cat-header input[type="checkbox"] {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}
#order .product-cat-header input[type="checkbox"]:checked + .checkbox-custom {
	background: linear-gradient(
		to bottom,
		#CD9F49 0%,
		#ECD88E 40%,
		#F8F0BC 60%,
		#ECD88E 80%,
		#CD9F49 100%
	);
	border-color: #CD9F49;
}
#order .product-cat-header input[type="checkbox"]:checked + .checkbox-custom::after {
	content: '\2714';
	color: #000;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
}

/* Category description */
#order .product-cat-desc {
	font-size: 0.9em;
	color: rgba(236, 236, 251, 0.6);
	margin: 0.4em 0 0 30px;
	line-height: 1.5;
}

/* Expandable section - no padding on this element (jQuery slideDown) */
#order .product-cat-expand {
	display: none;
}

/* Inner wrapper carries the padding */
#order .product-cat-inner {
	padding: 0.8em 0 0.2em 30px;
}

/* Options label */
#order .product-cat-options-label {
	font-size: 0.85em;
	font-weight: 500;
	color: #F2E6AC;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin: 0 0 0.5em;
}

/* Option hints */
#order .option-hint {
	font-size: 0.88em;
	color: rgba(236, 236, 251, 0.4);
	font-style: italic;
}

/* Describe field */
#order .product-describe {
	margin: 0.8em 0 0;
}
#order .product-describe-label {
	display: block;
	font-size: 0.88em;
	font-style: italic;
	color: rgba(236, 236, 251, 0.5);
	margin: 0 0 0.3em;
}
#order .product-describe input[type="text"] {
	display: block;
	width: 100%;
	padding: 0.7em 1em;
	font-family: Montserrat, Helvetica, Arial, sans-serif;
	font-size: 0.95em;
	font-weight: 300;
	color: #ECECFB;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(210, 185, 130, 0.3);
	border-radius: 6px;
	outline: none;
	transition: border-color 0.3s ease, background 0.3s ease;
}
#order .product-describe input[type="text"]:focus {
	border-color: rgba(210, 185, 130, 0.7);
	background: rgba(255, 255, 255, 0.08);
}
#order .product-describe input[type="text"]::placeholder {
	color: rgba(236, 236, 251, 0.35);
	font-weight: 300;
}


/* =============================================
   RESPONSIVE
   ============================================= */
@media only screen and (max-width: 768px) {
	#order .form-fields > fieldset.form-section {
		padding: 1.5em 1.5em 0.5em !important;
	}
	#order .form-section .fieldset2 {
		width: 100%;
	}
	#order .form-section-content {
		padding: 0 12px;
	}
	#order .checkbox-grid {
		flex-direction: column;
		gap: 10px;
	}
	#order .product-cat-inner {
		padding-left: 20px;
	}
	#order .product-cat-desc {
		margin-left: 20px;
	}
}

@media only screen and (max-width: 600px) {
	#order .form-box {
		margin: 0 auto 1.5em;
	}
	#order .form-fields > fieldset.form-section {
		padding: 1.2em 1em 0.3em !important;
	}
	#order .form-section > legend {
		font-size: 1.3em;
	}
	#order .form-section fieldset {
		padding: 0.4em 8px !important;
	}
	#order .form-section-content {
		padding: 0 8px;
	}
	#order .form-content button {
		min-width: 180px;
		font-size: 1.1em;
	}
	#order .form-content .required {
		padding: 0.2em 0 1em;
	}
}

@media only screen and (max-width: 450px) {
	#order .form-fields > fieldset.form-section {
		padding: 1em 0.8em 0.3em !important;
	}
	#order .form-section > legend {
		font-size: 1.2em;
	}
	#order .form-section fieldset {
		padding: 0.4em 5px !important;
	}
	#order .form-section-content {
		padding: 0 5px;
	}
	#order .product-cat-inner {
		padding-left: 10px;
	}
	#order .product-cat-desc {
		margin-left: 10px;
	}
	#order .product-cat-title {
		font-size: 1em;
	}
}
