/* Gym Vault Dark Theme Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #0b0f17;
    color: #e2e8f0;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Navbar */
.navbar {
    background-color: #111827;
    border-bottom: 1px solid #1f2937;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 1px;
}

.logo span {
    color: #f59e0b; /* Golden Amber accent */
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    color: #9ca3af;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
    padding: 0.5rem 0.8rem;
    border-radius: 6px;
}

.nav-links a:hover,
.nav-links a.active {
    color: #ffffff;
    background-color: #1f2937;
}

.nav-links a.active {
    color: #f59e0b;
}

/* Hero Section */
.hero {
    padding: 6rem 0;
    text-align: center;
    background: radial-gradient(circle at center, #1e293b 0%, #0b0f17 100%);
    flex: 1;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 750px;
}

.badge {
    background-color: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.3);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.2rem;
    letter-spacing: -1px;
}

.hero-description {
    font-size: 1.15rem;
    color: #94a3b8;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: #f59e0b;
    color: #000000;
}

.btn-primary:hover {
    background-color: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(245, 158, 11, 0.4);
}

/* Sections */
.section {
    padding: 4rem 0;
    flex: 1;
}

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.page-header h2 {
    font-size: 2rem;
    color: #ffffff;
}

.filter-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.filter-wrapper label {
    color: #94a3b8;
    font-size: 0.95rem;
}

select {
    background-color: #1f2937;
    color: #ffffff;
    border: 1px solid #374151;
    padding: 0.6rem 1rem;
    border-radius: 6px;
    font-size: 0.95rem;
    outline: none;
    cursor: pointer;
}

select:focus {
    border-color: #f59e0b;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background-color: #111827;
    border: 1px solid #1f2937;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: #374151;
}

.product-image-placeholder {
    width: 100%;
    height: 180px;
    background-color: #1f2937;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-size: 0.9rem;
    font-weight: 500;
}

.product-info {
    padding: 1.25rem;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.product-desc {
    font-size: 0.85rem;
    color: #9ca3af;
    margin-bottom: 1rem;
}

.product-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: #f59e0b;
}

/* Empty Page Box */
.empty-page-box {
    background-color: #111827;
    border: 2px dashed #1f2937;
    border-radius: 12px;
    padding: 5rem 2rem;
    text-align: center;
    margin: 2rem 0;
}

.empty-page-box h2 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.empty-page-box p {
    color: #6b7280;
    font-size: 1rem;
}

/* Footer */
footer {
    background-color: #0b0f17;
    border-top: 1px solid #1f2937;
    padding: 2rem 0;
    color: #6b7280;
    font-size: 0.9rem;
    margin-top: auto;
}

.text-center {
    text-align: center;
}
