/* ======================================
   Giraffas Inventory — Frontend Styles
   ====================================== */

:root {
	--gv-orange: #FF6600;
	--gv-orange-hover: #e65c00;
	--gv-dark: #1a1a2e;
	--gv-gray-bg: #f5f5f5;
	--gv-gray-border: #e0e0e0;
	--gv-gray-text: #888888;
	--gv-white: #ffffff;
}

/* ---- Inventory Grid ---- */
.gv-inventory-grid {
	display: grid;
	grid-template-columns: repeat(var(--gv-columns, 3), 1fr);
	gap: 30px;
	padding: 40px 0;
	max-width: 1200px;
	margin: 0 auto;
}

@media (max-width: 991px) {
	.gv-inventory-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
		padding: 30px 15px;
	}
}

@media (max-width: 575px) {
	.gv-inventory-grid {
		grid-template-columns: 1fr;
		gap: 20px;
		padding: 20px 15px;
	}
}

/* ---- Car Card ---- */
.gv-car-card {
	background: var(--gv-white);
	border: 1px solid #eef0f2;
	border-radius: 16px;
	overflow: hidden;
	transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.gv-car-card:hover {
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
	transform: translateY(-4px);
}

/* ---- Card Image ---- */
.gv-car-card-image {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--gv-gray-bg);
}

.gv-card-image-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	text-decoration: none;
}

.gv-car-card-image img.gv-car-thumb {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.gv-car-card:hover .gv-car-card-image img.gv-car-thumb {
	transform: scale(1.06);
}

.gv-car-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.gv-car-placeholder svg {
	opacity: 0.3;
}

/* Card Badge (category on image) */
.gv-card-badge {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 2;
	background: var(--gv-orange);
	color: var(--gv-white);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	padding: 5px 12px;
	border-radius: 6px;
	line-height: 1;
}

/* Photo count badge */
.gv-card-photo-count {
	position: absolute;
	bottom: 12px;
	right: 12px;
	z-index: 2;
	background: rgba(0, 0, 0, 0.65);
	color: var(--gv-white);
	font-size: 12px;
	font-weight: 600;
	padding: 4px 10px;
	border-radius: 20px;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	line-height: 1;
	backdrop-filter: blur(4px);
}

.gv-card-photo-count svg {
	opacity: 0.85;
}

/* ---- Card Content ---- */
.gv-car-card-content {
	padding: 18px 20px 20px;
}

.gv-car-title {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.3;
	margin: 0 0 8px 0;
	color: var(--gv-dark);
}

.gv-car-title a {
	color: inherit;
	text-decoration: none;
}

.gv-car-title a:hover {
	color: var(--gv-orange);
}

/* Price Row */
.gv-car-price-row {
	display: flex;
	align-items: baseline;
	gap: 10px;
	margin-bottom: 14px;
}

.gv-car-price {
	font-size: 18px;
	font-weight: 800;
	color: var(--gv-dark);
}

.gv-car-mileage {
	font-size: 12px;
	color: var(--gv-gray-text);
	background: var(--gv-gray-bg);
	padding: 2px 8px;
	border-radius: 4px;
}

/* ---- Car Tags ---- */
.gv-car-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 16px;
}

.gv-car-tag {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 12px;
	font-weight: 500;
	color: #555;
	padding: 6px 12px;
	border: 1px solid #eef0f2;
	border-radius: 20px;
	background: #fafbfc;
	line-height: 1;
}

.gv-car-tag svg {
	color: var(--gv-gray-text);
	flex-shrink: 0;
}

/* ---- View Details CTA ---- */
.gv-card-view-details {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	width: 100%;
	padding: 12px 0;
	font-size: 14px;
	font-weight: 700;
	color: var(--gv-orange);
	text-decoration: none;
	border: 2px solid var(--gv-orange);
	border-radius: 10px;
	transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.gv-card-view-details svg {
	transition: transform 0.2s ease;
}

.gv-card-view-details:hover {
	background: var(--gv-orange);
	color: var(--gv-white);
	transform: translateY(-1px);
}

.gv-card-view-details:hover svg {
	transform: translate(2px, -2px);
}

/* ---- Archive Inventory Page ---- */
.gv-archive-inventory {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px 20px 60px;
}

.gv-archive-inventory .gv-inventory-grid {
	padding-top: 0;
}

/* Pagination */
.gv-archive-inventory .nav-links {
	display: flex;
	justify-content: center;
	gap: 8px;
	padding: 40px 0 0;
}

.gv-archive-inventory .nav-links a,
.gv-archive-inventory .nav-links span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 14px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.2s ease;
	border: 1px solid var(--gv-gray-border);
	color: var(--gv-dark);
}

