.sg-gig,
.sg-gig *,
.sg-lightbox,
.sg-lightbox *,
.sg-mobile-cta,
.sg-mobile-cta * {
	box-sizing: border-box;
}

.sg-gig {
	font-family: var(--gv-font-sans);
	color: var(--gv-text-primary);
	background: var(--gv-bg-2);
	-webkit-font-smoothing: antialiased;
	line-height: 1.5;
}

.sg-gig img {
	max-width: 100%;
	display: block;
}

.sg-gig a {
	text-decoration: none;
	color: inherit;
}

.sg-container {
	width: 100%;
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 24px;
}

.sg-gig__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 360px;
	gap: 40px;
	padding-top: 72px;
	padding-bottom: 72px;
	align-items: start;
}

.sg-gig__main {
	min-width: 0;
}

.sg-gig__sidebar {
	position: sticky;
	top: 24px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.sg-gig__header {
	margin-bottom: 24px;
}

.sg-gig__header-top {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 14px;
	flex-wrap: wrap;
}

.sg-chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12.5px;
	font-weight: 600;
	padding: 6px 12px;
	border-radius: var(--gv-radius-full);
	letter-spacing: 0.01em;
}

.sg-chip--pro {
	background: linear-gradient(135deg, var(--gv-accent), var(--gv-accent-dark));
	color: var(--gv-text-inverse);
}

.sg-chip--pro i {
	font-size: 11px;
}

.sg-gig__title {
	font-family: var(--gv-font-display);
	font-size: 30px;
	font-weight: 700;
	line-height: 1.28;
	color: var(--gv-text-primary);
	margin: 0 0 18px;
	letter-spacing: -0.01em;
	max-width: 820px;
}

.sg-gig__meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 14px;
	row-gap: 10px;
}

.sg-gig__meta-seller {
	display: flex;
	align-items: center;
	gap: 10px;
}

.sg-gig__meta-avatar {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid var(--gv-surface);
	box-shadow: 0 0 0 1px var(--gv-border);
}

.sg-gig__meta-seller-info {
	display: flex;
	flex-direction: column;
	line-height: 1.25;
}

.sg-gig__meta-name {
	font-size: 14px;
	font-weight: 700;
	color: var(--gv-text-primary);
}

.sg-gig__meta-seller:hover .sg-gig__meta-name {
	color: var(--gv-primary);
}

.sg-gig__meta-handle {
	font-size: 12.5px;
	color: var(--gv-text-muted);
}

.sg-gig__meta-divider {
	width: 1px;
	height: 20px;
	background: var(--gv-border-2);
}

.sg-gig__meta-rating,
.sg-gig__meta-orders {
	display: flex;
	align-items: center;
	gap: 7px;
	font-size: 14px;
	color: var(--gv-text-secondary);
	font-weight: 500;
}

.sg-gig__meta-rating strong {
	color: var(--gv-text-primary);
	font-weight: 700;
}

.sg-gig__meta-reviews-link {
	color: var(--gv-text-muted);
	font-weight: 500;
	transition: color var(--gv-transition);
}

.sg-gig__meta-reviews-link:hover {
	color: var(--gv-primary);
	text-decoration: underline;
}

.sg-gig__meta-orders i {
	color: var(--gv-text-muted);
	font-size: 13px;
}

.sg-stars {
	display: inline-flex;
	gap: 2px;
	color: var(--gv-warning);
	font-size: 13px;
}

.sg-stars--lg {
	font-size: 18px;
}

.sg-gallery {
	margin-bottom: 32px;
}

.sg-gallery__stage {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 10;
	border-radius: var(--gv-radius-lg);
	overflow: hidden;
	background: var(--gv-bg-3);
	box-shadow: var(--gv-shadow-md);
	margin-bottom: 12px;
}

.sg-gallery__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: opacity var(--gv-transition-slow);
}

.sg-gallery__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: none;
	background: rgba(20, 20, 43, 0.55);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 14px;
	transition: background var(--gv-transition), opacity var(--gv-transition);
	opacity: 0;
	backdrop-filter: blur(4px);
}

.sg-gallery__stage:hover .sg-gallery__nav {
	opacity: 1;
}

.sg-gallery__nav:hover {
	background: rgba(20, 20, 43, 0.78);
}

.sg-gallery__nav--prev {
	left: 16px;
}

.sg-gallery__nav--next {
	right: 16px;
}

