/* =============================================
   Showcase Product Page + Floating Buttons + Inquiry Form
   ============================================= */

/* === Showcase Product Page extras === */
.showcase-product-page .showcase-specs {
	margin: 16px 0 24px;
}
.showcase-product-page .showcase-specs .pdp-attributes-table {
	width: 100%;
}
.showcase-contact-price {
	color: #d4a745;
	font-size: 1.15em;
	font-weight: 600;
}
.showcase-contact-price i {
	margin-right: 6px;
}
.showcase-buttons {
	flex-direction: column;
	gap: 10px !important;
}
.showcase-buttons .pdp-btn {
	width: 100%;
	justify-content: center;
}
.showcase-wa-btn {
	background: #25D366 !important;
	border-color: #25D366 !important;
	color: #fff !important;
}
.showcase-wa-btn:hover {
	background: #1fb855 !important;
}
.showcase-wa-btn svg {
	vertical-align: middle;
	margin-right: 6px;
}
.showcase-phone-btn {
	background: transparent !important;
	border: 2px solid #333 !important;
	color: #333 !important;
}
.showcase-phone-btn:hover {
	background: #333 !important;
	color: #fff !important;
}

/* === Floating Contact Buttons === */
.shop001-float-stack {
	position: fixed;
	right: 24px;
	bottom: 48px;
	z-index: 9998;
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: center;
}
.shop001-float-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: none;
	cursor: pointer;
	text-decoration: none;
	color: #fff;
	font-size: 20px;
	box-shadow: 0 4px 12px rgba(0,0,0,.18);
	transition: transform .2s, box-shadow .2s;
	position: relative;
}
.shop001-float-btn:hover {
	transform: scale(1.1);
	box-shadow: 0 6px 20px rgba(0,0,0,.26);
	color: #fff;
}
.shop001-float-btn--email {
	background: #d4a745;
}
.shop001-float-btn--wa {
	background: #25D366;
}
.shop001-float-btn--phone {
	background: #4a90d9;
}
.shop001-float-btn--tawk {
	background: #03a84e;
}
.shop001-float-btn svg.float-icon {
	width: 24px;
	height: 24px;
	fill: currentColor;
}
.shop001-float-tooltip {
	position: absolute;
	right: 60px;
	top: 50%;
	transform: translateY(-50%);
	background: #333;
	color: #fff;
	font-size: 12px;
	padding: 5px 10px;
	border-radius: 6px;
	white-space: nowrap;
	opacity: 0;
	pointer-events: none;
	transition: opacity .2s;
}
.shop001-float-btn:hover .shop001-float-tooltip {
	opacity: 1;
}