.gv-archive-inventory .nav-links a:hover {
	background: var(--gv-orange);
	border-color: var(--gv-orange);
	color: var(--gv-white);
}

.gv-archive-inventory .nav-links .current {
	background: var(--gv-orange);
	border-color: var(--gv-orange);
	color: var(--gv-white);
}

/* ---- Empty State ---- */
.gv-inventory-empty {
	text-align: center;
	padding: 60px 20px;
	color: var(--gv-gray-text);
	font-size: 16px;
}

/* ---- CTA Section ---- */
.gv-inventory-cta {
	background: var(--gv-gray-bg);
	border-radius: 8px;
	padding: 50px 20px;
	margin: 40px auto;
	max-width: 1200px;
	text-align: center;
}

.gv-inventory-cta-inner h3 {
	font-size: 22px;
	font-weight: 700;
	color: var(--gv-dark);
	margin: 0 0 12px 0;
}

.gv-inventory-cta-inner p {
	font-size: 15px;
	color: var(--gv-gray-text);
	margin: 0 0 24px 0;
	max-width: 480px;
	margin-left: auto;
	margin-right: auto;
}

.gv-cta-button {
	display: inline-block;
	background: var(--gv-orange);
	color: var(--gv-white) !important;
	font-size: 14px;
	font-weight: 600;
	padding: 14px 32px;
	border-radius: 30px;
	text-decoration: none;
	transition: background 0.3s ease, transform 0.2s ease;
}

.gv-cta-button:hover {
	background: var(--gv-orange-hover);
	transform: translateY(-1px);
	color: var(--gv-white) !important;
}

.gv-cta-buttons {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	flex-wrap: wrap;
}

.gv-cta-button-secondary {
	background: transparent !important;
	color: var(--gv-orange) !important;
	border: 2px solid var(--gv-orange);
}

.gv-cta-button-secondary:hover {
	background: var(--gv-orange) !important;
	color: var(--gv-white) !important;
}

/* ---- Browse Our Inventory Button (Circular) ---- */
.gv-browse-btn-wrapper {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.gv-browse-btn {
	position: relative;
	width: 100px;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
}

.gv-browse-btn-text {
	position: absolute;
	width: 100%;
	height: 100%;
	animation: gv-rotate 12s linear infinite;
}

.gv-browse-btn-text svg {
	width: 100%;
	height: 100%;
}

.gv-browse-btn-text textPath {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 3px;
	text-transform: uppercase;
	fill: var(--gv-white);
}

.gv-browse-btn-arrow {
	font-size: 20px;
	color: var(--gv-white);
	z-index: 1;
	transition: transform 0.3s ease;
}

.gv-browse-btn:hover .gv-browse-btn-arrow {
	transform: translateX(4px);
}

@keyframes gv-rotate {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}


/* =============================================
   SINGLE CAR PAGE — Premium Design
   ============================================= */

.gv-single-car {
	background: var(--gv-white);
}

/* ---- Hero Section ---- */
.gv-single-hero {
	padding: 40px 0;
	max-width: 1200px;
	margin: 0 auto;
}

.gv-single-hero-inner {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 40px;
	align-items: start;
	padding: 0 20px;
}

@media (max-width: 768px) {
	.gv-single-hero-inner {
		grid-template-columns: 1fr;
		gap: 24px;
	}
}

.gv-single-gallery {
	width: 100%;
	min-width: 0;
	overflow: hidden;
}

/* Slider */
.gv-slider-container {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 10;
	background: #f0f0f0;
	border-radius: 14px;
	overflow: hidden;
}

.gv-slider-track {
	width: 100%;
	height: 100%;
	position: relative;
}

.gv-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 0.5s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.gv-slide.active {
	opacity: 1;
	z-index: 1;
}

.gv-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	cursor: zoom-in;
}

