/* ============================================ */
/* Authentication Pages - auth.css */
/* ============================================ */

.auth-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 4rem 0;
    background: #f8f6f3;
}

.auth-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.auth-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

/* Left Column - Form */
.auth-form-container {
    padding: 3.5rem;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Right Column - Content with Image */
.auth-content {
    display: flex;
    align-items: stretch;
    min-height: 100%;
    position: relative;
}

.auth-content-bg {
    position: relative;
    width: 100%;
    min-height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-content-bg img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.auth-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.auth-content-inner {
    position: relative;
    z-index: 2;
    padding: 3rem;
    max-width: 440px;
    width: 100%;
}

.auth-content-inner h2 {
    font-size: 2rem;
    margin: 0 0 2rem 0;
    color: #ffffff;
    line-height: 1.3;
}

.auth-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
}

.auth-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.6rem 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

.auth-features .check {
    color: #d4af37;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.auth-testimonial {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 1.5rem;
}

.auth-testimonial p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 0.5rem 0;
}

.auth-testimonial .testimonial-author {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
}

/* Auth Header */
.auth-header {
    margin-bottom: 2rem;
}

.auth-header .eyebrow {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #6d1b2e;
    display: inline-block;
}

.auth-header h1 {
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin: 0.5rem 0 0.3rem 0;
    color: #1a1a1a;
}

.auth-header p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(0, 0, 0, 0.5);
    margin: 0;
}

/* Social Login */
.social-login {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    border: 1px solid #e8e5e0;
    background: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    color: #1a1a1a;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    width: 100%;
}

.social-btn:hover {
    background: #f5f3f0;
    border-color: #d4af37;
}

.social-btn svg {
    flex-shrink: 0;
}

/* Divider */
.divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e8e5e0;
}

.divider span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}

/* Auth Form */
.auth-form .form-group {
    margin-bottom: 1.25rem;
}

.auth-form label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 0.3rem;
}

.auth-form input {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 1px solid #e8e5e0;
    border-radius: 12px;
    font-size: 0.95rem;
    font-family: inherit;
    background: #faf8f5;
    color: #1a1a1a;
    transition: all 0.2s ease;
    outline: none;
}

.auth-form input:focus {
    border-color: #d4af37;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.06);
}

.auth-form input::placeholder {
    color: rgba(0, 0, 0, 0.25);
}

/* Password Wrapper */
.password-wrapper {
    position: relative;
}

.password-wrapper input {
    padding-right: 3rem;
}

.toggle-password {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: rgba(0, 0, 0, 0.25);
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.toggle-password:hover {
    color: rgba(0, 0, 0, 0.5);
}

.toggle-password svg {
    stroke: currentColor;
}

/* Form Options */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1rem 0 1.5rem 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.55);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #d4af37;
    cursor: pointer;
}

.forgot-link {
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.5);
    text-decoration: none;
    transition: color 0.2s ease;
}

.forgot-link:hover {
    color: #6d1b2e;
}

/* Button */
.btn-gold {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 999px;
    background: #1a1a1a;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    text-align: center;
    font-family: inherit;
}

.btn-gold:hover {
    background: #6d1b2e;
}

.btn-gold:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Auth Switch */
.auth-switch {
    text-align: center;
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.4);
    margin-top: 1.5rem;
}

.auth-switch a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.auth-switch a:hover {
    color: #6d1b2e;
}

/* ============================================ */
/* Responsive */
/* ============================================ */
@media (max-width: 1024px) {
    .auth-layout {
        grid-template-columns: 1fr;
    }
    
    .auth-content {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .auth-form-container {
        padding: 2rem 1.5rem;
    }
    
    .auth-content {
        min-height: 350px;
    }
    
    .auth-content-inner {
        padding: 2rem;
    }
    
    .auth-content-inner h2 {
        font-size: 1.6rem;
    }
    
    .auth-section {
        padding: 2.5rem 0;
    }
    
    .auth-wrap {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .auth-form-container {
        padding: 1.5rem 1rem;
    }
    
    .auth-header h1 {
        font-size: 1.5rem;
    }
    
    .auth-content {
        min-height: 300px;
    }
    
    .auth-content-inner {
        padding: 1.5rem;
    }
    
    .auth-content-inner h2 {
        font-size: 1.3rem;
    }
    
    .form-options {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
}


/* ============================================ */
/* Authentication Pages - auth.css */
/* ============================================ */

.auth-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 4rem 0;
    background: #f8f6f3;
}

.auth-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.auth-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

/* Left Column - Form */
.auth-form-container {
    padding: 3.5rem;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Right Column - Content with Image */
.auth-content {
    display: flex;
    align-items: stretch;
    min-height: 100%;
    position: relative;
}

.auth-content-bg {
    position: relative;
    width: 100%;
    min-height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-content-bg img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.auth-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.auth-content-inner {
    position: relative;
    z-index: 2;
    padding: 3rem;
    max-width: 440px;
    width: 100%;
}

.auth-content-inner h2 {
    font-size: 2rem;
    margin: 0 0 2rem 0;
    color: #ffffff;
    line-height: 1.3;
}

.auth-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
}

.auth-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.6rem 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

.auth-features .check {
    color: #d4af37;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.auth-testimonial {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 1.5rem;
}

.auth-testimonial p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 0.5rem 0;
}

.auth-testimonial .testimonial-author {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
}

/* Auth Header */
.auth-header {
    margin-bottom: 2rem;
}

.auth-header .eyebrow {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #6d1b2e;
    display: inline-block;
}

.auth-header h1 {
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin: 0.5rem 0 0.3rem 0;
    color: #1a1a1a;
}

.auth-header p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(0, 0, 0, 0.5);
    margin: 0;
}

/* Social Login */
.social-login {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    border: 1px solid #e8e5e0;
    background: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    color: #1a1a1a;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    width: 100%;
}

.social-btn:hover {
    background: #f5f3f0;
    border-color: #d4af37;
}

.social-btn svg {
    flex-shrink: 0;
}

/* Divider */
.divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e8e5e0;
}

