.other-sellers-btn {
    display: inline-block;
    background: #0073e6;
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 12px;
}
.other-sellers-btn:hover {
    background: #005bb5;
}

#other-sellers-panel {
    position: fixed;
    top: 0;
    right: -400px; /* start hidden */
    width: 400px;
    height: 100%;
    background: #fff;
    box-shadow: -2px 0 8px rgba(0,0,0,0.2);
    transition: right 0.3s ease;
    z-index: 9999;
    overflow-y: auto;
    font-family: Arial, sans-serif;
}

#other-sellers-panel .panel-content {
    padding: 20px;
}

#other-sellers-panel #close-panel {
    margin: 20px 0 0 0;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    float: right;
    color: #555;
}

#other-sellers-panel #close-panel:hover {
    color: #000;
}

/* Title */
#other-sellers-panel h2 {
    font-size: 20px;
    margin: 20px 0 20px;
    font-weight: 600;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

/* Seller wrapper (card style) */
#other-sellers-panel .os-product-wrapper {
    border: 1px solid #e6e6e6;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 15px;
    background: #fafafa;
    transition: box-shadow 0.2s ease;
}

#other-sellers-panel .os-product-wrapper:hover {
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Price section */
#other-sellers-panel .os-price {
    font-size: 23px;
    color: #f5ca33;
    margin-bottom: 5px;
}

#other-sellers-panel .os-price .small-price-label {
    font-size: 14px !important;
    color: #7c7c7c !important;
}

#other-sellers-panel .os-price .price-small {
    font-size: 18px !important;
    color: #555 !important;
}

#other-sellers-panel .os-reward-percentage {
    font-size: 14px;
    color: #555;
    font-weight: 500;
}

/* Seller details */
#other-sellers-panel .os-details {
    font-size: 14px;
    color: #555;
    margin: 10px 0;
}

#other-sellers-panel .os-details a {
    color: #0066c0;
    text-decoration: none;
}

#other-sellers-panel .os-details a:hover {
    text-decoration: underline;
}

/* Button wrapper */
#other-sellers-panel .os-button-wrapper {
    text-align: right;
}

#other-sellers-panel .os-add-to-cart-button {
    display: inline-block;
    background: #f7ca00;
    border: 1px solid #f7ca00;
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 600;
    color: #1d1d1d;
    text-decoration: none;
    transition: background 0.2s ease;
}

#other-sellers-panel .os-add-to-cart-button:hover {
    background: #f2bf37;
    border-color: #f2bf37;
}

#other-sellers-panel .os-pagination-button {
    display: inline-block;
    background: none;
    border: none;
    color: #0073e6;
    border-radius: 0;
    padding: 0 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    transition: color 0.2s ease;
}

#other-sellers-panel .os-pagination-button.active {
    font-weight: bold;
    color: #000;
    text-decoration: none;
}

#other-sellers-panel .os-pagination-button.disabled {
    color: #aaa;
    cursor: default;
    text-decoration: none;
}

#other-sellers-panel .os-pagination-button:hover:not(.disabled):not(.active) {
    color: #0056b3;         /* hover color */
}


.single-product .information .price .woocommerce-Price-amount {
    font-size: 24px;
    line-height: 38px;
}

.small-price-label {
    font-size: 14px !important;
    color: #7c7c7c;
}

.price-small {
    font-size: 18px !important;
    color: #555 !important;
}

/* Simple circle spinner */
.os-spinner {
    display: inline-block;
    width: 32px;
    height: 32px;
    border: 3px solid rgba(0,0,0,0.1);
    border-top-color: #0073aa;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 10px auto;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.os-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80px;
}

.attribute-variations-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.attribute-variation {
    position: relative;
    display: inline-block;
    padding: 8px 14px;
    margin: 4px;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-align: center;
    text-decoration: none;
    color: #333;
    min-width: 50px;
}

.attribute-variation.available {
    color: #333;
}
.attribute-variation.available:hover {
    border-color: #000;
}

.selected-variation {
    background: #f5f5f5;
    border-color: #000;
    font-weight: bold;
}
.attribute-variation.unavailable {
    color: #999;
    cursor: not-allowed;
}

/* Add diagonal line */
.attribute-variation.unavailable::after {
    content: "";
    position: absolute;
    top: 50%;
    left: -10%;
    width: 110%;
    height: 1px;
    background: #999;
    transform: rotate(-45deg); /* adjust angle */
    transform-origin: center;
}

.product-block .price .price-small {
    font-size: 13px !important;
    color: #555 !important;
}

.product-block .price .price-small .small-price-label {
    font-size: 12px !important;
}

.product-block .variation-reward {
    font-size: 13px !important;
}

.product-block .wcfm_dashboard_item_title {
    font-size: 13px !important;
}

.star-rating-wrapper {
    display: inline-flex;
    align-items: center;
    font-size: 1rem;
    gap: 0.5em;
}

.star-rating {
    position: relative;
    display: inline-block;
    font-size: 1em;
    line-height: 1;
    width: 5em; /* 5 stars */
    height: 1em;
    background-size: 1em 1em;
}

.star-rating span {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-size: 1em 1em;
    overflow: hidden;
}

.rating-text {
    font-size: 0.875rem;
}

.display-vpound-currency {
    /*color: #FFF !important;*/
}

#consumer-reward-balance-heading p.header-reward-balance {
    line-height: 1.3em;
    margin-bottom: 0;
}
.header-reward-balance-title {
    font-size: 12px;
    color: #FFF;
}