.gv-slide-placeholder {
	background: #f0f0f0;
}

.gv-slide-placeholder svg {
	opacity: 0.3;
}

/* Slider Arrows */
.gv-slider-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 3;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: none;
	background: rgba(255, 255, 255, 0.92);
	color: var(--gv-dark);
	font-size: 24px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
	line-height: 1;
	padding: 0;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

.gv-slider-arrow:hover {
	background: #fff;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
	transform: translateY(-50%) scale(1.08);
}

.gv-slider-prev {
	left: 14px;
}

.gv-slider-next {
	right: 14px;
}

/* Photo counter */
.gv-photo-counter {
	position: absolute;
	bottom: 14px;
	right: 14px;
	z-index: 3;
	background: rgba(0, 0, 0, 0.65);
	color: #fff;
	padding: 6px 14px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 6px;
	backdrop-filter: blur(4px);
}

/* Zoom / Expand button on slider */
.gv-slider-zoom-btn {
	position: absolute;
	bottom: 14px;
	left: 14px;
	z-index: 3;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: none;
	background: rgba(0, 0, 0, 0.55);
	color: #fff;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.25s ease;
	backdrop-filter: blur(4px);
	padding: 0;
}

.gv-slider-zoom-btn:hover {
	background: var(--gv-orange);
	transform: scale(1.12);
	box-shadow: 0 4px 16px rgba(255, 102, 0, 0.4);
}

.gv-slider-zoom-btn svg {
	transition: transform 0.2s ease;
}

.gv-slider-zoom-btn:hover svg {
	transform: scale(1.1);
}

/* Thumbnail strip */
.gv-slider-thumbs {
	display: flex;
	gap: 8px;
	padding: 12px 0 0;
	overflow-x: auto;
	overflow-y: hidden;
	scrollbar-width: none;
	/* Firefox */
	-ms-overflow-style: none;
	/* IE/Edge */
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	touch-action: pan-x;
}

.gv-slider-thumbs::-webkit-scrollbar {
	display: none;
	/* Chrome, Safari, Opera */
}

.gv-thumb {
	flex: 0 0 auto;
	width: 110px;
	height: 75px;
	border-radius: 8px;
	overflow: hidden;
	border: 2px solid transparent;
	cursor: pointer;
	padding: 0;
	background: none;
	transition: all 0.2s ease;
	opacity: 0.5;
}

.gv-thumb.active {
	border-color: var(--gv-orange);
	opacity: 1;
}

.gv-thumb:hover {
	opacity: 0.85;
}

.gv-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Hide dots when thumbs present */
.gv-slider-dots {
	display: none;
}

/* ---- Quick Info Panel ---- */
.gv-single-quick-info {
	padding: 0;
}

.gv-single-car .gv-car-category {
	display: inline-block;
	background: rgba(255, 102, 0, 0.08);
	color: var(--gv-orange);
	padding: 5px 16px;
	border-radius: 20px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.8px;
	margin-bottom: 14px;
	text-transform: uppercase;
}

.gv-single-title {
	font-size: 28px;
	font-weight: 800;
	color: var(--gv-dark);
	margin: 0 0 8px 0;
	line-height: 1.2;
}

.gv-single-price {
	font-size: 28px;
	font-weight: 700;
	color: var(--gv-orange);
	margin: 0 0 20px 0;
}

/* Quick highlight pills */
.gv-quick-highlights {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 28px;
}

.gv-highlight-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 14px;
	background: #f5f5f7;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 500;
	color: #555;
	border: 1px solid #eee;
	transition: border-color 0.2s ease;
}

.gv-highlight-pill:hover {
	border-color: var(--gv-orange);
}

.gv-highlight-pill svg {
	color: var(--gv-orange);
	flex-shrink: 0;
}

/* Short description */
.gv-single-short-desc {
	font-size: 14px;
	line-height: 1.6;
	color: #666;
	margin: 0 0 20px 0;
}

.gv-single-short-desc p {
	margin: 0 0 8px 0;
}

.gv-single-short-desc p:last-child {
	margin-bottom: 0;
}

.gv-single-short-desc strong {
	color: #444;
}

.gv-single-short-desc ul,
.gv-single-short-desc ol {
	margin: 4px 0 8px 20px;
	padding: 0;
}

