@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* Sell page styles aligned to Budli reference */
body.page-template-page-sell {
    --gap-hw: 20px;
    font-family: 'Inter', sans-serif;
    color: #222;
    background: #fff;
}


body.page-template-page-sell .sell-page-main {
    font-family: inherit;
    color: inherit;
    background: #fff;
}

body.page-template-page-sell .site-main {
    padding: 0 !important;
}

.sell-page-main * {
    box-sizing: border-box;
}

.sell-page-main img {
    max-width: 100%;
    height: auto;
    display: block;
}

.sell-page-main .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.sell-page-main .sell-topbar {
    background: #bc1c5c;
    color: #fff;
    text-align: center;
    padding: 10px 16px;
    font-weight: 600;
    font-size: 16px;
}

.sell-page-main .sell-hero {
    padding: 4px 0 2px;
}

.sell-page-main .sell-hero__banner {
    background-size: cover;
    background-position: center;
    border-radius: 0px;
    padding: 0px;
}

@media (min-width: 1201px) {
    .sell-page-main .sell-hero {
        padding: 0;
    }
    .sell-page-main .sell-hero .container {
        max-width: 100%;
        padding: 0;
    }
    .sell-page-main .sell-hero .sell-hero__banner {
        border-radius: 0;
        padding: 40px 10%;
    }
}

.sell-page-main .sell-hero__grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 28px;
    align-items: center;
}

.sell-page-main .sell-hero__content {
    text-align: center;
}

.sell-page-main .sell-hero__title {
    font-size: 28px;
    font-weight: 600;
    color: #bc1c5c;
    text-align: center;
    margin-bottom: 20px;
}

.sell-page-main .sell-hero__categories {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 18px;
}

.sell-page-main .sell-hero__category {
    background: #bc1c5c;
    color: #fff;
    border-radius: 8px;
    padding: 10px 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 90px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sell-page-main .sell-hero__category:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.sell-page-main .sell-hero__category img {
    width: 100%;
    max-width: 60px;
    height: auto;
}

.sell-page-main .sell-hero__category small {
    font-size: 12px;
    font-weight: 500;
}

.sell-page-main .sell-search {
    position: relative;
    background: rgba(100, 108, 124, 0.2);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 18px;
}

.sell-page-main .sell-search .budli-search-input {
    width: 100%;
    border: none;
    border-radius: 6px;
    padding: 10px 44px 10px 12px;
    font-size: 14px;
    outline: none;
    color: #222;
    background: #fff;
}

.sell-page-main .sell-search__btn {
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    cursor: pointer;
}

.sell-page-main .budli-search-suggestions {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 6px);
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    max-height: 260px;
    overflow: auto;
    z-index: 20;
}

.sell-page-main .budli-search-suggestions ul {
    list-style: none;
    margin: 0;
    padding: 8px 0;
}

.sell-page-main .budli-search-suggestions li a {
    display: block;
    padding: 8px 14px;
    font-size: 14px;
    color: #222;
    text-decoration: none;
}

.sell-page-main .budli-search-suggestions li a:hover {
    background: #f3f4f6;
}

.sell-page-main .budli-search-suggestions mark {
    background: #ffe4ef;
    color: #bc1c5c;
}

.sell-page-main .sell-hero__cta-text {
    display: block;
    margin-top: 20px;
    margin-bottom: 0px;
    font-size: 16px;
    font-weight: 500;
    color: #444;
}

.sell-page-main .sell-request-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 26px;
    background: #bc1c5c;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    text-decoration: none;
}

.sell-page-main .sell-hero__image img {
    width: 100%;
    height: auto;
}

.sell-page-main .sell-features {
    padding: 0px 0;
    background: #fff;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 0px;
}

.sell-page-main .sell-features__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.sell-page-main .sell-feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 12px;
    padding: 15px 10px;
    background: #fff;
    border-radius: 0;
    text-decoration: none !important;
    color: #333 !important;
    transition: background 0.2s ease;
    border: none;
    border-right: 1px solid #e5e7eb;
}

.sell-page-main .sell-feature-card:last-child {
    border-right: none;
}

.sell-page-main .sell-feature-card.is-link:hover {
    transform: none;
    box-shadow: none;
    border-color: #e5e7eb;
    background: #f9fafb;
}

.sell-page-main .sell-feature-icon {
    width: 54px;
    height: 54px;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bc1c5c;
    transition: transform 0.2s ease;
}

.sell-page-main .sell-feature-card:hover .sell-feature-icon {
    transform: scale(1.05);
    background: transparent;
    color: #bc1c5c;
}

.sell-page-main .sell-feature-card:hover .sell-feature-icon iconify-icon {
    color: #bc1c5c !important;
}

