/* --- GLOBAL RESET & TYPOGRAPHY --- */
:root {
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --color-bg: #ffffff;
    --color-fg: #0a0a0a;
    --color-muted: #737373;
    --color-border: #f4f4f5;
    /* Very subtle border */
    --radius-md: 8px;
    --radius-lg: 12px;
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-bg);
    color: var(--color-fg);
    -webkit-font-smoothing: antialiased;
    /* Critical for premium font rendering */
    line-height: 1.6;
}

h1,
h2,
h3,
h4 {
    letter-spacing: -0.03em;
    /* Tighter spacing looks more modern */
    color: var(--color-fg);
    font-weight: 600;
}

/* --- NAVIGATION (Glassmorphism) --- */
.shop-nav {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    /* Frosted glass effect */
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1.25rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-brand {
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: -0.02em;
    color: var(--color-fg);
}

.nav-links a {
    margin-left: 2.5rem;
    text-decoration: none;
    color: var(--color-muted);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--color-fg);
}

/* --- HERO SECTION (Clean & Airy) --- */
.shop-hero {
    background: var(--color-bg);
    /* Removed gradient for cleaner look */
    padding: 8rem 0 6rem;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.75rem;
    /* Larger */
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--color-muted);
    margin-bottom: 3rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* --- BUTTONS (Minimalist) --- */
.btn {
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-lg {
    padding: 0.8rem 2rem;
    font-size: 0.95rem;
    border-radius: 99px;
    /* Pill shape is trendy */
    font-weight: 500;
}

/* Primary Action Button */
.btn-primary,
.btn-nav-primary {
    background-color: var(--color-fg);
    /* Black background */
    color: white !important;
    border: 1px solid var(--color-fg);
    text-decoration: none;
}

.btn-primary:hover,
.btn-nav-primary:hover {
    background-color: #333;
    /* Dark grey on hover */
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    background: transparent;
    border: 1px solid #e5e5e5;
    color: var(--color-fg);
}

.btn-outline:hover {
    border-color: var(--color-fg);
    background: transparent;
}

/* --- SECTIONS --- */
.section-pad {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.section-header {
    margin-bottom: 4rem;
    text-align: center;
}

.section-header h2 {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
}

.section-header p {
    color: var(--color-muted);
}

/* --- PRODUCT GRID --- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    /* Cleaner gap */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* --- PRODUCT CARD (The Premium Update) --- */
.product-card {
    background: white;
    /* Removed border, using subtle shadow interaction instead */
    border: 1px solid transparent;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
}

.product-card:hover {
    transform: translateY(-4px);
    /* Subtle spread shadow */
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.05);
}

/* Image Area */
.product-image-wrapper {
    width: 100%;
    aspect-ratio: 1/1;
    /* Square often looks more premium than 4:3 */
    background-color: #f9f9f9;
    /* Very light grey bg for transparent PNGs */
    overflow: hidden;
    position: relative;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.product-card:hover .product-img {
    transform: scale(1.03);
    /* Very slow, subtle zoom */
}

/* Card Content */
.product-info {
    padding: 1.25rem 0.5rem;
    /* Reduced side padding for cleaner look */
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: left;
    /* Left align is more readable/premium than center */
}

.product-title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
    color: var(--color-fg);
}

.product-desc {
    color: var(--color-muted);
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* Limit to 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Price & Action Row */
.product-meta {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-fg);
    /* Changed from Blue to Black for luxury feel */
    letter-spacing: -0.02em;
}

/* Minimalist Card Button */
.product-info .btn {
    width: auto;
    /* Don't span full width */
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    background: #f4f4f5;
    color: #000;
    border-radius: 6px;
    border: none;
}

.product-info .btn:hover {
    background: #e4e4e7;
}

/* --- FOOTER / CONTACT --- */
.contact-section {
    background: #fafafa;
    /* Light grey instead of harsh black */
    color: var(--color-fg);
    padding: 6rem 0;
    text-align: center;
    border-top: 1px solid var(--color-border);
}

.contact-section h2 {
    color: var(--color-fg);
    margin-bottom: 1rem;
}

.contact-section p {
    color: var(--color-muted);
}

/* --- MEMBERSHIP LAYOUT UPDATE --- */
.membership-section {
    background-color: #f5f5f7;
    padding: 6rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* New Container for multiple plans */
.plans-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
    margin-top: 1rem;
}

.plan-card {
    background: white;
    border-radius: 24px;
    padding: 3rem 2rem;
    /* Flex basis allows it to grow, max-width keeps it elegant */
    flex: 1 1 300px;
    max-width: 400px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.12);
}

/* ... The rest of the font styles (plan-name, plan-price) remain the same ... */
.membership-header {
    text-align: center;
    margin-bottom: 3.5rem;
    max-width: 600px;
}

.membership-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.03em;
}

.membership-header p {
    color: var(--color-muted);
    font-size: 1.1rem;
}




/* Plan Name (e.g., "gld") */
.plan-name {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: #b49b57;
    /* Muted Gold/Bronze instead of bright yellow */
    margin-bottom: 1rem;
}

/* Price Area */
.plan-price-wrapper {
    margin-bottom: 1rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.plan-price {
    font-size: 3.5rem;
    /* Big and bold */
    font-weight: 800;
    color: var(--color-fg);
    letter-spacing: -0.04em;
    line-height: 1;
}

.plan-period {
    font-size: 1.1rem;
    color: var(--color-muted);
    font-weight: 400;
}

/* Description */
.plan-desc {
    color: var(--color-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 80%;
    /* Keep text from hitting edges */
}

/* The Button - Full Width */
.btn-plan {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    background-color: var(--color-fg);
    /* Black looks most premium */
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-plan:hover {
    background-color: #333;
    transform: scale(1.02);
}

/* Optional: If you specifically want the button Gold */
.btn-plan.gold {
    background-color: #d4af37;
    color: white;
}

.btn-plan.gold:hover {
    background-color: #c5a028;
}