/* Hero CTA Buttons */
.gv-hero-cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--gv-orange);
	color: #fff;
	padding: 14px 32px;
	border-radius: 10px;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.25s ease;
	cursor: pointer;
	margin-right: 10px;
	margin-bottom: 10px;
}

.gv-hero-cta:hover {
	background: #e06000;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(255, 102, 0, 0.3);
	color: #fff;
}

.gv-hero-cta-secondary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: transparent;
	color: var(--gv-dark);
	padding: 14px 32px;
	border-radius: 10px;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.25s ease;
	cursor: pointer;
	border: 2px solid #ddd;
	margin-bottom: 10px;
}

.gv-hero-cta-secondary:hover {
	border-color: var(--gv-orange);
	color: var(--gv-orange);
	transform: translateY(-2px);
}

.gv-hero-cta svg,
.gv-hero-cta-secondary svg {
	flex-shrink: 0;
}

/* ---- Single Body ---- */
.gv-single-body {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px 60px;
}

/* ---- Sections ---- */
.gv-section {
	margin-bottom: 48px;
}

.gv-section-title {
	font-size: 18px;
	font-weight: 700;
	color: var(--gv-dark);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin: 0 0 24px 0;
	padding-bottom: 16px;
	border-bottom: 2px solid var(--gv-orange);
	display: flex;
	align-items: center;
	gap: 10px;
}

.gv-section-title svg {
	color: var(--gv-orange);
	flex-shrink: 0;
}

/* ---- Vehicle Details Grid ---- */
.gv-details-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
	background: #fff;
	border-radius: 14px;
	border: 1px solid #eee;
	overflow: hidden;
}

.gv-detail-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px 20px;
	border-bottom: 1px solid #f3f3f3;
	transition: background 0.2s ease;
}

.gv-detail-item:hover {
	background: #fafafa;
}

.gv-detail-item:nth-child(3n+2) {
	border-left: 1px solid #f3f3f3;
	border-right: 1px solid #f3f3f3;
}

.gv-detail-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	min-width: 38px;
	border-radius: 10px;
	background: rgba(255, 102, 0, 0.07);
	flex-shrink: 0;
}

.gv-detail-icon svg {
	color: var(--gv-orange);
}

.gv-detail-label {
	font-size: 13px;
	color: #999;
	white-space: nowrap;
	margin-right: auto;
}

.gv-detail-value {
	font-size: 14px;
	font-weight: 600;
	color: var(--gv-dark);
	text-align: right;
}

@media (max-width: 768px) {
	.gv-details-grid {
		grid-template-columns: 1fr 1fr;
	}

	.gv-detail-item:nth-child(3n+2) {
		border-left: none;
		border-right: none;
	}

	.gv-detail-item:nth-child(2n) {
		border-left: 1px solid #f3f3f3;
	}
}

@media (max-width: 480px) {
	.gv-details-grid {
		grid-template-columns: 1fr;
	}

	.gv-detail-item:nth-child(2n) {
		border-left: none;
	}
}

/* ---- Car Features ---- */
.gv-features-display {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}

.gv-feature-group h4 {
	font-size: 15px;
	font-weight: 700;
	color: var(--gv-dark);
	margin: 0 0 14px 0;
	padding-bottom: 10px;
	border-bottom: 2px solid #f0f0f0;
}

.gv-feature-group ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.gv-feature-group ul li {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 0;
	font-size: 13px;
	color: #555;
	transition: color 0.2s ease;
}

.gv-feature-group ul li:hover {
	color: var(--gv-dark);
}

.gv-feature-check {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border-radius: 6px;
	background: var(--gv-orange);
	color: #fff;
	flex-shrink: 0;
}