.divider span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}

/* Auth Form */
.auth-form .form-group {
    margin-bottom: 1.25rem;
}

.auth-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.auth-form label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 0.3rem;
}

.auth-form input {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 1px solid #e8e5e0;
    border-radius: 12px;
    font-size: 0.95rem;
    font-family: inherit;
    background: #faf8f5;
    color: #1a1a1a;
    transition: all 0.2s ease;
    outline: none;
}

.auth-form input:focus {
    border-color: #d4af37;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.06);
}

.auth-form input::placeholder {
    color: rgba(0, 0, 0, 0.25);
}

/* Password Wrapper */
.password-wrapper {
    position: relative;
}

.password-wrapper input {
    padding-right: 3rem;
}

.toggle-password {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: rgba(0, 0, 0, 0.25);
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.toggle-password:hover {
    color: rgba(0, 0, 0, 0.5);
}

.toggle-password svg {
    stroke: currentColor;
}

/* Form Options */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1rem 0 1.5rem 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.55);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #d4af37;
    cursor: pointer;
}

.checkbox-label a {
    color: #6d1b2e;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.forgot-link {
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.5);
    text-decoration: none;
    transition: color 0.2s ease;
}

.forgot-link:hover {
    color: #6d1b2e;
}

/* Button */
.btn-gold {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 999px;
    background: #1a1a1a;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    text-align: center;
    font-family: inherit;
}

.btn-gold:hover {
    background: #6d1b2e;
}

.btn-gold:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Auth Switch */
.auth-switch {
    text-align: center;
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.4);
    margin-top: 1.5rem;
}

.auth-switch a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.auth-switch a:hover {
    color: #6d1b2e;
}

/* ============================================ */
/* Seller CTA Section */
/* ============================================ */
.seller-cta-section {
    padding: 4rem 0;
    background: #ffffff;
    border-top: 1px solid #e8e5e0;
}

.seller-cta-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: #f8f6f3;
    border-radius: 16px;
    padding: 4rem;
}

.seller-cta-content {
    max-width: 520px;
}

.seller-cta-badge {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: rgba(183, 65, 14, 0.08);
    color: #6d1b2e;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.seller-cta-content h2 {
    font-size: 2.2rem;
    margin: 0 0 1rem 0;
    color: var(--ink, #1a1a1a);
    line-height: 1.2;
}

.seller-cta-content > p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.6);
    margin: 0 0 1.5rem 0;
}

.seller-cta-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.seller-cta-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.5;
}

.seller-cta-features .seller-check {
    color: #6d1b2e;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.btn-seller-cta {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    border-radius: 999px;
    background: #1a1a1a;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-seller-cta:hover {
    background: #6d1b2e;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(183, 65, 14, 0.15);
}

/* Seller Stats */
.seller-cta-stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e8e5e0;
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.5);
    margin-top: 0.3rem;
}

/* ============================================ */
/* Responsive */
/* ============================================ */
@media (max-width: 1024px) {
    .auth-layout {
        grid-template-columns: 1fr;
    }
    
    .auth-content {
        min-height: 400px;
    }
    
    .seller-cta-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2.5rem;
    }
    
    .seller-cta-content {
        max-width: 100%;
    }
    
    .seller-cta-stats {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .auth-form-container {
        padding: 2rem 1.5rem;
    }
    
    .auth-content {
        min-height: 350px;
    }
    
    .auth-content-inner {
        padding: 2rem;
    }
    
    .auth-content-inner h2 {
        font-size: 1.6rem;
    }
    
    .auth-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .auth-section {
        padding: 2.5rem 0;
    }
    
    .auth-wrap {
        padding: 0 1rem;
    }
    
    .seller-cta-section {
        padding: 2.5rem 0;
    }
    
    .seller-cta-container {
        padding: 2rem;
        border-radius: 16px;
    }
    
    .seller-cta-content h2 {
        font-size: 1.8rem;
    }
    
    .seller-cta-stats {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .auth-form-container {
        padding: 1.5rem 1rem;
    }
    
    .auth-header h1 {
        font-size: 1.5rem;
    }
    
    .auth-content {
        min-height: 300px;
    }
    
    .auth-content-inner {
        padding: 1.5rem;
    }
    
    .auth-content-inner h2 {
        font-size: 1.3rem;
    }
    
    .form-options {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .seller-cta-container {
        padding: 1.5rem;
    }
    
    .seller-cta-content h2 {
        font-size: 1.4rem;
    }
    
    .btn-seller-cta {
        width: 100%;
        text-align: center;
    }
}