/*
Theme Name: Pitch and Purchase
Theme URI: 
Author: 
Description: Live video marketplace
Version: 1.0
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-header {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    color: #000;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: #333;
}

.site-footer {
    background: #f8f9fa;
    padding: 40px 0;
    margin-top: 60px;
    text-align: center;
}
/* Header Styles */
.site-header {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    color: #000;
}

.main-nav .nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.main-nav a {
    text-decoration: none;
    color: #333;
}

.header-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.header-actions a {
    text-decoration: none;
}

.login-link {
    color: #333;
}

.register-link {
    background: #000;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* Footer Styles */
.site-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 0 30px;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #999;
    text-decoration: none;
}

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #666;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        border-bottom: 1px solid #eee;
    }
    
    .main-nav.active {
        display: block;
    }
    
    .main-nav .nav-menu {
        flex-direction: column;
        gap: 15px;
    }
    
    .header-actions {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* Create Stall Page Styles */
.create-stall {
    padding: 60px 0;
    background: #f8f9fa;
    min-height: calc(100vh - 200px);
}

.create-stall .form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.create-stall .form-container h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.create-stall .subhead {
    color: #666;
    margin-bottom: 40px;
}

.create-stall .form-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #eee;
}

.create-stall .form-section h2 {
    margin-bottom: 25px;
    font-size: 24px;
}

.create-stall .form-group {
    margin-bottom: 20px;
}

.create-stall .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.create-stall .form-group input[type="text"],
.create-stall .form-group input[type="tel"],
.create-stall .form-group input[type="url"],
.create-stall .form-group select,
.create-stall .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
}

.create-stall .image-upload {
    border: 2px dashed #ddd;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
}

.create-stall .upload-btn {
    background: #f8f9fa;
    border: 2px solid #ddd;
    padding: 12px 30px;
    border-radius: 6px;
    cursor: pointer;
}

.create-stall .btn-submit {
    width: 100%;
    background: #000;
    color: white;
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
}
/* My Stalls Page */
.my-stalls {
    padding: 60px 0;
    background: #f8f9fa;
    min-height: calc(100vh - 200px);
}

.stalls-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stall-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: center;
}

.stall-card h2 {
    margin-bottom: 15px;
    font-size: 24px;
}

.stall-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.stall-actions a {
    padding: 10px 20px;
    background: #f8f9fa;
    color: #333;
    text-decoration: none;
    border-radius: 6px;
}

.stall-actions a:hover {
    background: #e9ecef;
}

.no-stalls {
    text-align: center;
    padding: 60px;
    background: white;
    border-radius: 12px;
}

.btn-create {
    display: inline-block;
    padding: 15px 40px;
    background: #000;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    margin-top: 20px;
}
.add-product {
    padding: 60px 0;
    background: #f8f9fa;
    min-height: calc(100vh - 200px);
}

.add-product .container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.add-product h1 {
    margin-bottom: 30px;
}

.add-product form p {
    margin-bottom: 20px;
}

.add-product label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.add-product input[type="text"],
.add-product input[type="number"],
.add-product input[type="url"],
.add-product textarea {
    width: 100%;
    padding: 10px;
    border: 2px solid #ddd;
    border-radius: 6px;
}

.add-product button {
    background: #000;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.add-product #upload-image {
    background: #f8f9fa;
    color: #333;
    border: 2px solid #ddd;
}
/* --- FORCE LOGIN CARD WIDTH --- */
.login-container {
    max-width: 650px !important;
    min-height: auto !important;
    width: 100%;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    margin: 0 auto !important;
    border: 1px solid #e0e0e0;
}

.login-body {
    padding: 50px !important; /* This makes the inside 'fat' */
}

.login-header {
    padding: 40px !important;
}

.login-section {
    padding: 80px 0 !important;
}