@media (max-width: 768px) {
	.gv-features-display {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
}

@media (max-width: 480px) {
	.gv-features-display {
		grid-template-columns: 1fr;
	}
}

/* ---- Seller's Notes ---- */
.gv-notes-content {
	font-size: 15px;
	line-height: 1.8;
	color: #555;
	background: #fafafa;
	padding: 24px 28px;
	border-radius: 14px;
	border: 1px solid #f0f0f0;
}

.gv-notes-content p {
	margin: 0 0 12px 0;
}

/* ---- Contact Section Layout ---- */
.gv-contact-layout {
	display: grid;
	grid-template-columns: 320px 1fr;
	gap: 0;
	background: #fff;
	border-radius: 16px;
	border: 1px solid #eee;
	overflow: hidden;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

@media (max-width: 768px) {
	.gv-contact-layout {
		grid-template-columns: 1fr;
	}
}

/* Dealer Card (dark sidebar) */
.gv-dealer-card {
	background: var(--gv-dark);
	color: #fff;
	padding: 36px 24px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.gv-dealer-avatar {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
}

.gv-dealer-name {
	font-size: 18px;
	font-weight: 700;
	margin: 0 0 4px 0;
	color: #fff;
}

.gv-dealer-subtitle {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.5);
	margin: 0 0 24px 0;
}

.gv-dealer-car-info {
	display: flex;
	align-items: center;
	gap: 12px;
	background: rgba(255, 255, 255, 0.06);
	padding: 12px 16px;
	border-radius: 12px;
	width: 100%;
	margin-bottom: 24px;
	text-align: left;
}

.gv-dealer-car-thumb {
	width: 60px;
	height: 44px;
	border-radius: 8px;
	overflow: hidden;
	flex-shrink: 0;
}

.gv-dealer-car-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gv-dealer-car-name {
	font-size: 13px;
	font-weight: 600;
	margin: 0 0 2px 0;
	color: #fff;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 160px;
}

.gv-dealer-car-price {
	font-size: 15px;
	font-weight: 700;
	margin: 0;
	color: var(--gv-orange);
}

.gv-dealer-actions {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.gv-dealer-action-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 13px 16px;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.2s ease;
	cursor: pointer;
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.12);
}

.gv-dealer-action-btn:hover {
	background: rgba(255, 255, 255, 0.16);
	color: #fff;
	transform: translateY(-1px);
}

.gv-whatsapp-btn {
	background: #25d366;
	border-color: #25d366;
}

.gv-whatsapp-btn:hover {
	background: #1fab54;
	border-color: #1fab54;
}

/* ---- Contact Form ---- */
.gv-contact-form-wrapper {
	padding: 36px;
}

.gv-contact-form-title {
	display: none;
}

.gv-form-group {
	margin-bottom: 14px;
	flex: 1;
}

.gv-form-group label {
	display: none;
}

.gv-form-group input,
.gv-form-group textarea {
	width: 100%;
	padding: 14px 18px;
	border: 1px solid #e8e8e8;
	border-radius: 12px;
	font-size: 14px;
	font-family: inherit;
	background: #f8f8fa;
	transition: all 0.25s ease;
	box-sizing: border-box;
	color: var(--gv-dark);
}

.gv-form-group input::placeholder,
.gv-form-group textarea::placeholder {
	color: #aaa;
}

.gv-form-group input:focus,
.gv-form-group textarea:focus {
	border-color: var(--gv-orange);
	outline: none;
	box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.06);
	background: #fff;
}

.gv-form-group textarea {
	resize: vertical;
	min-height: 100px;
}

.gv-form-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}

@media (max-width: 575px) {
	.gv-form-row {
		grid-template-columns: 1fr;
	}

	.gv-contact-form-wrapper {
		padding: 24px 16px;
	}
}

.gv-form-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 8px;
}

.gv-form-terms {
	font-size: 13px;
	color: #999;
}

.gv-form-terms label {
	display: flex !important;
	align-items: center;
	gap: 8px;
	cursor: pointer;
}

.gv-form-terms input[type="checkbox"] {
	width: 16px;
	height: 16px;
	accent-color: var(--gv-orange);
}

.gv-form-terms a {
	color: var(--gv-orange);
	text-decoration: underline;
}

.gv-form-submit {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--gv-orange) !important;
	color: #fff !important;
	font-size: 15px;
	font-weight: 600;
	padding: 14px 30px;
	border: none !important;
	border-radius: 10px;
	cursor: pointer;
	transition: all 0.25s ease;
}

.gv-form-submit:hover {
	background: #e06000;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(255, 102, 0, 0.3);
}

.gv-form-submit svg {
	flex-shrink: 0;
}

