/* =============================
   Goldstar Main Store Styles
   ============================= */

.goldstar-main-container {
	display: block;
	padding: 0;
	margin: 0;
	width: 100%;
}

/* =============================
   Hero Section
   ============================= */

.goldstar-main-container .hero {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 60px 0;
	background-color: var(--solera-jacarta);
	margin-bottom: 0;
	width: 100vw;
	position: relative;
	left: 50%;
	margin-left: -50vw;
}

.goldstar-main-container .hero-inner {
	display: flex;
	gap: 10px;
	align-items: center;
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
}

.goldstar-main-container .hero-inner > div:first-child {
	flex: 1 1 45%;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.goldstar-main-container .hero-visual {
	flex: 1 1 55%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.goldstar-main-container .hero-visual img {
	width: 100%;
	height: auto;
	display: block;
	max-width: 100%;
}

.goldstar-main-container .hero-badge {
	display: inline-block;
	background-color: var(--solera-sun);
	color: var(--solera-jacarta);
	font-size: 0.78rem !important;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	width: fit-content;
	padding: 0.4rem 1rem;
	border-radius: 5px;
	margin-bottom: 8px;
	line-height: 1.5rem !important;
}

.goldstar-main-container .hero-inner h1 {
	font-size: 3.125rem !important;
	font-weight: 500;
	color: var(--solera-white);
	margin: 0 0 0 0;
	letter-spacing: -0.02em;
}

.goldstar-main-container .hero-sub {
	font-size: 1.188rem !important;
	color: var(--solera-sun);
	margin: 0 0 24px 0;
	line-height: 2.2rem !important;
}

.goldstar-main-container .hero-body {
	font-size: 1rem !important;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.8);
	margin: 0 0 16px 0;
}

.goldstar-main-container .hero-cta-btn {
	display: inline-block;
	background-color: var(--solera-sun);
	color: var(--solera-jacarta) !important;
	font-size: 1rem;
	font-weight: 700;
	padding: 0.8rem 1.5rem;
	border-radius: 6px;
	text-decoration: none !important;
	letter-spacing: 0.5px;
	transition: all 0.2s ease;
	border: none;
	cursor: pointer;
	width: fit-content;
}

.goldstar-main-container .hero-cta-btn:hover {
	opacity: 0.9;
}


.goldstar-choose-plan-section{
	width: 100vw;
	position: relative;
	left: 50%;
	margin-left: -50vw;
	padding: 40px 0 0 0;
	background-color: var(--solera-white);
}
/* =============================
   Choose Plan Section
   ============================= */

.goldstar-choose-plan {
	text-align: center;
	padding: 0 2rem;
}

.goldstar-choose-plan-title {
	font-size: 1.8rem !important;
	font-weight: 700;
	color: #102c52;
	margin: 0 0 12px 0 !important;
	line-height: 1.2 !important;
}

.goldstar-choose-plan-description {
	font-size: 1rem !important;
	color: var(--solera-mako-base);
	margin: 0 !important;
	line-height: 1.6;
}

/* =============================
   Products Section
   ============================= */

.goldstar-products-section {
	width: 100vw;
	position: relative;
	left: 50%;
	margin-left: -50vw;
	padding: 10px 40px 40px 40px;
	background-color: var(--solera-white);
}

.goldstar-products-container {
	max-width: 1200px;
	margin: 0 auto;
}

.goldstar-main-container .goldstar-product-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	row-gap: 30px;
	column-gap: 20px;
	padding: 2rem 0;
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
	animation: fadeIn 0.4s ease-in-out;
}

/* =============================
   Product Card
   ============================= */

.goldstar-main-container .p-card {
	display: flex;
	flex-direction: column;
	background: var(--solera-white);
	border: 1px solid var(--solera-gray-light);
	border-radius: 12px;
	overflow: hidden;
	transition: box-shadow 0.3s ease, transform 0.3s ease;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	min-height: 600px;
	position: relative;
}

.p-card:hover {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
	transform: translateY(-2px);
}

/* Featured Card */
.goldstar-main-container .p-card.featured {
	background: var(--solera-jacarta);
	color: var(--solera-white);
	border: none;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.goldstar-main-container .p-card.featured:hover {
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
	transform: translateY(-2px);
}

/* Card Badge */
.goldstar-main-container .card-badge {
	background-color: var(--solera-sun);
	color: var(--solera-jacarta);
	font-weight: 700;
	font-size: 0.8rem;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	text-align: center;
	padding: 0.6rem 1.5rem;
	margin: 0;
	white-space: nowrap;
	width: 100%;
	box-sizing: border-box;
}

/* Card Image */
.goldstar-main-container .card-img {
	width: 100%;
	height: 210px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #ffffff;
	overflow: hidden;
	flex-shrink: 0;
	padding: 16px 0px 16px 0px;
}

.goldstar-main-container .p-card.featured .card-img {
	background-color: #ffffff;
	height: 178px;
	padding: 16px 0px 16px 0px;
}

.goldstar-main-container .card-img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.goldstar-main-container .card-img-placeholder {
	color: #999;
	font-size: 0.875rem;
	text-align: center;
	padding: 1rem;
}

/* Card Body */
.goldstar-main-container .card-body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 1.5rem;
	gap: 0.75rem;
	text-align: left;
}

