/**
 * Supplier Information Page Styles
 * Styling for the supplier information display page
 */

/* =======================
   Main Container & Layout
   ======================= */

.supplier-information-page {
    padding-left: 20px;
    padding-right: 20px;
}

.supplier-info-container {
    max-width: 1320px;
    margin: 0 auto;
}

/* =======================
   Supplier Banner Section
   ======================= */

.supplier-banner-section {
    padding: 0;
    margin-bottom: 0;
}

.supplier-banner-wrapper {
    width: 100%;
    overflow: hidden;
}

.supplier-banner-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* =======================
   Tabs Navigation
   ======================= */

.supplier-tabs-section {
    padding: 0;
}

.supplier-tabs-wrapper {
    border-bottom: none;
    background-color: var(--color-secondary);
    border-radius: 9px 0 0 0;
}

.supplier-tabs {
    display: flex;
    gap: 0;
    max-width: 1320px;
    margin: 0 auto;
}

.supplier-tab {
    padding: 8px 16px;
    background: transparent;
    border: none;
    font-size: 14px;
    font-weight: 500;
    line-height: 25px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.supplier-tab:hover {
    color: rgba(255, 255, 255, 0.9);
}

.supplier-tab.active {
    background-color: #fff;
    color: #108d52;
    border-bottom: none;
    border-radius: 8px 8px 0 0;
}

/* Tab Content - All content is always visible, tabs just scroll */
/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Section anchors for scroll positioning */
section[id^="section-"] {
    scroll-margin-top: 150px;
}

/* =======================
   General Information Section
   ======================= */

.general-info-section {
    padding: 24px 0;
}

.general-info-wrapper {
    display: grid;
    grid-template-columns: 811px 1fr;
    gap: 20px;
}

.general-info-content {
    background-color: #fff;
}

.section-title {
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
    color: rgba(0, 0, 0, 0.87);
    margin: 0 0 4px 0;
}

.section-separator {
    height: 1px;
    background-color: #eeeeee;
    margin-bottom: 18px;
    margin-top: 4px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 8px;
    column-gap: 8px;
}

.info-item {
    background-color: rgba(163, 206, 77, 0.18);
    padding: 10px;
    display: flex;
    gap: 8px;
    font-size: 12px;
    line-height: 20px;
    color: #667085;
    border-radius: 4px;
}

.info-item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    display: block;
}

.info-item .info-text {
    flex: 1;
}

.info-item strong {
    color: #101828;
    font-weight: 600;
}

.detail-link {
    color: #108d52;
    text-decoration: underline;
}

.detail-link:hover {
    text-decoration: none;
}

/* Images Section */
.images-section {
    background-color: #fff;
}

.images-gallery {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
}

.images-container {
    flex: 1;
    display: flex;
    justify-content: center;
    gap: 18px;
    overflow: hidden;
}

.image-item {
    flex: 0 0 173px;
    height: 170px;
    border-radius: 8px;
    overflow: hidden;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.image-item.active {
    opacity: 1;
}

.image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-arrow {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border: none;
    background: #F0F2F3;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
    flex-shrink: 0;
}

.gallery-arrow:hover {
    background: #E0E2E3;
    transform: scale(1.05);
}

.gallery-arrow:active {
    transform: scale(0.95);
    background: #D0D2D3;
}

.gallery-arrow svg {
    width: 10px;
    height: 10px;
    display: block;
    flex-shrink: 0;
    color: #667085;
    transition: color 0.3s ease;
}

.gallery-arrow:hover svg {
    color: #101828;
}

.gallery-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background: #F0F2F3;
    transform: none;
}

.gallery-arrow:disabled:hover {
    background: #F0F2F3;
    transform: none;
}

/* =======================
   Banner Slide Section
   ======================= */


.banner-slide-wrapper {
    width: 100%;
}

/* Slick Banner Slider */
.banner-slider {
    width: 100%;
    height: 525px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.banner-slider .slick-list {
    height: 100%;
}

.banner-slider .slick-track {
    height: 100%;
}

.banner-slider .banner-slide-item {
    width: 100%;
    height: 525px;
    outline: none;
}

.banner-slider .banner-slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Slick Dots Customization */
.banner-slider .banner-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
    list-style: none;
    margin: 0;
    padding: 0;
    width: auto;
}