/* Form Success */
.gv-form-success {
	display: flex;
	align-items: center;
	gap: 12px;
	background: #ecfdf5;
	border: 1px solid #a7f3d0;
	color: #065f46;
	padding: 16px 20px;
	border-radius: 12px;
	margin-bottom: 20px;
	font-size: 14px;
	font-weight: 500;
}

.gv-form-success svg {
	color: #059669;
	flex-shrink: 0;
}

.gv-form-success p {
	margin: 0;
}

/* ---- Lightbox / Image Preview ---- */
.gv-lightbox {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 99999;
	background: rgba(0, 0, 0, 0.92);
	backdrop-filter: blur(8px);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.gv-lightbox.active {
	opacity: 1;
	visibility: visible;
}

.gv-lightbox-content {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.gv-lightbox-img {
	max-width: 90vw;
	max-height: 85vh;
	object-fit: contain;
	border-radius: 8px;
	transition: transform 0.3s ease;
	cursor: zoom-in;
	user-select: none;
	-webkit-user-select: none;
	touch-action: pinch-zoom;
}

.gv-lightbox-img.zoomed {
	cursor: grab;
	max-width: none;
	max-height: none;
}

.gv-lightbox-img.zoomed.dragging {
	cursor: grabbing;
	transition: none;
}

/* Lightbox zoom toolbar */
.gv-lightbox-toolbar {
	position: absolute;
	bottom: 70px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	gap: 4px;
	background: rgba(0, 0, 0, 0.6);
	padding: 6px 10px;
	border-radius: 30px;
	backdrop-filter: blur(8px);
	z-index: 10;
	transition: opacity 0.3s ease;
}

.gv-lightbox-toolbar button {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: none;
	background: transparent;
	color: rgba(255, 255, 255, 0.7);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
	padding: 0;
}

.gv-lightbox-toolbar button:hover {
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
}

.gv-lightbox-toolbar button.active {
	background: var(--gv-orange);
	color: #fff;
}

.gv-lightbox-toolbar .gv-toolbar-divider {
	width: 1px;
	height: 20px;
	background: rgba(255, 255, 255, 0.2);
	margin: 0 4px;
}

.gv-lightbox-zoom-level {
	color: rgba(255, 255, 255, 0.6);
	font-size: 12px;
	font-weight: 600;
	min-width: 38px;
	text-align: center;
	user-select: none;
}

/* Lightbox close */
.gv-lightbox-close {
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 10;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: none;
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
	font-size: 28px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
	backdrop-filter: blur(4px);
	line-height: 1;
	padding: 0;
}

.gv-lightbox-close:hover {
	background: rgba(255, 255, 255, 0.3);
	transform: scale(1.1);
}

/* Lightbox arrows */
.gv-lightbox-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: none;
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
	font-size: 28px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
	backdrop-filter: blur(4px);
	line-height: 1;
	padding: 0;
}

.gv-lightbox-arrow:hover {
	background: rgba(255, 255, 255, 0.3);
	transform: translateY(-50%) scale(1.1);
}

.gv-lightbox-prev {
	left: 20px;
}

.gv-lightbox-next {
	right: 20px;
}

/* Lightbox counter */
.gv-lightbox-counter {
	position: absolute;
	bottom: 24px;
	left: 50%;
	transform: translateX(-50%);
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
	font-weight: 500;
	background: rgba(0, 0, 0, 0.4);
	padding: 6px 16px;
	border-radius: 20px;
	backdrop-filter: blur(4px);
}

/* Lightbox zoom hint */
.gv-lightbox-hint {
	position: absolute;
	bottom: 64px;
	left: 50%;
	transform: translateX(-50%);
	color: rgba(255, 255, 255, 0.5);
	font-size: 12px;
	pointer-events: none;
	transition: opacity 0.3s ease;
}

@media (max-width: 768px) {
	.gv-lightbox-img {
		max-width: 100vw;
		max-height: 80vh;
		border-radius: 0;
	}

	.gv-lightbox-arrow {
		width: 40px;
		height: 40px;
		font-size: 22px;
	}

	.gv-lightbox-prev {
		left: 10px;
	}

	.gv-lightbox-next {
		right: 10px;
	}

	.gv-lightbox-close {
		top: 12px;
		right: 12px;
	}
}