.sell-page-main .sell-feature-title {
    font-size: 15px;
    font-weight: 700;
    color: #111;
    margin: 0;
    letter-spacing: -0.2px;
}

@media (max-width: 992px) {
    .sell-page-main .sell-features {
        padding: 0;
    }
    .sell-page-main .sell-features__grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .sell-page-main .sell-feature-card {
        padding: 0px 0px;
    }
}

@media (max-width: 480px) {
    .sell-page-main .sell-features {
        padding: 10px 0;
    }
    .sell-page-main .sell-feature-icon {
        width: 36px;
        height: 36px;
    }
    .sell-page-main .sell-feature-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    .sell-page-main .sell-feature-title {
        font-size: 11px;
        line-height: 1.2;
    }
    .sell-page-main .sell-feature-card {
        padding: 12px 2px;
        gap: 6px;
    }
}

.sell-page-main .sell-section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.sell-page-main .sell-section-head--center {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.sell-page-main .sell-section-head--dark .sell-section-title,
.sell-page-main .sell-section-head--dark .sell-section-sub {
    color: #fff;
}

.sell-page-main .sell-section-title {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
}

.sell-page-main .sell-section-sub {
    font-size: 14px;
    color: #222;
    margin-top: 6px;
}

.sell-page-main .sell-section-sub strong {
    color: #0474b4;
}

.sell-page-main .nav-arrows {
    display: flex;
    gap: 8px;
}

.sell-page-main .nav-btn {
    width: 44px;
    height: 44px;
    background: #bc1c5c;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.sell-page-main .nav-btn--dark {
    background: #0474b4;
}

.sell-page-main .nav-btn.off {
    opacity: 0.35;
    pointer-events: none;
}



.sell-page-main .sell-testimonials {
    padding: 32px 0;
}

.sell-page-main .sell-testimonial-card {
    background: #fff;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 0 0.4rem rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sell-page-main .sell-quote-icon {
    width: 28px;
    opacity: 0.2;
}

.sell-page-main .sell-testimonial-text {
    font-size: 14px;
    color: #222;
    line-height: 1.6;
    min-height: 120px;
}

.sell-page-main .sell-testimonial-footer {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sell-page-main .sell-testimonial-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

.sell-page-main .sell-testimonial-name {
    font-size: 14px;
    font-weight: 600;
}

.sell-page-main .sell-stars {
    display: flex;
    gap: 2px;
    margin-top: 4px;
}

.sell-page-main .sell-stars img {
    width: 16px;
    height: 16px;
}

.sell-page-main .sell-steps {
    background: #f6f6f6;
    padding: 20px 0;
}

.sell-page-main .sell-steps__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.sell-page-main .sell-step-card {
    background: #bc1c5c;
    color: #fff;
    border-radius: 12px;
    padding: 22px;
    text-align: center;
    box-shadow: 0 0 0.4rem rgba(0, 0, 0, 0.1);
}

.sell-page-main .sell-step-card img {
    width: 100px;
    margin: 0 auto 12px;
    border-radius: 50%;
}

.sell-page-main .sell-step-card p {
    font-size: 14px;
    line-height: 1.6;
}

.sell-page-main .sell-media {
    padding: 32px 0;
}

.sell-page-main .sell-video-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 0.4rem rgba(0, 0, 0, 0.1);
    display: block;
}

.sell-page-main .sell-video-card img {
    width: 100%;
    height: auto;
}

.sell-page-main .sell-impact {
    padding: 32px 0;
    text-align: center;
}

.sell-page-main .sell-impact__title a {
    color: #222;
    text-decoration: none;
}

.sell-page-main .sell-impact__image {
    max-width: 800px;
    margin: 0 auto;
}

.sell-page-main .sell-impact__image img {
    width: 100%;
    border-radius: 8px;
}

.sell-page-main .sell-brands {
    background: #bc1c5c;
    padding: 32px 0;
    color: #fff;
}

.sell-page-main .sell-brand-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.sell-page-main .sell-brand-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
    border-color: #bc1c5c;
}

.sell-page-main .sell-brand-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sell-page-main .sell-why {
    padding: 32px 0;
}

.sell-page-main .sell-why__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.sell-page-main .sell-why__card {
    background: #fff;
    border-radius: 12px;
    padding: 22px;
    text-align: center;
    box-shadow: 0 0 0.4rem rgba(0, 0, 0, 0.1);
}

.sell-page-main .sell-why__card img {
    width: 100px;
    margin: 0 auto 12px;
}

.sell-page-main .sell-why__card h3 {
    color: #bc1c5c;
    font-size: 16px;
    margin: 0 0 6px;
}

.sell-page-main .sell-why__card p {
    font-size: 13px;
    color: #222;
    line-height: 1.6;
}

.sell-page-main .sell-spotlight {
    padding: 32px 0;
}

