#esw-tech-specs-card {
    background: #f8f9fa;
    border: 1px solid #e1e4e8;
    border-radius: 6px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
#esw-tech-specs-card h3 {
    margin-top: 0;
    font-size: 1.1em;
    color: #2c3e50;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
    margin-bottom: 15px;
}
.esw-spec-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
}
.esw-spec-item {
    font-size: 0.95em;
    border-bottom: 1px dotted #ccc;
    padding-bottom: 5px;
}
.esw-spec-item .esw-label {
    font-weight: 600;
    color: #555;
}
.esw-spec-item .esw-val {
    float: right;
    color: #222;
}
.esw-highlight-price {
    grid-column: 1 / -1;
    background: #ebf5fa;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #b8daff;
    border-bottom: none;
    font-size: 1.1em;
}
.esw-highlight-price .esw-val {
    font-weight: 700;
    color: #0056b3;
}
.esw-dynamic-price {
    background: #e8f5e9;
    padding: 15px;
    border-radius: 5px;
    border-left: 4px solid #4caf50;
    margin: 15px 0;
}
.esw-dynamic-price span {
    display: block;
    font-size: 1.1em;
}
.esw-dynamic-price .esw-pkg-price {
    font-weight: 700;
    font-size: 1.3em;
    color: #2e7d32;
    margin-top: 5px;
}
.esw-variant-table-container {
    margin-top: 50px;
    overflow-x: auto;
}
.esw-variant-table-container h2 {
    font-size: 1.4em;
    border-bottom: 2px solid #2c3e50;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.esw-variant-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.esw-variant-table th, .esw-variant-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}
.esw-variant-table th {
    background: #2c3e50;
    color: #fff;
    font-weight: 600;
}
.esw-variant-table tr:hover {
    background-color: #f5f5f5;
}
@media (max-width: 768px) {
    .esw-spec-grid {
        grid-template-columns: 1fr;
    }
}

/* B2B Pricing UI */
.esw-b2b-primary-price {
    background: #f0fdf4;
    border: 2px solid #22c55e;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    margin-bottom: 15px;
}
.esw-b2b-price-amount {
    font-size: 32px;
    font-weight: 800;
    color: #166534;
    line-height: 1.2;
}
.esw-b2b-price-suffix {
    font-size: 16px;
    font-weight: 600;
    color: #15803d;
    text-transform: uppercase;
}
.esw-b2b-price-contains {
    font-size: 14px;
    font-weight: 600;
    color: #166534;
    margin-top: 5px;
}
.esw-b2b-secondary-price {
    text-align: center;
    font-size: 14px;
    color: #64748b;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #cbd5e1;
}
.esw-b2b-secondary-price strong {
    color: #475569;
}