.banner-slider .banner-dots li {
    margin: 0;
    padding: 0;
    width: auto;
    height: auto;
}

.banner-slider .banner-dots li .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: block;
    border: none;
    padding: 0;
    text-indent: -9999px;
    overflow: hidden;
}

.banner-slider .banner-dots li .dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.banner-slider .banner-dots li.slick-active .dot {
    background-color: #108d52;
}

/* Slick Arrows (Prev/Next Buttons) */
.banner-slide-wrapper {
    position: relative;
}

.banner-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    padding: 0;
    outline: none;
}

.banner-slider-arrow:hover {
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-50%) scale(1.05);
}

.banner-slider-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.banner-slider-arrow svg {
    width: 10px;
    height: 10px;
    fill: #108d52;
    transition: fill 0.3s ease;
}

.banner-slider-arrow:hover svg {
    fill: #0d6e42;
}

.banner-slider-prev {
    left: 20px;
}

.banner-slider-next {
    right: 20px;
}

/* Hide default Slick arrows if they appear */
.banner-slider .slick-arrow {
    display: none !important;
}

/* =======================
   Company Description Section
   ======================= */

.description-wrapper {
    position: relative;
    background-color: #fff;
    max-height: 600px;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.description-wrapper.expanded {
    max-height: none;
    padding-bottom: 24px;
}

.description-banner-wrapper {
    width: 100%;
    margin-bottom: 0;
    overflow: hidden;
}

.description-banner-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.description-content {
    max-height: 90px;
    overflow: hidden;
    font-size: 14px;
    line-height: 20px;
    color: #838383;
    position: relative;
    margin-top: 16px;
    margin-bottom: 0;
    padding-bottom: 42px;
}

.description-wrapper.expanded .description-content {
    max-height: none;
    padding-bottom: 0;
}

.description-content p {
    margin: 0;
}

.description-gradient {
    position: absolute;
    bottom: 16px;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, #ffffff 100%);
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.description-gradient.hidden {
    opacity: 0;
}

/* Show More Button for Description */
.show-more-description-btn {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border: none;
    color: #667085;
    font-size: 12px;
    line-height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    padding: 0;
    transition: color 0.3s ease;
    z-index: 10;
}

.show-more-description-btn:hover {
    color: #108d52;
}

.show-more-description-btn svg {
    width: 16px;
    height: 16px;
    display: block;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.show-more-description-btn svg path,
.show-more-description-btn svg circle,
.show-more-description-btn svg line {
    fill: currentColor;
    stroke: currentColor;
}

.show-more-description-btn.expanded svg {
    transform: rotate(180deg);
}

.show-more-description-btn img {
    width: 16px;
    height: 16px;
    display: block;
    transition: transform 0.3s ease;
}

.show-more-description-btn.expanded img {
    transform: rotate(180deg);
}

/* Show More Button for Reviews */
.show-more-reviews-btn {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    background: transparent;
    border: none;
    color: #667085;
    font-size: 12px;
    line-height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 4px;
    cursor: pointer;
    padding: 0;
    margin-top: 8px;
    transition: color 0.3s ease;
    z-index: 1;
}

.show-more-reviews-btn:hover {
    color: #108d52;
}

.show-more-reviews-btn svg {
    width: 16px;
    height: 16px;
    display: block;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.show-more-reviews-btn svg path,
.show-more-reviews-btn svg circle,
.show-more-reviews-btn svg line {
    fill: currentColor;
    stroke: currentColor;
}

.show-more-reviews-btn.expanded svg {
    transform: rotate(180deg);
}

.show-more-reviews-btn img {
    width: 16px;
    height: 16px;
    display: block;
    transition: transform 0.3s ease;
}

.show-more-reviews-btn.expanded img {
    transform: rotate(180deg);
}

/* =======================
   Products Section
   ======================= */

.products-section {
    padding: 24px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    row-gap: 32px;
    column-gap: 26px;
    margin-bottom: 32px;
}

.product-card {
    position: relative;
    background-color: #fff;
    border: 1px solid #eaecf0;
    border-radius: 8px;
    padding: 12px 16px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-link {
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.product-link:hover {
    text-decoration: none;
}

.product-badges {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 400;
    line-height: 12px;
}

.badge-superior {
    background-color: #ED2629;
    color: #FFFFFF;
}

.badge-verified {
    background-color: #279E49;
    color: #FFFFFF;
}

.badge-verified svg {
    width: 14px;
    height: 14px;
}

.product-image {
    width: 100%;
    height: 233px;
    margin-bottom: 12px;
    border-radius: 4px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    margin-bottom: 12px;
}

.product-category {
    font-size: 12px;
    line-height: 15px;
    color: #667085;
    font-weight: 700;
    margin-bottom: 8px;
}

.product-title {
    font-size: 18px;
    line-height: 20px;
    color: #253D4E;
    margin-bottom: 8px;
    font-weight: 700;
}

.product-description {
    font-size: 14px;
    line-height: 39px;
    color: #000;
    margin-bottom: 8px;
}

.product-supplier {
    font-size: 14px;
    line-height: 24px;
    font-weight: 700;
}

.product-supplier .supplier-label {
    color: #667085;
}

.product-supplier .supplier-name {
    color: #108d52;
}

.product-separator {
    height: 1px;
    background-color: #eaecf0;
    margin: 12px 0;
}

.product-min-order {
    font-size: 12px;
    line-height: 18px;
    font-weight: 500;
}

.product-min-order .min-order-label {
    color: #667085;
}

.product-min-order .min-order-value {
    color: #108d52;
}

.product-actions {
    position: absolute;
    top: 164px;
    right: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 10;
}

.action-btn {
    width: 30px;
    height: 30px;
    border-radius: 4px;
    background-color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.action-btn:hover {
    background-color: #f5f5f5;
}

.action-btn svg {
    width: 18px;
    height: 18px;
}

/* Pagination */
.pagination-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.pagination-btn {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(0, 0, 0, 0.23);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    font-weight:  400;
    color: rgba(0, 0, 0, 0.87);
    transition: all 0.3s ease;
    border-radius: 50%;
    padding: 0;
    background-color: white;
}

.pagination-btn:hover:not(:disabled):not(.active) {
    border-color: #d0d5dd;
    background-color: #f9fafb;
}

.pagination-btn:hover:not(:disabled) {
    border-color: #d0d5dd;
}

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

.pagination-btn.active {
    background-color: #108d52;
    border-color: #108d52;
    color: #fff;
}

.pagination-btn.active:hover {
    background-color: #0d7a45;
    border-color: #0d7a45;
}

.pagination-btn svg {
    width: 16px;
    height: 16px;
    stroke: #667085;
}

.pagination-btn.active svg {
    stroke: #fff;
}

.pagination-btn:disabled svg {
    stroke: #667085;
    opacity: 0.6;
}

.pagination-ellipsis {
    padding: 0 4px;
    color: #667085;
    font-size: 14px;
    display: flex;
    align-items: center;
}

/* =======================
   Verified & Export Section
   ======================= */

.verified-export-section {
    padding: 24px 0;
}

.verified-export-wrapper {
    display: grid;
    grid-template-columns: 640px 1fr;
    gap: 40px;
}

.verified-section,
.export-section {
    background-color: #fff;
}

.verified-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 8px;
    column-gap: 40px;
}

.verified-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    line-height: 20px;
    color: #101828;
}

.verified-item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: #108d52;
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    row-gap: 10px;
    column-gap: 33px;
}

.country-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    line-height: 18px;
    color: #101828;
}

.country-flag {
    width: 16px;
    height: 16px;
    border-radius: 100%;
    object-fit: cover;
}

.country-name {
    flex: 1;
}

/* =======================
   Reviews Section
   ======================= */
.reviews-wrapper {
    display: grid;
    grid-template-columns: 640px 1fr;
    gap: 40px;
}

.reviews-summary {
    background-color: rgba(163, 206, 77, 0.18);
    border-radius: 8px;
    padding: 20px;
}

.reviews-title {
    font-weight: 500;
    font-size: 20px;
    line-height: 20px;
    color: #000;
    margin: 0 0 8px 0;
    padding: 8px 0;
}

.reviews-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.reviews-top-section {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.trust-score {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    flex-shrink: 0;
    width: 143px;
}

.trust-logo {
    font-weight: 700;
    font-size: 10px;
    color: #000;
}

.trust-rating {
    font-weight: 700;
    font-size: 14px;
    color: #000;
}

.trust-stars {
    display: flex;
    gap: 0;
}

.trust-stars img {
    width: 14px;
    height: 12px;
    display: block;
}

.trust-count {
    font-size: 10px;
    color: #667085;
}

.reviews-bottom-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.reviews-description {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.reviews-description p {
    font-size: 14px;
    line-height: 20px;
    color: #667085;
    margin: 0 0 8px 0;
    max-height: 98px;
    overflow: hidden;
}

.reviews-description p.expanded {
    max-height: none;
}


.reviews-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 16px;
    background-color: #e4ebd6;
    border-radius: 8px;
    padding: 12px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-label {
    font-size: 12px;
    color: #667085;
}

.stat-value {
    font-size: 12px;
    font-weight: 600;
    color: #101828;
}

/* Buyer Inquiries */
.buyer-inquiries {
    background-color: #fff;
    border-radius: 8px;
    padding: 12px 0;
}

.inquiries-title {
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: #000;
    margin: 0 0 4px 0;
}

.inquiries-list {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-top: 8px;
}

.inquiry-item {
    padding: 12px 16px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.inquiry-item:last-child {
    border-bottom: none;
}

.inquiry-info {
    flex: 1;
    display: flex;
    align-items: start;
    flex-direction: column;
}

.inquiry-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.inquiry-name {
    font-weight: 500;
    font-size: 14px;
    color: #000;
}

.inquiry-rating {
    display: flex;
    align-items: center;
    gap: 1px;
}

.inquiry-rating img {
    width: 14px;
    height: 14px;
    display: block;
}

.rating-value {
    font-size: 12px;
    color: #FFCB45;
    margin-left: 4px;
}

.inquiry-country {
    border: 1px solid #EAECF0;
    border-radius: 4px;
    padding: 1px 4px;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
}

.inquiry-country .country-flag {
    width: 18px;
    height: 18px;
    display: block;
    object-fit: contain;
    border-radius: 2px;
}

.inquiry-country .country-name {
    font-size: 12px;
    color: #667085;
}

.inquiry-date {
    font-size: 14px;
    color: #667085;
}

/* =======================
   Inquiry Form Section
   ======================= */

.inquiry-form-section {
    padding: 24px 0;
}

.inquiry-form-dialog {
    background-color: #fff;
    border: 1px solid #eaecf0;
    border-radius: 8px;
}

.inquiry-form {
    padding: 16px;
}

.form-recipient {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.form-label {
    font-size: 14px;
    color: #1d2939;
}

.recipient-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.recipient-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #108d52;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    flex-shrink: 0;
}

.recipient-details {
    flex: 1;
}

.recipient-name {
    font-size: 14px;
    color: #1d2939;
}

.recipient-name strong {
    font-weight: 500;
    color: #108d52;
}

.recipient-role {
    color: #667085;
    font-size: 12px;
}

.recipient-company {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #667085;
}

.recipient-company svg {
    width: 18px;
    height: 19px;
}

.form-message-section {
    margin-bottom: 8px;
}

.form-label-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.form-message-field {
    position: relative;
    border: 1px solid #eaecf0;
    border-radius: 8px;
    padding: 10px 14px;
    background-color: #fff;
}

.message-textarea {
    width: 100%;
    min-height: 68px;
    border: none;
    outline: none;
    font-size: 14px;
    font-family: inherit;
    resize: vertical;
    color: #1d2939;
}

.form-fields-row {
    display: flex;
    gap: 12px;
    margin-bottom: 8px;
}

.form-field {
    width: 160px;
    flex-shrink: 0;
}

.form-field .form-input {
    width: 100%;
    padding: 7px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 12px;
    line-height: 20px;
    color: #1d2939;
    background-color: #fff;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.form-field .form-input:hover {
    border-color: #b0b0b0;
}

.form-field .form-input:focus {
    border-color: #108d52;
    box-shadow: 0 0 0 3px rgba(16, 141, 82, 0.1);
}

.form-field .form-input::placeholder {
    color: #9ca3af;
}

.form-field select.form-input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='4' viewBox='0 0 8 4' fill='none'%3E%3Cpath d='M3.99989 3.82C3.73323 3.82 3.49323 3.71333 3.27989 3.5L0.639893 0.86L1.35989 0.18L3.99989 2.82L6.63989 0.18L7.35989 0.86L4.71989 3.5C4.50656 3.71333 4.26656 3.82 3.99989 3.82Z' fill='%23667085'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 12px 12px;
    cursor: pointer;
}

.form-field select.form-input:invalid,
.form-field select.form-input option[value=""]:checked {
    color: #9ca3af;
}

.form-field select.form-input:valid:not([value=""]) {
    color: #1d2939;
}

.form-field select.form-input option {
    color: #1d2939;
}

/* Combined input field */
.form-field-combined {
    display: flex;
    gap: 0;
    position: relative;
    width: 190px;
    flex-shrink: 0;
}

.form-field-combined .form-input-quantity {
    flex: 1;
    min-width: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: none;
}

.form-field-combined .form-input-unit {
    width: 84px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-left: 1px solid #e0e0e0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='4' viewBox='0 0 8 4' fill='none'%3E%3Cpath d='M3.99989 3.82C3.73323 3.82 3.49323 3.71333 3.27989 3.5L0.639893 0.86L1.35989 0.18L3.99989 2.82L6.63989 0.18L7.35989 0.86L4.71989 3.5C4.50656 3.71333 4.26656 3.82 3.99989 3.82Z' fill='%23667085'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 12px 12px;
    cursor: pointer;
    color: #1d2939;
}

.form-field-combined .form-input:focus {
    position: relative;
    z-index: 1;
}

.form-field-combined .form-input-quantity:focus {
    border-right: 1px solid #108d52;
}

.form-field-combined .form-input-unit:focus {
    border-left-color: #108d52;
}

.form-footer {
    padding-top: 12px;
    border-top: 1px solid #eaecf0;
    display: flex;
    justify-content: flex-end;
}

.btn-submit-inquiry {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 24px;
    background-color: #108d52;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit-inquiry:hover {
    background-color: #0a6d3f;
}

.btn-submit-inquiry svg {
    width: 16px;
    height: 16px;
}

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

@media (max-width: 1200px) {
    .general-info-wrapper {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .verified-export-wrapper {
        grid-template-columns: 1fr;
    }
    
    .reviews-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .supplier-information-page {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .supplier-info-container {
        max-width: 100%;
        padding: 0;
    }
    
    .supplier-tabs-wrapper {
        border-radius: 0;
    }
    
    .supplier-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .supplier-tabs::-webkit-scrollbar {
        display: none;
    }
    
    .supplier-tab {
        font-size: 12px;
        padding: 5.892px 11.091px;
        line-height: 18px;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .supplier-tab.active {
        border-radius: 0;
    }
    
    .general-info-section {
        padding: 10px 0;
    }
    
    .general-info-wrapper {
        grid-template-columns: 1fr;
    }
    
    .general-info-content {
        margin-bottom: 10px;
    }
    
    .section-title {
        font-size: 15px;
        line-height: 19px;
    }
    
    .section-separator {
        margin-bottom: 11.61px;
        margin-top: 2px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        row-gap: 8px;
        column-gap: 8px;
    }
    
    .info-item {
        padding: 10px;
        font-size: 12px;
        line-height: 18px;
    }
    
    .info-item:last-child {
        margin-bottom: 0;
    }
    
    .info-item svg {
        width: 18px;
        height: 18px;
    }
    
    .images-section {
        margin-bottom: 10px;
    }
    
    .images-gallery {
        gap: 0;
        position: relative;
    }
    
    .images-container {
        gap: 10.5px;
        padding: 0 28.5px;
        justify-content: center;
        overflow: visible;
    }
    
    .image-item {
        flex: 0 0 139px;
        height: 109px;
        width: 139px;
    }
    
    .gallery-arrow {
        min-width: 18px;
        position: absolute;
        z-index: 10;
    }
    
    .gallery-arrow.prev-arrow {
        left: 0;
    }
    
    .gallery-arrow.next-arrow {
        right: 0;
    }
    .slick-dotted.slick-slider {
        margin-bottom: 0;
    }
    
    .banner-slide-section {
        padding: 10px 0;
    }
    
    .banner-slider {
        height: 147.41px;
        border-radius: 0;
    }
    
    .banner-slider .banner-slide-item {
        height: 147.41px;
    }
    
    .banner-slider-arrow {
        width: 24px;
        height: 24px;
    }
    
    .banner-slider-arrow svg {
        width: 10px;
        height: 10px;
    }
    
    .banner-slider-prev {
        left: 10px;
    }
    
    .banner-slider-next {
        right: 10px;
    }
    
    .company-description-section {
        padding: 10px 0;
    }
    
    
    .description-content {
        font-size: 12px;
        line-height: 18px;
        margin-top: 0;
        padding-bottom: 26px;
    }
    
    .description-gradient {
        bottom: 18px;
    }
    
    .show-more-description-btn {
        font-size: 12px;
        line-height: 18px;
        padding: 0;
    }
    
    .show-more-description-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .show-more-reviews-btn {
        font-size: 12px;
        line-height: 18px;
        padding: 0;
    }
    
    .show-more-reviews-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .products-section {
        padding: 20px 0 10px 0;
    }
    
    .products-section .section-title {
        font-size: 16px;
        line-height: 16px;
    }
    
    .products-section .section-separator {
        margin-top: 0;
        margin-bottom: 13px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        row-gap: 16px;
        margin-bottom: 20px;
    }
    
    .product-card {
        padding: 10px 8px;
        border-radius: 8px;
    }
    
    .product-badges {
        gap: 8px;
        margin-bottom: 10px;
    }
    
    .badge {
        padding: 5px 12px;
        font-size: 11px;
        line-height: 13px;
    }
    
    .badge-verified svg {
        width: 11px;
        height: 11px;
    }
    
    .product-image {
        height: 150px;
        margin-bottom: 10px;
    }
    
    .product-category {
        font-size: 11px;
        line-height: 14px;
        margin-bottom: 6px;
    }
    
    .product-title {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 8px;
    }
    
    .product-supplier {
        font-size: 13px;
        line-height: 18px;
        margin-bottom: 8px;
    }
    
    .product-separator {
        margin: 8px 0;
    }
    
    .product-min-order {
        font-size: 12px;
        line-height: 16px;
        margin-top: 8px;
    }
    
    .product-actions {
        top: 110px;
        right: 8px;
        gap: 6px;
    }
    
    .action-btn {
        width: 28px;
        height: 28px;
    }
    
    .action-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .pagination-nav {
        gap: 4px;
        padding: 8px 0;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .pagination-btn {
        width: 30px;
        height: 30px;
        font-size: 13px;
        line-height: 13px;
        min-width: 30px;
    }
    
    .pagination-btn svg {
        width: 14px;
        height: 14px;
    }
    
    .pagination-ellipsis {
        padding: 0 2px;
        font-size: 13px;
        display: flex;
        align-items: center;
        min-width: 20px;
    }
    
    .verified-export-section {
        padding: 20px 0 10px 0;
    }
    
    .verified-export-wrapper {
        grid-template-columns: 177px 177px;
        gap: 16px;
    }
    
    .verified-section,
    .export-section {
        padding: 11.61px 0;
    }
    
    .verified-section .section-title,
    .export-section .section-title {
        font-size: 15px;
        line-height: 15px;
    }
    
    .verified-section .section-separator,
    .export-section .section-separator {
        margin-top: 2px;
        margin-bottom: 6.48px;
    }
    
    .verified-list {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .verified-item {
        font-size: 12px;
        line-height: 18px;
        padding: 0;
        margin-bottom: 0;
    }
    
    .verified-item:last-child {
        margin-bottom: 0;
    }
    
    .verified-item svg {
        width: 14px;
        height: 14px;
    }
    
    .countries-grid {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .country-item {
        font-size: 12px;
        line-height: 18px;
        margin-bottom: 0;
        gap: 8px;
    }
    
    .country-flag {
        width: 14px;
        height: 14px;
    }
    
    .reviews-section {
        padding-bottom: 20px;
    }
    
    .reviews-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .reviews-summary {
        padding: 12px;
    }
    
    .reviews-title {
        font-size: 15px;
        line-height: 15px;
        margin-bottom: 8px;
        padding: 0;
    }
    
    .reviews-content {
        gap: 16px;
    }
    
    .reviews-top-section {
        flex-direction: column;
        gap: 16px;
    }
    
    .trust-score {
        padding: 25px 40px;
        width: 100%;
        max-width: 143px;
        margin: 0 auto;
    }
    
    .trust-logo {
        font-size: 10px;
    }
    
    .trust-rating {
        font-size: 14px;
    }
    
    .trust-stars img {
        width: 12px;
        height: 12px;
    }
    
    .trust-count {
        font-size: 10px;
    }
    
    .reviews-description {
        width: 100%;
    }
    
    .reviews-description p {
        font-size: 12px;
        line-height: 18px;
        max-height: 98px;
    }
    
    .reviews-bottom-section {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    
    .reviews-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        padding: 12px;
        margin-top: 0;
    }
    
    .stat-item {
        gap: 4px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .stat-value {
        font-size: 12px;
    }
    
    .buyer-inquiries {
        padding: 0;
    }
    
    .inquiries-title {
        font-size: 15px;
        line-height: 20px;
        margin-bottom: 4px;
    }
    
    .inquiries-list {
        margin-top: 8px;
    }
    
    .inquiry-item {
        padding: 12px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .inquiry-info {
        width: 100%;
    }
    
    .inquiry-header {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .inquiry-name {
        font-size: 12px;
    }
    
    .inquiry-rating img {
        width: 11px;
        height: 10px;
    }
    
    .rating-value {
        font-size: 12px;
    }
    
    .inquiry-country {
        margin-top: 4px;
    }
    
    .inquiry-date {
        font-size: 12px;
        align-self: flex-end;
        margin-top: -24px;
    }
    
    .inquiry-form-section {
        padding: 20px 0;
    }
    
    .inquiry-form-dialog {
        padding: 0;
    }
    
    .inquiry-form {
        padding: 12px;
    }
    
    .form-recipient {
        margin-bottom: 16px;
    }
    
    .form-label {
        font-size: 14px;
        line-height: 20px;
    }
    
    .recipient-avatar {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .recipient-name {
        font-size: 14px;
        line-height: 21px;
    }
    
    .recipient-role {
        font-size: 12px;
        line-height: 20px;
    }
    
    .recipient-company {
        font-size: 12px;
        line-height: 18px;
    }
    
    .form-message-section {
        margin-bottom: 8px;
    }
    
    .form-label-row {
        margin-bottom: 8px;
    }
    
    .form-label-row .form-label {
        font-size: 14px;
        line-height: 24px;
    }
    
    .form-message-field {
        padding: 10px 14px;
    }
    
    .message-textarea {
        min-height: 68px;
        font-size: 14px;
    }
    
    .form-fields-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        margin-bottom: 8px;
    }
    
    .form-field {
        width: 100%;
    }
    
    .form-field .form-input {
        font-size: 12px;
    }
    
    .form-field-combined {
        width: 100%;
        max-width: 100%;
    }
    
    .form-field-combined .form-input-quantity,
    .form-field-combined .form-input-unit {
        font-size: 12px;
    }
    
    .form-field-combined .form-input-quantity {
        flex: 1;
    }
    
    .form-field-combined .form-input-unit {
        width: 74px;
    }
    
    .form-footer {
        padding-top: 12px;
    }
    
    .btn-submit-inquiry {
        padding: 7.5px 29.5px;
        font-size: 14px;
        line-height: 21px;
    }
    
    .btn-submit-inquiry svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .verified-export-wrapper {
        grid-template-columns: 1fr;
    }
    
    .countries-grid {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        row-gap: 10px;
        column-gap: 20px;
    }
    
    .country-item {
        font-size: 12px;
        line-height: 18px;
        gap: 8px;
    }
    
    .country-flag {
        width: 14px;
        height: 14px;
    }
    
    .form-field,
    .form-field-combined {
        width: 100%;
    }
    
    .form-field-combined {
        max-width: 100%;
    }
    
    .form-field .form-input {
        touch-action: manipulation;
        font-size: 12px;
    }
    
    .btn-submit-inquiry {
        max-width: 100%;
        touch-action: manipulation;
    }
    
    .reviews-top-section {
        flex-direction: column;
    }
    
    .trust-score {
        width: 100%;
        max-width: 143px;
        margin: 0 auto;
    }
    
    .pagination-nav {
        gap: 3px;
        padding: 6px 0;
    }
    
    .pagination-btn {
        width: 28px;
        height: 28px;
        font-size: 12px;
        min-width: 28px;
    }
    
    .pagination-btn svg {
        width: 12px;
        height: 12px;
    }
    
    .pagination-ellipsis {
        font-size: 12px;
        padding: 0 2px;
    }
}


