/**
 * Sell Your Parts Stock - Styling
 * Clean, modern design matching Aero Bay Art theme
 */

/* ========================================
   CSS Variables - Aero Bay Art Colors
   ======================================== */

:root {
    --accent-green: #1F453A;
    --text-dark: #1a1a1a;
    --bg-warm-white: #FAFAF7;
    --bg-soft-beige: #F5F2E9;
    --border-brown: #4A3C2C;
}

/* ========================================
   Global Container
   ======================================== */

.sell-parts-page {
    width: 100%;
    overflow-x: hidden;
}

.sell-parts-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ========================================
   1. Main Heading Section
   ======================================== */

.sell-parts-main-heading {
    background: linear-gradient(135deg, var(--accent-green) 0%, #152e27 100%);
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sell-parts-main-heading::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.sell-parts-main-heading h1 {
    font-family: 'Titillium Web', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--bg-warm-white);
    margin: 0;
    line-height: 1.2;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* ========================================
   2. Full Width Box Section
   ======================================== */

.sell-parts-full-box {
    background: var(--bg-soft-beige);
    padding: 100px 20px;
}

.full-box-content {
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid #f0f0f0;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.full-box-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-green) 0%, #2a6150 100%);
    border-radius: 20px 20px 0 0;
}

.full-box-content p {
    font-size: 1.063rem;
    color: #555;
    line-height: 1.8;
    margin: 0 0 18px 0;
    text-align: left;
}

.full-box-content p:first-child {
    margin-top: 0;
}

.full-box-content p:last-child {
    margin-bottom: 0;
}

.full-box-content h2 {
    font-family: 'Titillium Web', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-green);
    margin: 0 0 25px 0;
    line-height: 1.3;
}

.full-box-content h3 {
    font-family: 'Titillium Web', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 30px 0 20px 0;
}

.full-box-content h4 {
    font-family: 'Titillium Web', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 25px 0 15px 0;
}

.full-box-content ul,
.full-box-content ol {
    margin: 0 0 20px 0;
    padding-left: 30px;
}

.full-box-content li {
    font-size: 1.063rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

.full-box-content strong,
.full-box-content b {
    color: var(--text-dark);
    font-weight: 600;
}

.full-box-content a {
    color: var(--accent-green);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.full-box-content a:hover {
    color: var(--border-brown);
}

/* ========================================
   3. Image Left + Content Right Section
   ======================================== */

.sell-parts-image-left {
    background: var(--bg-soft-beige);
    padding: 80px 20px;
}

.sell-parts-image-left .two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sell-parts-image-left .column-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    display: block;
}

.sell-parts-image-left .column-content h2 {
    font-family: 'Titillium Web', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 25px 0;
    line-height: 1.3;
}

.sell-parts-image-left .content-wysiwyg p {
    font-size: 1.063rem;
    color: #555;
    line-height: 1.8;
    margin: 0 0 18px 0;
    text-align: left;
}

.sell-parts-image-left .content-wysiwyg p:first-child {
    margin-top: 0;
}

.sell-parts-image-left .content-wysiwyg p:last-child {
    margin-bottom: 0;
}

.sell-parts-image-left .content-wysiwyg h3 {
    font-family: 'Titillium Web', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-green);
    margin: 30px 0 15px 0;
}

.sell-parts-image-left .content-wysiwyg h4 {
    font-family: 'Titillium Web', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 25px 0 12px 0;
}

.sell-parts-image-left .content-wysiwyg ul,
.sell-parts-image-left .content-wysiwyg ol {
    margin: 0 0 20px 0;
    padding-left: 30px;
}

.sell-parts-image-left .content-wysiwyg li {
    font-size: 1.063rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

.sell-parts-image-left .content-wysiwyg strong,
.sell-parts-image-left .content-wysiwyg b {
    color: var(--text-dark);
    font-weight: 600;
}

.sell-parts-image-left .content-wysiwyg a {
    color: var(--accent-green);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.sell-parts-image-left .content-wysiwyg a:hover {
    color: var(--border-brown);
}

/* ========================================
   4. Content Left + Image Right Section
   ======================================== */

.sell-parts-image-right {
    background: var(--bg-warm-white);
    padding: 80px 20px;
}

.sell-parts-image-right .two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sell-parts-image-right .column-content h2 {
    font-family: 'Titillium Web', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 25px 0;
    line-height: 1.3;
}

.sell-parts-image-right .content-wysiwyg p {
    font-size: 1.063rem;
    color: #555;
    line-height: 1.8;
    margin: 0 0 18px 0;
    text-align: left;
}

.sell-parts-image-right .content-wysiwyg p:first-child {
    margin-top: 0;
}

.sell-parts-image-right .content-wysiwyg p:last-child {
    margin-bottom: 0;
}

.sell-parts-image-right .content-wysiwyg h3 {
    font-family: 'Titillium Web', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-green);
    margin: 30px 0 15px 0;
}

.sell-parts-image-right .content-wysiwyg h4 {
    font-family: 'Titillium Web', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 25px 0 12px 0;
}

.sell-parts-image-right .content-wysiwyg ul,
.sell-parts-image-right .content-wysiwyg ol {
    margin: 0 0 20px 0;
    padding-left: 30px;
}

.sell-parts-image-right .content-wysiwyg li {
    font-size: 1.063rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

.sell-parts-image-right .content-wysiwyg strong,
.sell-parts-image-right .content-wysiwyg b {
    color: var(--text-dark);
    font-weight: 600;
}

.sell-parts-image-right .content-wysiwyg a {
    color: var(--accent-green);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.sell-parts-image-right .content-wysiwyg a:hover {
    color: var(--border-brown);
}

.sell-parts-image-right .column-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    display: block;
}

/* ========================================
   5. Three Columns Section
   ======================================== */

.sell-parts-three-columns {
    background: var(--bg-soft-beige);
}

.columns-main-heading {
    font-family: 'Titillium Web', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin: 0 0 60px 0;
    line-height: 1.3;
}

.three-columns-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.column-box {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--border-brown);
    transition: all 0.3s ease;
}

.column-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.column-box h3 {
    font-family: 'Titillium Web', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-green);
    margin: 0 0 25px 0;
    line-height: 1.3;
    text-align: center;
}

.column-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.column-box li {
    font-size: 1.063rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.column-box li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: 700;
    font-size: 1.125rem;
}

.column-box li:last-child {
    margin-bottom: 0;
}

/* ========================================
   6. Brands Section
   ======================================== */

.sell-parts-brands-section {
    padding: 100px 20px;
    background: white;
}

.sell-parts-brands-title {
    font-family: 'Titillium Web', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin: 0 0 60px 0;
    line-height: 1.3;
}

.sell-parts-brands-note {
    font-size: 1.125rem;
    color: #666;
    text-align: center;
    line-height: 1.8;
    max-width: 800px;
    margin: 50px auto 0;
}

.sell-parts-brands-note a {
    color: var(--accent-green);
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.sell-parts-brands-note a:hover {
    color: var(--border-brown);
}

/* ========================================
   7. Contact Form Section
   ======================================== */

.sell-parts-form-section {
    padding: 100px 20px;
    background: var(--bg-warm-white);
}

.sell-parts-form-title {
    font-family: 'Titillium Web', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin: 0 0 30px 0;
    line-height: 1.3;
}

.sell-parts-form-intro,
.sell-parts-form-note {
    font-size: 1.125rem;
    color: #666;
    text-align: center;
    line-height: 1.8;
    max-width: 850px;
    margin: 0 auto 25px;
}

.sell-parts-form-intro {
    margin-bottom: 15px;
}

.sell-parts-form-intro strong,
.sell-parts-form-note strong {
    color: var(--text-dark);
    font-weight: 600;
}

.sell-parts-form-note a {
    color: var(--accent-green);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.sell-parts-form-note a:hover {
    color: var(--border-brown);
    text-decoration: underline;
}

.sell-parts-form-wrapper {
    max-width: 900px;
    margin: 50px auto 0;
    background: white;
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e5e5;
}

/* ========================================
   Responsive Design
   ======================================== */

/* Tablets and smaller desktops */
@media (max-width: 768px) {
    .sell-parts-container .two-column-layout .column-content {
        order: 1;
    }
    /* Main Heading */
    .sell-parts-main-heading {
        padding: 60px 20px;
    }

    .sell-parts-main-heading h1 {
        font-size: 2rem;
    }

    /* Full Width Box */
    .sell-parts-full-box {
        padding: 80px 20px;
    }

    .full-box-content {
        padding: 40px 30px;
        border-radius: 12px;
    }

    .full-box-content p {
        font-size: 1rem;
    }

    .full-box-content h2 {
        font-size: 1.75rem;
    }

    .full-box-content h3 {
        font-size: 1.375rem;
    }

    /* Image Left & Image Right - Stack columns */
    .sell-parts-image-left,
    .sell-parts-image-right {
        padding: 60px 20px;
    }

    .sell-parts-image-left .two-column-layout,
    .sell-parts-image-right .two-column-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sell-parts-image-left .column-content h2,
    .sell-parts-image-right .column-content h2 {
        font-size: 1.875rem;
    }

    .sell-parts-image-left .content-wysiwyg p,
    .sell-parts-image-right .content-wysiwyg p,
    .sell-parts-image-left .content-wysiwyg li,
    .sell-parts-image-right .content-wysiwyg li {
        font-size: 1rem;
    }

    /* Three Columns - Stack to 2 columns */
    .sell-parts-three-columns {
        padding: 60px 20px;
    }

    .columns-main-heading {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .three-columns-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .column-box {
        padding: 30px 20px;
    }

    .column-box h3 {
        font-size: 1.375rem;
    }

    .column-box li {
        font-size: 1rem;
    }

    /* Contact Form */
    .sell-parts-form-section {
        padding: 70px 20px;
    }

    .sell-parts-form-title {
        font-size: 2rem;
    }

    .sell-parts-form-intro,
    .sell-parts-form-note {
        font-size: 1rem;
    }

    .sell-parts-form-wrapper {
        padding: 35px 25px;
        border-radius: 12px;
    }
}

/* Mobile phones */
@media (max-width: 480px) {
    /* Main Heading */
    .sell-parts-main-heading {
        padding: 50px 20px;
    }

    .sell-parts-main-heading h1 {
        font-size: 1.625rem;
    }

    /* Full Width Box */
    .sell-parts-full-box {
        padding: 60px 15px;
    }

    .full-box-content {
        padding: 30px 25px;
    }

    .full-box-content p {
        font-size: 0.938rem;
    }

    .full-box-content h2 {
        font-size: 1.5rem;
    }

    .full-box-content h3 {
        font-size: 1.25rem;
    }

    /* Image Left & Image Right */
    .sell-parts-image-left,
    .sell-parts-image-right {
        padding: 50px 15px;
    }

    .sell-parts-image-left .two-column-layout,
    .sell-parts-image-right .two-column-layout {
        gap: 30px;
    }

    .sell-parts-image-left .column-content h2,
    .sell-parts-image-right .column-content h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .sell-parts-image-left .content-wysiwyg p,
    .sell-parts-image-right .content-wysiwyg p,
    .sell-parts-image-left .content-wysiwyg li,
    .sell-parts-image-right .content-wysiwyg li {
        font-size: 0.938rem;
    }

    .sell-parts-image-left .content-wysiwyg h3,
    .sell-parts-image-right .content-wysiwyg h3 {
        font-size: 1.25rem;
    }

    /* Three Columns - Stack to single column */
    .sell-parts-three-columns {
        padding: 50px 15px;
    }

    .columns-main-heading {
        font-size: 1.625rem;
        margin-bottom: 30px;
    }

    .three-columns-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .column-box {
        padding: 25px 20px;
    }

    .column-box h3 {
        font-size: 1.25rem;
        margin-bottom: 20px;
    }

    .column-box li {
        font-size: 0.938rem;
        margin-bottom: 10px;
        padding-left: 20px;
    }

    .column-box li::before {
        font-size: 1rem;
    }

    /* Contact Form */
    .sell-parts-form-section {
        padding: 60px 15px;
    }

    .sell-parts-form-title {
        font-size: 1.625rem;
    }

    .sell-parts-form-intro,
    .sell-parts-form-note {
        font-size: 0.938rem;
    }

    .sell-parts-form-wrapper {
        padding: 25px 20px;
        margin-top: 40px;
    }
}