.sg-gallery__expand {
	position: absolute;
	bottom: 16px;
	right: 16px;
	width: 38px;
	height: 38px;
	border-radius: var(--gv-radius-md);
	border: none;
	background: rgba(20, 20, 43, 0.55);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 14px;
	backdrop-filter: blur(4px);
	transition: background var(--gv-transition);
}

.sg-gallery__expand:hover {
	background: rgba(20, 20, 43, 0.78);
}

.sg-gallery__counter {
	position: absolute;
	bottom: 16px;
	left: 16px;
	background: rgba(20, 20, 43, 0.55);
	color: #fff;
	font-size: 12.5px;
	font-weight: 600;
	padding: 6px 12px;
	border-radius: var(--gv-radius-full);
	backdrop-filter: blur(4px);
	letter-spacing: 0.02em;
}

.sg-gallery__thumbs {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 10px;
}

.sg-gallery__thumb {
	position: relative;
	aspect-ratio: 1 / 1;
	border-radius: var(--gv-radius-md);
	overflow: hidden;
	border: 2px solid transparent;
	padding: 0;
	cursor: pointer;
	background: var(--gv-bg-3);
	transition: border-color var(--gv-transition), opacity var(--gv-transition);
	opacity: 0.7;
}

.sg-gallery__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sg-gallery__thumb:hover {
	opacity: 1;
}

.sg-gallery__thumb.is-active {
	border-color: var(--gv-primary);
	opacity: 1;
}

.sg-gallery__thumb-play {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(20, 20, 43, 0.45);
	color: #fff;
	font-size: 14px;
}

.sg-tabs {
	display: flex;
	gap: 28px;
	border-bottom: 1px solid var(--gv-border);
	margin-bottom: 36px;
	overflow-x: auto;
	scrollbar-width: none;
}

.sg-tabs::-webkit-scrollbar {
	display: none;
}

.sg-tabs__link {
	position: relative;
	font-size: 15px;
	font-weight: 600;
	color: var(--gv-text-muted);
	padding: 14px 2px;
	white-space: nowrap;
	transition: color var(--gv-transition);
}

.sg-tabs__link:hover {
	color: var(--gv-text-primary);
}

.sg-tabs__link.is-active {
	color: var(--gv-primary);
}

.sg-tabs__link.is-active::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	height: 2px;
	background: var(--gv-primary);
	border-radius: var(--gv-radius-full);
}

.sg-section {
	margin-bottom: 48px;
	padding-bottom: 48px;
	border-bottom: 1px solid var(--gv-border);
}

.sg-section:last-of-type {
	border-bottom: none;
}

.sg-section__title {
	font-family: var(--gv-font-display);
	font-size: 21px;
	font-weight: 700;
	color: var(--gv-text-primary);
	margin: 0 0 20px;
	letter-spacing: -0.005em;
}

.sg-section__head-row {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 24px;
}

.sg-section__head-row .sg-section__title {
	margin-bottom: 0;
}

.sg-prose p {
	font-size: 15.5px;
	color: var(--gv-text-secondary);
	line-height: 1.75;
	margin: 0 0 16px;
}

.sg-prose p:last-child {
	margin-bottom: 0;
}

.sg-feature-list {
	list-style: none;
	margin: 24px 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px 24px;
}

.sg-feature-list__item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 14.5px;
	color: var(--gv-text-secondary);
	line-height: 1.5;
}

.sg-feature-list__item i {
	color: var(--gv-success);
	font-size: 15px;
	margin-top: 2px;
	flex-shrink: 0;
}

.sg-info-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
	margin-top: 32px;
	padding: 22px;
	background: var(--gv-surface-2);
	border: 1px solid var(--gv-border);
	border-radius: var(--gv-radius-lg);
}

.sg-info-grid__item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.sg-info-grid__item i {
	width: 36px;
	height: 36px;
	border-radius: var(--gv-radius-md);
	background: var(--gv-primary-subtle);
	color: var(--gv-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	flex-shrink: 0;
}

.sg-info-grid__item div {
	display: flex;
	flex-direction: column;
	line-height: 1.3;
}

.sg-info-grid__label {
	font-size: 12px;
	color: var(--gv-text-muted);
	font-weight: 500;
	margin-bottom: 2px;
}

.sg-info-grid__value {
	font-size: 14px;
	color: var(--gv-text-primary);
	font-weight: 700;
}

.sg-portfolio-showcase {
	margin-top: 28px;
	padding: 24px;
	background: var(--gv-surface);
	border: 1px solid var(--gv-border);
	border-radius: var(--gv-radius-lg);
	box-shadow: var(--gv-shadow-sm);
}

.sg-portfolio-showcase__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 18px;
}