.sell-page-main .sell-logo-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.sell-page-main .sell-logo-card img {
    width: 100%;
    max-width: 200px;
    height: auto;
}

.sell-page-main .sell-awards {
    background: #f6f6f6;
    padding: 32px 0;
}

.sell-page-main .sell-award-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.sell-page-main .sell-award-card img {
    width: 100%;
    max-width: 200px;
    height: auto;
}

.sell-page-main .sell-faq {
    background: #f6f6f6;
    padding: 32px 0;
}

.sell-page-main .sell-faq .sell-section-head--center {
    margin-bottom: 30px;
}

.sell-page-main .sell-faq__content {
    margin: 0 auto;
    padding: 0 20px;
}

.sell-page-main .sell-faq__grid {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.sell-page-main .sell-faq__left {
    flex: 0 0 240px;
}

.sell-page-main .sell-faq__right {
    flex: 1;
}



.sell-page-main .faq-item {
    border-bottom: 1px solid #e5e7eb;
}

.sell-page-main .faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    gap: 12px;
}

.sell-page-main .faq-icon-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #666;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.sell-page-main .faq-q.open .faq-icon-btn {
    background: #bc1c5c;
    color: #fff;
    transform: rotate(45deg);
}

.sell-page-main .faq-answer {
    max-height: 0;
    overflow: hidden;
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    transition: max-height 0.35s ease, padding 0.3s ease;
}

.sell-page-main .faq-answer.open {
    max-height: 500px;
    padding-bottom: 12px;
}

.sell-page-main .sell-articles {
    padding: 32px 0;
}

.sell-page-main .sell-article-card {
    display: block;
    color: #222;
    text-decoration: none;
}

.sell-page-main .sell-article-card img {
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    width: 100%;
    height: auto;
}

.sell-page-main .sell-article-card h3 {
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
    line-height: 1.5;
}

.sell-page-main .sell-seo {
    padding: 24px 0 40px;
}

.sell-page-main .seo-item {
    border-bottom: 1px solid #e5e7eb;
}

.sell-page-main .seo-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    cursor: pointer;
}

.sell-page-main .seo-q-title {
    font-size: 15px;
    font-weight: 600;
    color: #bc1c5c;
    margin: 0;
}

.sell-page-main .seo-icon-btn {
    color: #666;
    font-weight: 700;
}

.sell-page-main .seo-body {
    max-height: 0;
    overflow: hidden;
    font-size: 13px;
    color: #555;
    line-height: 1.7;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.sell-page-main .seo-body.open {
    max-height: 1200px;
    padding-bottom: 16px;
}

.sell-page-main .seo-body ul {
    padding-left: 18px;
    margin: 8px 0;
}

.sell-page-main #sell-floating {
    position: fixed;
    right: 16px;
    bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 100;
}

.sell-page-main .wa-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 50px;
    background: #2aae66;
    color: #fff;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.sell-page-main .wa-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
    color: #2aae66;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
}

.sell-page-main .scroll-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #bc1c5c;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sell-page-main .scroll-btn.show {
    opacity: 1;
}

@media (max-width: 992px) {
    .sell-page-main .sell-hero__grid {
        grid-template-columns: 1fr;
    }

    .sell-page-main .sell-hero__image {
        max-width: 420px;
        margin: 0 auto;
    }

    .sell-page-main .sell-steps__grid,
    .sell-page-main .sell-why__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sell-page-main .sell-faq__grid {
        flex-direction: column;
    }

    .sell-page-main .sell-faq__left {
        flex: none;
        width: 100%;
    }

    .sell-page-main .faq-tabs {
        justify-content: flex-start;
    }

    .sell-page-main .faq-q {
        font-size: 16px;
        padding: 15px 0;
    }

    .sell-page-main .faq-answer {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .sell-page-main .sell-topbar {
        font-size: 12px;
    }

    .sell-page-main .sell-hero__categories {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sell-page-main .sell-info__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .sell-page-main .sell-steps__grid,
    .sell-page-main .sell-why__grid {
        grid-template-columns: 1fr;
    }

    .sell-page-main .sell-hero__title {
        font-size: 22px;
    }

    .sell-page-main .sell-request-btn {
        width: 100%;
    }

    .sell-page-main .sell-hero__image {
        display: none;
    }

    .sell-page-main #sell-floating .wa-label {
        display: none;
    }
}


/* Full-width hero section on PC view */
@media (min-width: 1201px) {
    .sell-page-main .sell-hero {
        padding: 0;
    }
    .sell-page-main .sell-hero .container {
        max-width: 100% !important;
        padding: 0 !important;
    }
    .sell-page-main .sell-hero .sell-hero__banner {
        border-radius: 0 !important;
        padding: 40px 10% !important;
    }
}
