/* StoreMate — Custom Styles */
:root {
    --navy: #15202e;
    --teal: #0e8fa0;
    --teal-light: #e8f7f9;
    --bg: #f4f7fa;
    --text: #15202e;
    --muted: #6b7a8d;
}

html, body {
    font-family: 'Barlow', 'Helvetica', 'Arial', sans-serif;
    background: var(--bg);
    color: var(--text);
    margin: 0;
    padding: 0;
}

/* Landing page hero */
.hero {
    background: linear-gradient(135deg, #15202e 60%, #0e8fa0 100%);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.hero h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    margin: 0 0 16px;
    letter-spacing: -0.5px;
}

.hero p {
    font-size: 1.2rem;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto 32px;
}

.hero-cta {
    display: inline-block;
    background: #0e8fa0;
    color: #fff;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}

.hero-cta:hover {
    background: #0a6e7c;
    color: #fff;
}

/* Steps section */
.steps-section {
    padding: 60px 20px;
    background: #fff;
}

.steps-section h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    color: var(--navy);
    margin-bottom: 40px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.step-card {
    text-align: center;
    padding: 24px;
    border-radius: 12px;
    background: var(--bg);
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--teal);
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

/* Pricing */
.pricing-section {
    padding: 60px 20px;
    background: var(--bg);
}

.pricing-section h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    color: var(--navy);
    margin-bottom: 40px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.price-card {
    background: #fff;
    border-radius: 12px;
    padding: 28px 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(21,32,46,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}

.price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(21,32,46,0.12);
}

.price-card .size-label {
    font-weight: 600;
    color: var(--navy);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.price-card .price {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--teal);
}

.price-card .per-month {
    color: var(--muted);
    font-size: 0.9rem;
}

/* Navbar */
.storemate-nav {
    background: var(--navy);
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.storemate-nav .brand {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--teal);
    text-decoration: none;
}

.storemate-nav .nav-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    margin-left: 20px;
    font-weight: 500;
    transition: color 0.2s;
}

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

/* Page wrapper */
.page-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px 20px;
}

/* Footer */
.footer {
    background: var(--navy);
    color: rgba(255,255,255,0.6);
    text-align: center;
    padding: 32px 20px;
    font-size: 0.9rem;
    margin-top: 60px;
}

.footer a {
    color: var(--teal);
    text-decoration: none;
}

/* Slot grid for warehouse */
.slot-grid {
    display: grid;
    gap: 6px;
}

.slot-cell {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.1s;
    border: 2px solid transparent;
}

.slot-cell:hover {
    transform: scale(1.1);
    border-color: var(--navy);
}

.slot-free { background: #22c55e; color: #fff; }
.slot-occupied { background: #ef4444; color: #fff; }
.slot-reserved { background: #f59e0b; color: #fff; }

/* Status badge */
.status-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-pending { background: #fef3c7; color: #92400e; }
.status-confirmed { background: #dbeafe; color: #1e40af; }
.status-instorage { background: #d1fae5; color: #065f46; }
.status-returned { background: #f3f4f6; color: #374151; }
.status-cancelled { background: #fee2e2; color: #991b1b; }

/* Auth forms */
.auth-card {
    max-width: 440px;
    margin: 60px auto;
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 24px rgba(21,32,46,0.10);
}

.auth-card h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 8px;
}

/* QR code display */
.qr-container {
    text-align: center;
    padding: 20px;
}

.qr-container img {
    max-width: 200px;
    border: 4px solid var(--teal);
    border-radius: 12px;
}

/* Print styles */
@media print {
    .storemate-nav, .footer, .mud-appbar { display: none !important; }
    .print-label { border: 2px solid #000; padding: 20px; }
}