.sg-portfolio-showcase__eyebrow {
	display: block;
	font-size: 12px;
	font-weight: 700;
	color: var(--gv-primary);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin-bottom: 4px;
}

.sg-portfolio-showcase__title {
	font-family: var(--gv-font-display);
	font-size: 17px;
	font-weight: 700;
	color: var(--gv-text-primary);
	margin: 0;
	letter-spacing: 0;
}

.sg-portfolio-showcase__count {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: 5px 12px;
	border-radius: var(--gv-radius-full);
	background: var(--gv-primary-subtle);
	color: var(--gv-primary);
	font-size: 12.5px;
	font-weight: 700;
}

.sg-portfolio-showcase__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.sg-portfolio-link {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr) 32px;
	align-items: center;
	gap: 12px;
	min-height: 74px;
	padding: 14px;
	background: var(--gv-surface-2);
	border: 1px solid var(--gv-border);
	border-radius: var(--gv-radius-md);
	transition: background var(--gv-transition), border-color var(--gv-transition), box-shadow var(--gv-transition), transform var(--gv-transition);
}

.sg-portfolio-link:hover {
	background: var(--gv-bg);
	border-color: var(--gv-border-2);
	box-shadow: var(--gv-shadow-sm);
	transform: translateY(-1px);
}

.sg-portfolio-link__icon,
.sg-portfolio-link__action {
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: var(--gv-radius-md);
}

.sg-portfolio-link__icon {
	width: 42px;
	height: 42px;
	background: var(--gv-primary-subtle);
	color: var(--gv-primary);
	font-size: 16px;
}

