/* PAGE HEADER */
.page-header {
    padding: 80px 0 40px;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.page-header h1 {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 8px;
}

.page-header p {
    color: #888;
    font-size: 16px;
}

/* PAGE SECTION */
.page-section {
    padding: 60px 0;
    background: #fff;
}

/* FILTER BAR */
.filter-bar {
    padding: 20px 0;
    background: #fff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 69px;
    z-index: 50;
}

.filter-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-select {
    padding: 10px 16px;
    border: 1px solid #ddd;
    border-radius: 0;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    background: #fff;
    color: #555;
    cursor: pointer;
    outline: none;
    letter-spacing: 0.5px;
}

.filter-select:focus {
    border-color: #111;
}

/* BRANDS PAGE */
.brand-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.brand-card {
    padding: 28px 20px;
    background: #f5f5f5;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s, background 0.3s;
    cursor: pointer;
}

.brand-card:hover {
    transform: translateY(-4px);
    background: #eee;
}

.brand-card img {
    height: 40px;
    width: 40px;
    margin-bottom: 12px;
    object-fit: contain;
    border-radius: 8px;
    opacity: 0.75;
    transition: opacity 0.3s;
}

.brand-card:hover img {
    opacity: 1;
}

.brand-card h3 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 6px;
}

.brand-card p {
    color: #888;
    font-size: 12px;
}

.brand-section {
    margin-bottom: 48px;
}

.brand-section h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* LOGIN / SIGNUP */
.auth-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.auth-visual {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    height: 500px;
    background-size: cover;
    background-position: center;
}

.auth-form {
    flex: 1;
    max-width: 380px;
}

.auth-form h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.auth-form p {
    color: #888;
    font-size: 14px;
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #555;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border 0.2s;
}

.form-group input:focus {
    border-color: #111;
}

.auth-form .btn-primary {
    width: 100%;
    text-align: center;
    padding: 14px;
    font-size: 14px;
}

.auth-divider {
    text-align: center;
    font-size: 12px;
    color: #bbb;
    margin: 20px 0;
    position: relative;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 42%;
    height: 1px;
    background: #eee;
}

.auth-divider::before {
    left: 0;
}

.auth-divider::after {
    right: 0;
}

.auth-alt {
    text-align: center;
    font-size: 13px;
    color: #888;
    margin-top: 20px;
}

.auth-alt a {
    color: #111;
    font-weight: 600;
    text-decoration: none;
}

/* OUTFIT DETAIL PAGE (placeholder for kombinler) */
.outfit-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.outfit-hero-photo {
    border-radius: 16px;
    overflow: hidden;
    height: 600px;
    background-size: cover;
    background-position: center;
}

.outfit-hero-info h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.outfit-hero-info .outfit-author {
    font-size: 15px;
    color: #666;
    margin-bottom: 24px;
}

.product-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.product-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f5f5f5;
    border-radius: 8px;
}

.product-thumb {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
}

.product-item h4 {
    font-size: 14px;
    font-weight: 600;
}

.product-item p {
    font-size: 12px;
    color: #888;
}
