.trustlex-bulk-pricing-container {
    margin: 20px 0;
    font-family: inherit;
}

.trustlex-bulk-pricing-title {
    margin: 0 0 15px 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.trustlex-bulk-pricing-wrapper {
    width: 100%;
}

.trustlex-bulk-pricing-scroll {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 10px 0;
    flex-wrap: wrap;
}

.trustlex-bulk-pricing-tier {
    flex: 1;
    min-width: 180px;
    max-width: 280px;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.trustlex-tier-header {
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f0f0f0;
}

.trustlex-tier-qty {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.trustlex-tier-discount {
    display: inline-block;
    background: #419073;
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 12px;
}

.trustlex-tier-price {
    margin: 12px 0;
}

.trustlex-unit-price {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #419073;
    line-height: 1.2;
}

.trustlex-unit-label {
    display: block;
    font-size: 12px;
    color: #666;
    margin-top: 2px;
}

.trustlex-tier-savings {
    margin-top: 12px;
    padding-top: 8px;
    border-top: 1px solid #f0f0f0;
}

.trustlex-savings-text {
    font-size: 13px;
    color: #419073;
    font-weight: 600;
}



/* Mobile optimizations */
@media (max-width: 768px) {
    .trustlex-bulk-pricing-scroll {
        flex-direction: column;
        gap: 10px;
    }

    /* Hide all but the first tier initially on mobile */
    .trustlex-bulk-pricing-scroll .trustlex-bulk-pricing-tier:not(:first-child) {
        display: none;
    }

    /* When the container has the 'show-all-tiers' class, display them */
    .trustlex-bulk-pricing-scroll.show-all-tiers .trustlex-bulk-pricing-tier {
        display: block;
    }
    
    .trustlex-bulk-pricing-tier {
        min-width: auto;
        max-width: none;
        padding: 12px;
    }
    
    .trustlex-tier-qty {
        font-size: 14px;
    }
    
    .trustlex-unit-price {
        font-size: 18px;
    }
}

.trustlex-show-all-btn {
    display: none; /* Hidden by default */
    background: none;
    border: none;
    color: #419073; /* Green color */
    text-decoration: underline;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 15px;
    padding: 0;
}

@media (max-width: 768px) {
    .trustlex-show-all-btn {
        display: block; /* Show only on mobile */
    }

    /* Hide button after it has been clicked */
    .trustlex-bulk-pricing-scroll.show-all-tiers + .trustlex-show-all-btn {
        display: none;
    }
}

/* Tech Info Styles */
.trustlex-tech-info-container {
    margin: 15px 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.trustlex-tech-info-text {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin: 0;
    padding: 0;
}

@media (max-width: 768px) {
    .trustlex-tech-info-text {
        font-size: 13px;
    }
} 