.sg-portfolio-link__content {
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.sg-portfolio-link__label {
	color: var(--gv-text-primary);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.35;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.sg-portfolio-link__host {
	color: var(--gv-text-muted);
	font-size: 12.5px;
	font-weight: 600;
	line-height: 1.3;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.sg-portfolio-link__action {
	width: 32px;
	height: 32px;
	color: var(--gv-text-muted);
	background: var(--gv-surface);
	border: 1px solid var(--gv-border);
	font-size: 12px;
	transition: color var(--gv-transition), background var(--gv-transition), border-color var(--gv-transition), transform var(--gv-transition);
}

.sg-portfolio-link:hover .sg-portfolio-link__action {
	color: var(--gv-text-inverse);
	background: var(--gv-primary);
	border-color: var(--gv-primary);
	transform: translateX(2px);
}

.sg-tags {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 28px;
}

.sg-tags__label {
	font-size: 13.5px;
	color: var(--gv-text-muted);
	font-weight: 600;
	margin-right: 4px;
}

.sg-tag {
	font-size: 13px;
	font-weight: 500;
	color: var(--gv-text-secondary);
	background: var(--gv-bg-3);
	padding: 6px 14px;
	border-radius: var(--gv-radius-full);
	transition: background var(--gv-transition), color var(--gv-transition);
}

.sg-tag:hover {
	background: var(--gv-primary-subtle);
	color: var(--gv-primary);
}

.sg-seller-card {
	background: var(--gv-surface);
	border: 1px solid var(--gv-border);
	border-radius: var(--gv-radius-lg);
	padding: 28px;
	box-shadow: var(--gv-shadow-sm);
}

.sg-seller-card__top {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	margin-bottom: 20px;
}

.sg-seller-card__avatar {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

.sg-seller-card__identity {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.sg-seller-card__name {
	font-family: var(--gv-font-display);
	font-size: 17px;
	font-weight: 700;
	color: var(--gv-text-primary);
	margin: 0;
	display: flex;
	align-items: center;
	gap: 7px;
}

.sg-seller-card__verified {
	font-size: 14px;
	color: var(--gv-primary);
}

.sg-seller-card__handle {
	font-size: 13.5px;
	color: var(--gv-text-muted);
}

.sg-seller-card__rating {
	display: flex;
	align-items: center;
	gap: 7px;
	margin-top: 4px;
	font-size: 13.5px;
	color: var(--gv-text-secondary);
}

.sg-seller-card__rating strong {
	color: var(--gv-text-primary);
	font-weight: 700;
}

.sg-seller-card__rating-count {
	color: var(--gv-text-muted);
}

.sg-seller-card__contact {
	flex-shrink: 0;
	white-space: nowrap;
}

.sg-seller-card__bio {
	font-size: 14.5px;
	color: var(--gv-text-secondary);
	line-height: 1.7;
	margin: 0 0 24px;
}

.sg-seller-card__stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	padding: 20px 0;
	border-top: 1px solid var(--gv-border);
	border-bottom: 1px solid var(--gv-border);
	margin-bottom: 20px;
}

.sg-seller-card__stat {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.sg-seller-card__stat-value {
	font-family: var(--gv-font-display);
	font-size: 19px;
	font-weight: 700;
	color: var(--gv-text-primary);
}

.sg-seller-card__stat-label {
	font-size: 12.5px;
	color: var(--gv-text-muted);
	font-weight: 500;
}

.sg-seller-card__details {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
}

.sg-seller-card__detail {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13.5px;
	color: var(--gv-text-secondary);
	font-weight: 500;
}

.sg-seller-card__detail i {
	color: var(--gv-text-muted);
	font-size: 13px;
	width: 14px;
	text-align: center;
}

.sg-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	font-family: var(--gv-font-sans);
	font-size: 14.5px;
	font-weight: 700;
	padding: 12px 22px;
	border-radius: var(--gv-radius-md);
	border: 1px solid transparent;
	cursor: pointer;
	transition: background var(--gv-transition), color var(--gv-transition), border-color var(--gv-transition), transform var(--gv-transition), box-shadow var(--gv-transition);
	white-space: nowrap;
}

.sg-btn:active {
	transform: scale(0.98);
}

.sg-btn--primary {
	background: var(--gv-primary);
	color: var(--gv-text-inverse);
	box-shadow: 0 2px 10px rgba(91, 91, 214, 0.28);
}

.sg-btn--primary:hover {
	background: var(--gv-primary-dark);
	box-shadow: 0 4px 16px rgba(91, 91, 214, 0.36);
}

.sg-btn--outline {
	background: transparent;
	border-color: var(--gv-border-2);
	color: var(--gv-text-primary);
}

.sg-btn--outline:hover {
	border-color: var(--gv-primary);
	color: var(--gv-primary);
	background: var(--gv-primary-subtle);
}

.sg-btn--ghost {
	background: var(--gv-surface-2);
	color: var(--gv-text-secondary);
	border-color: var(--gv-border);
	width: 100%;
}

.sg-btn--ghost:hover {
	background: var(--gv-bg-3);
	color: var(--gv-text-primary);
}

.sg-reviews-summary {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.sg-reviews-summary__score {
	font-family: var(--gv-font-display);
	font-size: 22px;
	font-weight: 800;
	color: var(--gv-text-primary);
}

.sg-reviews-summary__count {
	font-size: 13.5px;
	color: var(--gv-text-muted);
	font-weight: 500;
}

.sg-rating-bars {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 32px;
	max-width: 420px;
}

.sg-rating-bars__row {
	display: grid;
	grid-template-columns: 56px 1fr 36px;
	align-items: center;
	gap: 12px;
}

.sg-rating-bars__label {
	font-size: 13px;
	color: var(--gv-text-secondary);
	font-weight: 500;
}

.sg-rating-bars__track {
	height: 7px;
	background: var(--gv-bg-3);
	border-radius: var(--gv-radius-full);
	overflow: hidden;
}

.sg-rating-bars__fill {
	display: block;
	height: 100%;
	background: var(--gv-warning);
	border-radius: var(--gv-radius-full);
}

.sg-rating-bars__pct {
	font-size: 13px;
	color: var(--gv-text-muted);
	font-weight: 500;
	text-align: right;
}

.sg-review-list {
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.sg-review {
	display: flex;
	gap: 16px;
	padding-bottom: 28px;
	border-bottom: 1px solid var(--gv-border);
}

.sg-review:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.sg-review__avatar {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

.sg-review__body {
	flex: 1;
	min-width: 0;
}

.sg-review__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 6px;
}

.sg-review__author {
	display: block;
	font-size: 14.5px;
	font-weight: 700;
	color: var(--gv-text-primary);
}

.sg-review__country {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 12.5px;
	color: var(--gv-text-muted);
	margin-top: 2px;
}

.sg-review__country i {
	font-size: 10px;
}

.sg-review__date {
	font-size: 12.5px;
	color: var(--gv-text-muted);
	flex-shrink: 0;
	white-space: nowrap;
}

.sg-review__text {
	font-size: 14.5px;
	color: var(--gv-text-secondary);
	line-height: 1.7;
	margin: 8px 0 10px;
}

.sg-review__order-tag {
	display: inline-block;
	font-size: 12px;
	font-weight: 500;
	color: var(--gv-text-muted);
	background: var(--gv-surface-2);
	border: 1px solid var(--gv-border);
	padding: 4px 10px;
	border-radius: var(--gv-radius-sm);
}

.sg-review-list__more {
	margin-top: 28px;
	max-width: 240px;
}

.sg-faq {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.sg-faq__item {
	background: var(--gv-surface);
	border: 1px solid var(--gv-border);
	border-radius: var(--gv-radius-md);
	padding: 4px 20px;
}

.sg-faq__item[open] {
	border-color: var(--gv-border-2);
}

.sg-faq__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 16px 0;
	font-size: 15px;
	font-weight: 600;
	color: var(--gv-text-primary);
	cursor: pointer;
	list-style: none;
}

.sg-faq__question::-webkit-details-marker {
	display: none;
}

.sg-faq__icon {
	font-size: 12px;
	color: var(--gv-text-muted);
	flex-shrink: 0;
	transition: transform var(--gv-transition);
}

.sg-faq__item[open] .sg-faq__icon {
	transform: rotate(180deg);
	color: var(--gv-primary);
}

.sg-faq__answer {
	padding-bottom: 18px;
}

.sg-faq__answer p {
	font-size: 14.5px;
	color: var(--gv-text-secondary);
	line-height: 1.7;
	margin: 0;
}

.sg-related__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.sg-card {
	display: flex;
	flex-direction: column;
	background: var(--gv-surface);
	border: 1px solid var(--gv-border);
	border-radius: var(--gv-radius-lg);
	overflow: hidden;
	transition: box-shadow var(--gv-transition-slow), transform var(--gv-transition-slow), border-color var(--gv-transition-slow);
}

.sg-card:hover {
	box-shadow: var(--gv-shadow-lg);
	transform: translateY(-3px);
	border-color: var(--gv-border-2);
}

.sg-card__media {
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: var(--gv-bg-3);
}

.sg-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--gv-transition-slow);
}

.sg-card:hover .sg-card__media img {
	transform: scale(1.05);
}

.sg-card__body {
	padding: 16px;
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.sg-card__seller {
	display: flex;
	align-items: center;
	gap: 8px;
}

.sg-card__seller img {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	object-fit: cover;
}

.sg-card__seller span {
	font-size: 13px;
	font-weight: 600;
	color: var(--gv-text-secondary);
}

.sg-card__title {
	font-size: 14px;
	font-weight: 500;
	color: var(--gv-text-primary);
	line-height: 1.45;
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.sg-card__rating {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 12.5px;
	margin-top: auto;
}

.sg-card__rating i {
	color: var(--gv-warning);
	font-size: 11px;
}

.sg-card__rating strong {
	color: var(--gv-text-primary);
	font-weight: 700;
}

.sg-card__rating span {
	color: var(--gv-text-muted);
}

.sg-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 16px;
	border-top: 1px solid var(--gv-border);
}

.sg-card__price-label {
	font-size: 11.5px;
	color: var(--gv-text-muted);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.sg-card__price {
	font-family: var(--gv-font-display);
	font-size: 17px;
	font-weight: 700;
	color: var(--gv-text-primary);
}

.sg-lightbox {
	position: fixed;
	inset: 0;
	background: rgba(15, 15, 26, 0.92);
	z-index: 999;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 40px;
}

.sg-lightbox.is-open {
	display: flex;
}

.sg-lightbox__image {
	max-width: 100%;
	max-height: 90vh;
	border-radius: var(--gv-radius-md);
	box-shadow: var(--gv-shadow-xl);
}

.sg-lightbox__close {
	position: absolute;
	top: 24px;
	right: 24px;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: none;
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	font-size: 18px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background var(--gv-transition);
}

.sg-lightbox__close:hover {
	background: rgba(255, 255, 255, 0.22);
}

.sg-hire-card {
	background: var(--gv-surface);
	border: 1px solid var(--gv-border);
	border-radius: var(--gv-radius-lg);
	padding: 26px;
	box-shadow: var(--gv-shadow-md);
	position: relative;
	overflow: hidden;
}

.sg-hire-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--gv-primary), var(--gv-accent));
}

.sg-hire-card__price-row {
	display: flex;
	align-items: baseline;
	gap: 10px;
	margin-bottom: 6px;
}

.sg-hire-card__price {
	font-family: var(--gv-font-display);
	font-size: 36px;
	font-weight: 800;
	color: var(--gv-text-primary);
	letter-spacing: -0.01em;
}

.sg-hire-card__price-suffix {
	font-size: 13px;
	color: var(--gv-text-muted);
	font-weight: 500;
}

.sg-hire-card__desc {
	font-size: 14px;
	color: var(--gv-text-secondary);
	line-height: 1.6;
	margin: 0 0 22px;
}

.sg-hire-card__meta-list {
	list-style: none;
	margin: 0 0 22px;
	padding: 18px 0;
	border-top: 1px solid var(--gv-border);
	border-bottom: 1px solid var(--gv-border);
	display: flex;
	flex-direction: column;
	gap: 13px;
}

.sg-hire-card__meta-list li {
	display: flex;
	align-items: center;
	gap: 11px;
	font-size: 14px;
	color: var(--gv-text-secondary);
	font-weight: 500;
}

.sg-hire-card__meta-list i {
	width: 30px;
	height: 30px;
	border-radius: var(--gv-radius-md);
	background: var(--gv-primary-subtle);
	color: var(--gv-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	flex-shrink: 0;
}

.sg-hire-card__cta {
	width: 100%;
	padding: 15px 22px;
	font-size: 15.5px;
	margin-bottom: 14px;
}

.sg-hire-card__contact-link {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-size: 13.5px;
	font-weight: 600;
	color: var(--gv-text-secondary);
	padding: 8px 0;
	transition: color var(--gv-transition);
}

.sg-hire-card__contact-link:hover {
	color: var(--gv-primary);
}

.sg-hire-card__trust {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	margin-top: 18px;
	flex-wrap: wrap;
}

.sg-hire-card__trust-item {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	color: var(--gv-text-muted);
	font-weight: 600;
}

.sg-hire-card__trust-item i {
	color: var(--gv-success);
	font-size: 11px;
}

.sg-side-card {
	background: var(--gv-surface);
	border: 1px solid var(--gv-border);
	border-radius: var(--gv-radius-lg);
	padding: 22px;
}

.sg-side-card--seller {
	box-shadow: var(--gv-shadow-sm);
}

.sg-side-card__seller-row {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 18px;
}

.sg-side-card__avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

.sg-side-card__seller-name {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 14.5px;
	font-weight: 700;
	color: var(--gv-text-primary);
}

.sg-side-card__verified {
	font-size: 12px;
	color: var(--gv-primary);
}

.sg-side-card__online {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 12.5px;
	color: var(--gv-success);
	font-weight: 600;
	margin-top: 3px;
}

.sg-side-card__dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--gv-success);
	display: inline-block;
}

.sg-side-card__stats {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin: 0;
	padding-top: 16px;
	border-top: 1px solid var(--gv-border);
}

.sg-side-card__stats div {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.sg-side-card__stats dt {
	font-size: 13px;
	color: var(--gv-text-muted);
	font-weight: 500;
}

.sg-side-card__stats dd {
	font-size: 13px;
	color: var(--gv-text-primary);
	font-weight: 700;
	margin: 0;
}

.sg-side-card--guarantee {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	background: var(--gv-primary-subtle);
	border-color: transparent;
}

.sg-side-card__guarantee-icon {
	font-size: 20px;
	color: var(--gv-primary);
	flex-shrink: 0;
	margin-top: 2px;
}

.sg-side-card__guarantee-title {
	display: block;
	font-size: 14px;
	font-weight: 700;
	color: var(--gv-text-primary);
	margin-bottom: 4px;
}

.sg-side-card__guarantee-text {
	font-size: 13px;
	color: var(--gv-text-secondary);
	line-height: 1.55;
}

.sg-mobile-cta {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--gv-surface);
	border-top: 1px solid var(--gv-border);
	box-shadow: 0 -8px 24px rgba(14, 14, 40, 0.10);
	padding: 14px 20px;
	display: none;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	z-index: var(--gv-z-mobile-nav);
}

.sg-mobile-cta__price {
	display: flex;
	flex-direction: column;
	line-height: 1.25;
}

.sg-mobile-cta__price-value {
	font-family: var(--gv-font-display);
	font-size: 19px;
	font-weight: 800;
	color: var(--gv-text-primary);
}

.sg-mobile-cta__price-label {
	font-size: 11.5px;
	color: var(--gv-text-muted);
	font-weight: 500;
}

.sg-mobile-cta__btn {
	flex: 1;
	max-width: 220px;
	padding: 13px 18px;
}

@media (max-width: 1080px) {
	.sg-gig__layout {
		grid-template-columns: minmax(0, 1fr) 320px;
		gap: 28px;
	}

	.sg-related__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 920px) {
	.sg-gig__layout {
		grid-template-columns: 1fr;
	}

	.sg-gig__sidebar {
		position: static;
		flex-direction: row;
		flex-wrap: wrap;
	}

	.sg-hire-card {
		display: none;
	}

	.sg-side-card--seller {
		flex: 1 1 280px;
	}

	.sg-mobile-cta {
		display: flex;
	}

	.sg-gig {
		padding-bottom: 84px;
	}
}

@media (max-width: 760px) {
	.sg-container {
		padding: 38px 18px;
	}

	.sg-gig__title {
		font-size: 24px;
	}

	.sg-gig__meta {
		gap: 10px;
	}

	.sg-gig__meta-divider {
		display: none;
	}

	.sg-gallery__stage {
		aspect-ratio: 4 / 3;
		border-radius: var(--gv-radius-md);
	}

	.sg-gallery__thumbs {
		grid-template-columns: repeat(5, 1fr);
		gap: 8px;
	}

	.sg-tabs {
		gap: 20px;
	}

	.sg-section {
		margin-bottom: 36px;
		padding-bottom: 36px;
	}

	.sg-feature-list {
		grid-template-columns: 1fr;
	}

	.sg-info-grid {
		grid-template-columns: repeat(2, 1fr);
		padding: 18px;
	}

	.sg-portfolio-showcase {
		padding: 20px;
	}

	.sg-portfolio-showcase__grid {
		grid-template-columns: 1fr;
	}

	.sg-seller-card {
		padding: 20px;
	}

	.sg-seller-card__top {
		flex-wrap: wrap;
	}

	.sg-seller-card__contact {
		width: 100%;
		margin-top: 4px;
	}

	.sg-seller-card__stats {
		grid-template-columns: repeat(2, 1fr);
		gap: 18px 16px;
	}

	.sg-related__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 14px;
	}

	.sg-section__head-row {
		flex-direction: column;
	}

	.sg-rating-bars {
		max-width: 100%;
	}

	.sg-gig__sidebar {
		flex-direction: column;
	}
}

@media (max-width: 520px) {
	.sg-gig__title {
		font-size: 21px;
	}

	.sg-gallery__thumbs {
		grid-template-columns: repeat(4, 1fr);
	}

	.sg-gallery__thumb:nth-child(5) {
		display: none;
	}

	.sg-portfolio-showcase__head {
		flex-direction: column;
		gap: 10px;
	}

	.sg-portfolio-showcase__count {
		align-self: flex-start;
	}

	.sg-related__grid {
		grid-template-columns: 1fr;
	}

	.sg-review__head {
		flex-direction: column;
		gap: 4px;
	}

	.sg-mobile-cta {
		padding: 12px 16px;
	}

	.sg-mobile-cta__btn {
		max-width: none;
	}

	.sg-faq__question {
		font-size: 14px;
		gap: 10px;
	}
}

@media (max-width: 380px) {
	.sg-gallery__thumbs {
		grid-template-columns: repeat(3, 1fr);
	}

	.sg-gallery__thumb:nth-child(4) {
		display: none;
	}
}

.sg-gig a:focus-visible,
.sg-gig button:focus-visible,
.sg-lightbox button:focus-visible,
.sg-mobile-cta a:focus-visible {
	outline: 2px solid var(--gv-primary);
	outline-offset: 2px;
	border-radius: var(--gv-radius-sm);
}

.sg-faq__question:focus-visible {
	outline: 2px solid var(--gv-primary);
	outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
	.sg-gig *,
	.sg-lightbox *,
	.sg-mobile-cta * {
		transition-duration: 0.001ms !important;
	}
}