.goldstar-main-container .p-card.featured .card-body {
	padding: 1.25rem 1.5rem;
	color: #ffffff;
}

/* Brand Label */
.goldstar-main-container .card-brand {
	font-size: 0.75rem;
	color: #999;
	margin: 0;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

.goldstar-main-container .p-card.featured .card-brand {
	color: rgba(255, 255, 255, 0.65);
}

/* Product Name */
.goldstar-main-container .card-name {
	font-size: 1.3rem !important;
	font-weight: 800;
	color: #102c52;
	margin: 0 !important;
	line-height: 1.3;
	text-align: left;
}

.goldstar-main-container .p-card.featured .card-name {
	color: var(--solera-white);
}

/* Product Type Label */
.goldstar-main-container .card-type-label {
	font-size: 0.875rem;
	color: var(--solera-blue);
	margin: 0;
	text-align: left;
}

.goldstar-main-container .p-card.featured .card-type-label {
	color: rgba(255, 255, 255, 0.8);
}

.goldstar-main-container .card-title-row{
	display: flex;
	flex-direction: column;
	gap: 4px;
}

/* Price Row */
.goldstar-main-container .card-price-row {
	margin: 0.5rem 0 0 0;
	text-align: left;
}

.goldstar-main-container .card-price {
	font-weight: 900;
	font-size: 1.8rem;
	color: var(--solera-sun);
	line-height: 1;
	display: inline-block;
}

.goldstar-main-container .card-price.gold {
	color: var(--solera-sun);
}

.goldstar-main-container .p-card.featured .card-price {
	color: var(--solera-white);
}

/* Billing Term */
.goldstar-main-container .card-term {
	font-size: 0.875rem;
	color: #999;
	margin: 0.25rem 0 0 0;
	text-align: left;
}

.goldstar-main-container .p-card.featured .card-term {
	color: rgba(255, 255, 255, 0.8);
}

/* Card Divider */
.goldstar-main-container .card-divider {
	border: none;
	border-top: 1px solid rgba(0, 0, 0, 0.05);
	margin: 0 1rem 0 0;
	padding: 0;
	height: 0;
	background: transparent;
}

.goldstar-main-container .p-card.featured .card-divider {
	border-top-color: rgba(255, 255, 255, 0.08);
}

/* Features List */
.goldstar-main-container .card-features {
	list-style: none;
	padding: 0.75rem 0;
	margin: 0 0 0.75rem 0;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	text-align: left;
	flex: 1;
	min-height: 155px;
}

.goldstar-main-container .card-features li {
	display: flex;
	align-items: flex-start;
	gap: 0.6rem;
	font-size: 0.875rem;
	color: #333;
	line-height: 1.4;
}

.goldstar-main-container .p-card.featured .card-features li {
	color: rgba(255, 255, 255, 0.9);
}

.goldstar-main-container .check-icon {
	flex-shrink: 0;
	color: var(--solera-viridian);
	font-weight: bold;
	margin-top: 2px;
}

.goldstar-main-container .check-icon--with-description {
	color: var(--solera-sun);
}

/* Feature Description Tag */
.goldstar-main-container .feature-description-tag {
	display: inline-block;
	background: rgba(255, 177, 50, 0.1);
	color: #b8860b;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	padding: 2px 6px;
	border-radius: 3px;
	margin-left: 4px;
	vertical-align: middle;
}

/* CTA Area */
.goldstar-main-container .card-cta-area {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-top: auto;
	padding-top: 0.75rem;
	min-height: 90px;
}

.goldstar-main-container .card-cta {
	display: block;
	padding: 12px 16px;
	font-weight: 300;
	font-size: 0.9rem;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	transition: all 0.2s ease;
	font-family: inherit;
	background-color: var(--solera-sun);
	color: var(--solera-jacarta) !important;
}

.goldstar-main-container .card-cta:hover {
	opacity: 0.9;
	background-color: var(--solera-blue);
}

.goldstar-main-container .card-cta.outline {
	background-color: transparent;
	border: 1px solid var(--solera-blue);
	color: var(--solera-blue) !important;
}

.goldstar-main-container .card-cta.outline:hover {
	background-color: transparent;
	border-color: var(--solera-blue);
	opacity: 0.9;
}

.goldstar-main-container .p-card.featured .card-cta {
	background-color: var(--solera-sun);
	color: var(--solera-jacarta) !important;
}

.goldstar-main-container .card-details {
	display: block;
	text-align: center;
	color: var(--solera-blue) !important;
	text-decoration: underline !important;
	text-underline-offset: 2px;
	font-size: 0.813rem;
	transition: all 0.2s ease;
	cursor: pointer;
	letter-spacing: 0.3px;
}

.goldstar-main-container .card-details:hover {
	color: #1a5f9e !important;
	text-decoration: none;
}

.goldstar-main-container .p-card.featured .card-details {
	color: rgba(255, 255, 255, 0.9) !important;
}

.goldstar-main-container .p-card.featured .card-details:hover {
	color: var(--solera-white) !important;
	opacity: 0.8;
}

@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

/* =============================
   Responsive
   ============================= */

/* Tablet: 2 columns */
@media (max-width: 1199px) and (min-width: 768px) {
	.goldstar-main-container .hero {
		padding: 40px 2rem;
	}

	.goldstar-main-container .hero-inner {
		gap: 40px;
	}

	.goldstar-main-container .hero-inner h1 {
		font-size: 2.5rem !important;
		line-height: 2.2rem !important;
		margin-bottom: 12px;
	}

	.goldstar-main-container .hero-sub {
		font-size: 1.25rem !important;
		line-height: 1.6rem !important;
		margin-bottom: 12px;
	}

	.goldstar-main-container .hero-body {
		font-size: 0.95rem !important;
		line-height: 1.6;
	}

	.goldstar-main-container .goldstar-product-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.p-card {
		min-height: auto;
	}
}

/* Mobile */
@media (max-width: 768px) {
	.goldstar-main-container .hero {
		padding: 20px 1rem;
	}

	.goldstar-main-container .hero-inner {
		flex-direction: column;
		gap: 20px;
		padding: 0;
	}

	.goldstar-main-container .hero-inner > div:first-child,
	.goldstar-main-container .hero-visual {
		flex: 1 1 100%;
	}

	.goldstar-main-container .hero-badge {
		font-size: 0.7rem !important;
		line-height: 1rem !important;
		margin-bottom: 8px;
		padding: 0.3rem 0.8rem;
	}

	.goldstar-main-container .hero-inner h1 {
		font-size: 1.5rem !important;
		line-height: 1.25rem !important;
		margin-bottom: 4px;
	}

	.goldstar-main-container .hero-sub {
		font-size: 0.875rem !important;
		line-height: 1.25rem !important;
		margin-bottom: 8px;
	}

	.goldstar-main-container .hero-body {
		font-size: 0.75rem !important;
		line-height: 1.4;
	}

	.goldstar-main-container .goldstar-product-grid {
		grid-template-columns: 1fr;
		row-gap: 20px;
		column-gap: 0;
	}

	.goldstar-main-container .p-card {
		min-height: auto;
	}

	.goldstar-products-section {
		padding: 20px 1rem 40px 1rem;
	}

	.goldstar-choose-plan {
		margin: 20px 0 30px 0;
		padding: 0 1rem;
	}

	.goldstar-main-container .card-img {
		height: 150px;
	}

	.goldstar-main-container .p-card.featured .card-img {
		height: 140px;
	}

	.goldstar-main-container .card-body {
		padding: 1rem;
	}

	.goldstar-main-container .card-name {
		font-size: 1.1rem;
	}

	.goldstar-main-container .card-price {
		font-size: 1.5rem;
	}

	.goldstar-main-container .card-features {
		padding: 0.5rem 0;
		margin: 0.5rem 0;
	}

	.goldstar-main-container .card-features li {
		font-size: 0.8rem;
	}
}

/* =============================
   Videos Section
   ============================= */

.goldstar-main-container .videos-section {
	padding: 60px 0;
	background-color: var(--solera-smoke);
}

.goldstar-main-container .videos-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.goldstar-main-container .videos-header {
	text-align: center;
	margin-bottom: 30px;
}

.goldstar-main-container .videos-header h2 {
	font-size:1.875rem;
	font-weight: 500;
	color: var(--solera-shark);
	margin: 0;
	line-height: 1.2;
}

.goldstar-main-container .videos-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	margin-bottom: 20px;
}

.goldstar-main-container .video-card {
	display: flex;
	flex-direction: column;
	background: #ffffff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.goldstar-main-container .video-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.goldstar-main-container .video-thumb {
	width: 100%;
	aspect-ratio: 16 / 9;
	background-color: var(--solera-jacarta);
	display: block;
	border: none;
	border-radius: 8px 8px 0 0;
	object-fit: cover;
}

.goldstar-main-container .video-label {
	padding: 1.5rem;
	text-align: center;
	font-size: 1rem;
	font-weight: 300;
	color: #333333;
}

/* Tablet: 2 columns */
@media (max-width: 1199px) and (min-width: 768px) {
	.videos-header h2 {
		font-size: 1.75rem;
	}

	.videos-grid {
		gap: 20px;
	}
}

/* Mobile */
@media (max-width: 768px) {
	.videos-section {
		padding: 40px 0;
	}

	.videos-inner {
		padding: 0 1rem;
	}

	.videos-header {
		margin-bottom: 30px;
	}

	.videos-header h2 {
		font-size: 1.5rem;
	}

	.videos-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.video-play {
		font-size: 2.5rem;
	}

	.video-label {
		font-size: 0.9rem;
	}
}
