/* =========================================================================
   TOG Drop-In — Standalone Form Styling (matches client mockup)
========================================================================= */

.dropin-form {
	max-width: 480px;
	margin: 0 auto;
}

.dropin-form .dropin-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

@media (max-width: 560px) {
	.dropin-form .dropin-row {
		grid-template-columns: 1fr;
	}
}

.dropin-form .dropin-field {
	margin-bottom: 22px;
}

.dropin-form .dropin-field label {
	display: block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: #9a9a9a;
	margin-bottom: 8px;
}

.dropin-form input[type="text"],
.dropin-form input[type="email"],
.dropin-form input[type="tel"],
.dropin-form select {
	width: 100%;
	background: #161616;
	border: 1px solid #2b2b2b;
	border-radius: 8px;
	color: #f2f2f2;
	font-size: 15px;
	padding: 14px 16px;
	transition: border-color 0.15s ease;
	box-sizing: border-box;
	font-family: inherit;
	    padding: 5px 15px;
}

.dropin-form input::placeholder {
	color: #6b6b6b;
}

.dropin-form input:focus,
.dropin-form select:focus {
	outline: none;
	border-color: #e0262f;
}

.dropin-form select {
	appearance: none;
	-webkit-appearance: none;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'><path d='M1 1l6 6 6-6' stroke='%23ffffff' stroke-width='2' fill='none' fill-rule='evenodd'/></svg>");
	background-repeat: no-repeat;
	background-position: right 16px center;
	padding-right: 40px;
	cursor: pointer;
}

.dropin-form select option {
	background: #161616;
	color: #f2f2f2;
}

.dropin-form .dropin-field-error {
	background: #2a1414;
	border: 1px solid #5c2323;
	color: #ff8a8a;
	font-size: 13px;
	padding: 10px 14px;
	border-radius: 8px;
	margin-bottom: 18px;
}

.dropin-form #tog-dropin-submit-btn {
	display: block;
	width: 100%;
	background: #e0262f;
	color: #fff;
	border: none;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 800;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding: 18px;
	cursor: pointer;
	transition: background 0.15s ease;
	font-family: inherit;
}

.dropin-form #tog-dropin-submit-btn:hover {
	background: #c81f27;
}

.dropin-form #tog-dropin-submit-btn:disabled {
	opacity: 0.6;
	cursor: default;
}

.dropin-form .dropin-privacy {
	text-align: center;
	font-size: 12px;
	color: #7a7a7a;
	margin-top: 14px;
}

/* -------------------------------------------------------------------
   Popups (Success / Already Claimed)
------------------------------------------------------------------- */
.tog-dropin-modal {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: none;
	align-items: center;
	justify-content: center;
}

.tog-dropin-modal.is-open {
	display: flex;
}

.tog-dropin-modal-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
}

.tog-dropin-modal-box {
	position: relative;
	background: #fff;
	max-width: 480px;
	width: 90%;
	padding: 0 0 28px;
	border-radius: 12px;
	text-align: center;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
	animation: tog-dropin-pop 0.2s ease-out;
	overflow: hidden;
}

.tog-dropin-popup-image {
	display: block;
	width: 100%;
	height: auto;
	margin-bottom: 20px;
}

@keyframes tog-dropin-pop {
	from {
		transform: scale(0.92);
		opacity: 0;
	}
	to {
		transform: scale(1);
		opacity: 1;
	}
}

.tog-dropin-modal-box h3 {
	margin: 0 0 12px;
	padding: 0 28px;
	font-size: 22px;
	line-height: 1.3;
	color: #1a1a1a;
}

.tog-dropin-modal-box p {
	margin: 0 0 8px;
	padding: 0 28px;
	font-size: 15px;
	line-height: 1.5;
	color: #333;
}

.tog-dropin-modal-close {
	position: absolute;
	top: 10px;
	right: 14px;
	background: rgba(255, 255, 255, 0.85);
	border: none;
	border-radius: 10px;
	width: 30px;
	height: 30px;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	color: #444;
	z-index: 2;
	padding: 0px;
}

.tog-dropin-modal-close:hover {
	color: #000;
	background: #fff;
}