/* === Inquiry Popup Modal === */
.shop001-inquiry-overlay {
	position: fixed;
	inset: 0;
	z-index: 10001;
	background: rgba(0,0,0,.55);
	display: none;
	align-items: center;
	justify-content: center;
	padding: 20px;
}
.shop001-inquiry-overlay.active {
	display: flex;
}
.shop001-inquiry-modal {
	background: #fff;
	border-radius: 16px;
	padding: 32px;
	max-width: 480px;
	width: 100%;
	max-height: 90vh;
	overflow-y: auto;
	position: relative;
	box-shadow: 0 16px 48px rgba(0,0,0,.2);
	animation: shop001FadeUp .3s ease;
}
@keyframes shop001FadeUp {
	from { opacity: 0; transform: translateY(20px); }
	to   { opacity: 1; transform: translateY(0); }
}
.shop001-inquiry-close {
	position: absolute;
	top: 12px;
	right: 16px;
	background: none;
	border: none;
	font-size: 28px;
	color: #999;
	cursor: pointer;
	line-height: 1;
}
.shop001-inquiry-close:hover {
	color: #333;
}
.shop001-inquiry-modal h3 {
	margin: 0 0 8px;
	font-size: 20px;
	font-weight: 700;
}
.shop001-inquiry-modal .inquiry-subtitle {
	color: #666;
	font-size: 14px;
	margin-bottom: 20px;
}
.shop001-inquiry-field {
	margin-bottom: 14px;
}
.shop001-inquiry-field label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 4px;
	color: #333;
}
.shop001-inquiry-field label .required {
	color: #dc3545;
}
.shop001-inquiry-field input,
.shop001-inquiry-field textarea {
	width: 100%;
	padding: 10px 14px;
	border: 1px solid #ddd;
	border-radius: 8px;
	font-size: 14px;
	font-family: inherit;
	transition: border-color .2s;
	box-sizing: border-box;
}
.shop001-inquiry-field input:focus,
.shop001-inquiry-field textarea:focus {
	border-color: #d4a745;
	outline: none;
	box-shadow: 0 0 0 3px rgba(212,167,69,.15);
}
.shop001-inquiry-field textarea {
	resize: vertical;
	min-height: 100px;
}
.shop001-inquiry-submit {
	width: 100%;
	padding: 12px;
	background: #d4a745;
	color: #fff;
	border: none;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: background .2s;
}
.shop001-inquiry-submit:hover {
	background: #c4972f;
}
.shop001-inquiry-submit:disabled {
	opacity: .6;
	cursor: not-allowed;
}
.shop001-inquiry-msg {
	margin-top: 12px;
	padding: 10px 14px;
	border-radius: 8px;
	font-size: 14px;
	display: none;
}
.shop001-inquiry-msg.success {
	background: #d4edda;
	color: #155724;
	display: block;
}
.shop001-inquiry-msg.error {
	background: #f8d7da;
	color: #721c24;
	display: block;
}

/* === Bottom Inquiry Form Section === */
.shop001-bottom-inquiry {
	background: #f8f6f0;
	padding: 60px 0;
}
.shop001-bottom-inquiry .container {
	max-width: 640px;
}
.shop001-bottom-inquiry .btm-inq-header {
	text-align: center;
	margin-bottom: 28px;
}
.shop001-bottom-inquiry .btm-inq-header h2 {
	font-size: 26px;
	font-weight: 700;
	margin-bottom: 8px;
}
.shop001-bottom-inquiry .btm-inq-header p {
	color: #666;
	font-size: 15px;
}
.shop001-btm-form {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}
.shop001-btm-form .full-width {
	grid-column: 1 / -1;
}
.shop001-btm-form label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 4px;
	color: #333;
}
.shop001-btm-form label .required {
	color: #dc3545;
}
.shop001-btm-form input,
.shop001-btm-form textarea {
	width: 100%;
	padding: 10px 14px;
	border: 1px solid #ddd;
	border-radius: 8px;
	font-size: 14px;
	font-family: inherit;
	box-sizing: border-box;
}
.shop001-btm-form input:focus,
.shop001-btm-form textarea:focus {
	border-color: #d4a745;
	outline: none;
	box-shadow: 0 0 0 3px rgba(212,167,69,.15);
}
.shop001-btm-form textarea {
	resize: vertical;
	min-height: 100px;
}
.shop001-btm-submit {
	display: inline-block;
	padding: 12px 32px;
	background: #d4a745;
	color: #fff;
	border: none;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: background .2s;
}
.shop001-btm-submit:hover {
	background: #c4972f;
}
.shop001-btm-submit:disabled {
	opacity: .6;
	cursor: not-allowed;
}

/* Honeypot */
.shop001-hp-field {
	position: absolute;
	left: -9999px;
	opacity: 0;
	height: 0;
	overflow: hidden;
}

/* === Responsive === */
@media (max-width: 768px) {
	.shop001-float-stack {
		right: 16px;
		bottom: 80px;
		gap: 8px;
	}
	.shop001-float-btn {
		width: 44px;
		height: 44px;
		font-size: 18px;
	}
	.shop001-float-tooltip {
		display: none;
	}
	.shop001-inquiry-modal {
		padding: 24px 20px;
		border-radius: 12px;
	}
	.shop001-btm-form {
		grid-template-columns: 1fr;
	}
	.shop001-bottom-inquiry {
		padding: 40px 0;
	}
}
