/* --- PER PIECE PRICE --- */
.b2b-per-piece-price {
    font-size: 0.85em; /* Little font */
    font-weight: 800;   /* Bold font */
    display: inline-block;
    color: #333;
    margin-bottom: 5px;
}

/* The "/ piece" label styling */
.b2b-per-piece-price .b2b-unit-label { 
    font-weight: 400; /* Keep the unit label normal weight */
    font-size: 0.9em; 
    color: #666; 
    margin-left: 2px;
}

/* --- MOQ (Minimum Order Quantity) --- */
.b2b-display-moq {
    color: #e67e22; /* Different Color (Vibrant Orange) */
    font-weight: 700;
    font-size: 0.9em;
    margin-top: 5px;
    display: block;
    text-transform: uppercase; /* Make it stand out more */
    letter-spacing: 0.5px;
}

/* --- SIZE RATIO (Colorful Box) --- */
.b2b-display-ratio {
    /* Colorful Box Styling */
    background-color: #e8f8f5; /* Light Mint/Green background */
    color: #00695c;            /* Dark Teal text */
    border: 1px solid #4db6ac; /* Teal Border */
    
    /* Box Layout */
    display: inline-block;
    padding: 6px 12px;
    border-radius: 6px;         /* Rounded corners */
    margin-bottom: 10px;
    margin-top: 5px;
    
    /* Typography */
    font-weight: 600;
    font-size: 0.85em;
    
    /* Visual depth */
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* --- PACKETS INFO (HIGHLIGHTED) --- */
.b2b-highlight-packet-single {
    background-color: #e3f2fd; /* Light Blue */
    color: #1565c0;            /* Dark Blue */
    padding: 8px 12px;
    border-radius: 4px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
    border: 1px solid #bbdefb;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    display: block;
}

.b2b-highlight-packet-cart {
    background-color: #fff3e0; /* Light Orange */
    color: #ef6c00;            /* Dark Orange */
    font-size: 0.8em;
    padding: 4px 8px;
    border-radius: 3px;
    font-weight: bold;
    display: inline-block;
    margin-top: 5px;
    border: 1px solid #ffe0b2;
}