/* Urban Styles - Minimalist Design System */

:root {
    --primary-color: #000000;
    --secondary-color: #ffffff;
    --accent-color: #ff0000; /* Subtle usage for alerts/CTA */
    --text-color: #000000;
    --text-muted: #555555;
    --bg-color: #ffffff;
    --bg-alt: #f8f8f8;
    --border-color: #e5e5e5;
    --font-main: 'Manrope', sans-serif;
    --transition-base: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Premium Design Tokens */
:root {
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-blur: 12px;
    --shadow-premium: 0 20px 40px -15px rgba(0, 0, 0, 0.08);
    --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.05);
}

/* Glassmorphism Utility */
.glass-premium {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-premium);
}

/* Refined Typography */
.text-premium {
    letter-spacing: 0.15em;
    line-height: 1.8;
}

.heading-luxury {
    font-weight: 800;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    font-style: italic;
}

/* Typography */
h1, h2, h3, h4, .uppercase-label {
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

/* Unified Animations */
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.33%); } /* Adjust for 3 repeating spans for perfect continuity */
}

.animate-marquee {
    display: flex;
    width: max-content;
    animation: marquee 30s linear infinite;
}

.hover-scale {
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-scale:hover {
    transform: scale(1.03);
}

/* Layout Utilities */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Product Cards */
.product-card {
    display: block;
    text-align: center;
}

.product-image-container {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--bg-alt);
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.product-card .img-secondary {
    position: absolute;
    inset: 0;
    opacity: 0;
}

.product-card:hover .img-secondary {
    opacity: 1;
}

.product-card:hover .img-primary {
    opacity: 0;
}

.product-card:hover img {
    transform: scale(1.02);
}

.product-info {
    margin-top: 1rem;
}

.product-title {
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.product-price {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text-color);
    letter-spacing: -0.02em;
}

.product-tags {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 20;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* Premium Form Inputs */
.form-input-premium {
    width: 100%;
    border-bottom: 2px solid var(--border-color);
    padding: 1rem 0;
    font-size: 0.8rem;
    outline: none;
    background: transparent;
    font-weight: 600;
    letter-spacing: 0.1em;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.form-input-premium:focus {
    border-color: var(--primary-color);
    padding-left: 0.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 1.5rem;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: bold;
    letter-spacing: 0.15em;
    cursor: pointer;
    border: 1px solid var(--primary-color);
    transition: var(--transition-base);
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    box-shadow: 0 10px 20px -10px rgba(0,0,0,0.3);
}

.btn-primary:hover {
    background-color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -10px rgba(0,0,0,0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

/* Standardize Jump Prevention */
section, [id] {
    scroll-margin-top: 120px;
}

/* Reveal Animation - Subtler & Faster */
.reveal {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Bottom Navigation Overlay */
.bottom-nav { 
    position: fixed; 
    bottom: 0; 
    left: 0; 
    width: 100%; 
    background: #ffffff; 
    border-top: 1px solid #eeeeee; 
    z-index: 9999; 
    display: flex; 
    justify-content: space-around; 
    padding: 10px 0; 
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
}

.bottom-nav a { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    font-size: 10px; 
    text-transform: uppercase; 
    color: #999999; 
    font-weight: 600;
    text-decoration: none;
    flex: 1;
}

.bottom-nav a.active { 
    color: #000000; 
}

.bottom-nav .material-symbols-outlined { 
    font-size: 24px; 
    margin-bottom: 2px; 
}

@media (min-width: 768px) {
    /* Optional: Hide on VERY large screens or keep it persistent as per user request */
    /* .bottom-nav { display: none; } */
}

/* Membership Selection Cards */
.membership-card { 
    border: 2px solid #f3f4f6; 
    padding: 1rem; 
    border-radius: 1rem; 
    text-align: center; 
    cursor: pointer; 
    transition: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1); 
    background: white;
}

.membership-card.active { 
    border-color: var(--primary-color); 
    background: var(--primary-color); 
    color: var(--secondary-color); 
    box-shadow: 0 10px 20px -5px rgba(0,0,0,0.1);
}
