.omc-conf {
    margin: 20px 0;
}

/* Price bar */
.omc-conf-price-bar {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
}

.omc-conf-price-label {
    font-size: 14px;
    color: #777;
}

.omc-conf-price-value {
    font-size: 28px;
    font-weight: 700;
    color: #111;
}

/* Steps */
.omc-step {
    margin-bottom: 28px;
}

.omc-step-title {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: #333;
    margin-bottom: 12px;
}

.omc-optional {
    font-weight: 400;
    font-size: 12px;
    text-transform: none;
    color: #999;
}

/* Tooltip — identical to theme overwrite.css */
.omc-tooltip-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 16px;
    font-size: 12px;
    font-family: sans-serif;
    font-weight: 400;
    cursor: default;
    vertical-align: text-top;
    margin: 0 5px;
    position: relative;
}

.omc-tooltip-icon .omc-tooltip {
    display: none;
    position: absolute;
    background: rgba(0, 0, 0, .9);
    border-radius: 5px 5px 5px 0;
    bottom: 23px;
    left: 2px;
    color: #fff;
    padding: 10px;
    z-index: 98;
    width: 230px;
    font-family: sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5em;
    cursor: default;
    white-space: normal;
}

.omc-tooltip-icon:hover .omc-tooltip {
    display: block;
}

.omc-tooltip-icon:hover::before {
    content: "";
    position: absolute;
    border: solid;
    border-color: #222 transparent;
    border-width: 6px 6px 0;
    bottom: 17px;
    left: 2px;
    z-index: 99;
}

/* Product cards */
.omc-products-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.omc-product-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    padding: 12px;
    width: 140px;
    cursor: pointer;
    transition: border-color .15s, box-shadow .15s;
    text-align: center;
}

.omc-product-card:hover {
    border-color: #aaa;
}

.omc-product-card.omc-selected {
    border-color: #333;
    box-shadow: 0 0 0 1px #333;
}

.omc-product-card img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 8px;
}

.omc-product-card-name {
    font-size: 12px;
    line-height: 1.3;
    margin-bottom: 4px;
}

.omc-product-card-price {
    font-size: 13px;
    font-weight: 600;
}

/* Attribute options */
.omc-attr-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.omc-attr-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    padding: 10px;
    min-width: 80px;
    cursor: pointer;
    transition: border-color .15s, box-shadow .15s;
    text-align: center;
}

.omc-attr-option:hover {
    border-color: #aaa;
}

.omc-attr-option.omc-selected {
    border-color: #333;
    box-shadow: 0 0 0 1px #333;
}

.omc-attr-option img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 6px;
}

.omc-color-swatch {
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,.1);
    margin-bottom: 6px;
}

.omc-attr-label {
    font-size: 12px;
    line-height: 1.3;
}

.omc-modifier {
    display: block;
    font-size: 11px;
    color: #777;
    margin-top: 2px;
}

/* Extra product options */
.omc-extra-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.omc-extra-option {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    padding: 10px 14px;
    cursor: pointer;
    transition: border-color .15s, box-shadow .15s;
    min-width: 180px;
}

.omc-extra-option:hover {
    border-color: #aaa;
}

.omc-extra-option.omc-selected {
    border-color: #333;
    box-shadow: 0 0 0 1px #333;
}

.omc-extra-none {
    color: #777;
    font-size: 13px;
    font-style: italic;
}

.omc-extra-option img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    flex-shrink: 0;
}

.omc-extra-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.omc-extra-name {
    font-size: 13px;
    font-weight: 500;
}

.omc-extra-price {
    font-size: 12px;
    color: #555;
}

/* Footer */
.omc-conf-footer {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.omc-conf-error {
    display: none;
    color: #c00;
    font-size: 13px;
    margin-bottom: 10px;
}