.shop-landing {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Hero Section */
.hero-section {
	text-align: center;
	padding: 60px 20px;
	background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1) 0%, rgba(var(--primary-rgb), 0.05) 100%);
	border-radius: 12px;
	margin-bottom: 60px;
}

.hero-section h1 {
	font-size: 48px;
	margin: 0 0 20px 0;
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 60%, #FF9900 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-section .tagline {
	font-size: 20px;
	color: var(--text-secondary, #ddd);
	margin-bottom: 30px;
}

.hero-cta {
	display: inline-flex;
	gap: 15px;
}

.btn {
	padding: 15px 40px;
	border-radius: 4px;
	text-decoration: none;
	font-weight: bold;
	font-size: 16px;
	transition: all 0.2s;
	white-space: nowrap;
}

.btn-primary {
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
	color: var(--btn-primary-text);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.4);
}

.btn-secondary {
	background: rgba(255,255,255,0.1);
	color: #fff;
	border: 1px solid #666;
}

.btn-secondary:hover {
	background: rgba(255,255,255,0.15);
}

/* Section Headers */
.section {
	margin-bottom: 80px;
}

.section-header {
	text-align: center;
	margin-bottom: 40px;
}

.section-header h2 {
	font-size: 36px;
	color: var(--text-primary, #fff);
	margin: 0 0 10px 0;
}

.section-header p {
	color: var(--text-secondary, #ddd);
	font-size: 16px;
}

/* Product Families Grid */
.families-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 30px;
	margin-bottom: 60px;
}

.family-card {
	background: rgba(255,255,255,0.03);
	border: 2px solid #424242;
	border-radius: 8px;
	padding: 30px;
	text-align: center;
	transition: all 0.3s;
	cursor: pointer;
}

.family-card:hover {
	transform: translateY(-5px);
	border-color: var(--primary-color);
	box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.2);
}

.family-card img {
	width: 100%;
	max-width: 200px;
	height: 200px;
	object-fit: cover;
	border-radius: 4px;
	margin-bottom: 20px;
}

.family-card h3 {
	color: var(--primary-color);
	margin: 0 0 10px 0;
	font-size: 24px;
}

.family-card p {
	color: var(--text-secondary, #ddd);
	font-size: 14px;
	line-height: 1.6;
}

.family-card .product-count {
	margin-top: 15px;
	padding: 8px 16px;
	background: rgba(var(--primary-rgb), 0.1);
	border-radius: 4px;
	display: inline-block;
	font-size: 14px;
	color: var(--primary-color);
}

/* Products Table */
.products-table {
	width: 100%;
	border-collapse: collapse;
	background: rgba(255,255,255,0.02);
	border-radius: 8px;
	overflow: hidden;
}

.products-table thead {
	background: #424242;
}

.products-table th {
	padding: 15px;
	text-align: left;
	font-weight: bold;
	color: #fff;
}

.products-table tbody tr {
	border-bottom: 1px solid rgba(255,255,255,0.1);
	transition: background 0.2s;
}

.products-table tbody tr:hover {
	background: rgba(var(--primary-rgb), 0.05);
}

.products-table td {
	padding: 20px 15px;
}

.product-name {
	font-weight: bold;
	color: var(--primary-color);
}

.product-family-badge {
	display: inline-block;
	padding: 4px 12px;
	background: rgba(255,255,255,0.1);
	border-radius: 4px;
	font-size: 12px;
	color: #aaa;
}

.product-specs {
	color: var(--text-secondary, #ddd);
	font-size: 13px;
	line-height: 1.6;
}

.product-price {
	font-size: 24px;
	font-weight: bold;
	color: var(--primary-color);
	white-space: nowrap;
}

.btn-view {
	padding: 8px 20px;
	background: rgba(var(--primary-rgb), 0.15);
	color: var(--primary-color);
	border: 1px solid var(--primary-color);
	border-radius: 4px;
	text-decoration: none;
	font-size: 14px;
	transition: all 0.2s;
	white-space: nowrap;
}

.btn-view:hover {
	background: rgba(var(--primary-rgb), 0.3);
}

/* Order Tracking CTA */
.tracking-cta {
	background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1) 0%, rgba(var(--primary-rgb), 0.1) 100%);
	border: 2px solid var(--primary-color);
	border-radius: 8px;
	padding: 40px;
	text-align: center;
	margin: 60px 0;
}

.tracking-cta h3 {
	color: var(--primary-color);
	margin: 0 0 15px 0;
	font-size: 28px;
}

.tracking-cta p {
	color: var(--text-secondary, #ddd);
	margin-bottom: 20px;
}


/* Shop Footer */
.shop-footer {
	background: rgba(0, 0, 0, 0.3);
	border-top: 2px solid #424242;
	margin-top: 80px;
	padding: 60px 0 30px 0;
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 40px;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
}

.footer-col h4 {
	color: var(--primary-color);
	margin: 0 0 20px 0;
	font-size: 18px;
}

.footer-col ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-col ul li {
	margin-bottom: 12px;
}

.footer-col ul li a {
	color: #aaa;
	text-decoration: none;
	transition: color 0.2s;
}

.footer-col ul li a:hover {
	color: var(--primary-color);
}

.newsletter-form {
	display: flex;
	gap: 10px;
	margin-top: 15px;
}

.newsletter-form input {
	flex: 1;
	padding: 12px;
	background: rgba(255,255,255,0.1);
	border: 1px solid #666;
	border-radius: 4px;
	color: #fff;
}

.newsletter-form button {
	padding: 12px 24px;
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
	color: var(--btn-primary-text);
	border: none;
	border-radius: 4px;
	font-weight: bold;
	cursor: pointer;
}

.footer-logo {
	width: 120px;
	margin-bottom: 15px;
}

.footer-bottom {
	text-align: center;
	padding: 20px;
	margin-top: 40px;
	border-top: 1px solid rgba(255,255,255,0.1);
	color: #888;
	font-size: 14px;
}

@media (max-width: 1024px) {
	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 768px) {
	.hero-section h1 {
		font-size: 32px;
	}

	.families-grid {
		grid-template-columns: 1fr;
	}

	.products-table {
		font-size: 14px;
	}

	.products-table th,
	.products-table td {
		padding: 10px 8px;
	}

	.footer-grid {
		grid-template-columns: 1fr;
	}
}
