.stores-title {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
    border-bottom: 2px solid #4CAF50;
    padding-bottom: 10px;
    font-size: 1.5rem;
}

.store-variations-selector {
    margin-bottom: 20px;
    padding: 15px;
    background: #f5f5f5;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.store-variations-selector label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

.store-select {
    width: 100%;
    padding: 10px;
    border: 2px solid #4CAF50;
    border-radius: 5px;
    font-size: 14px;
    background: white;
}

.all-variations-container {
    position: relative;
}

.hexo-fee-store-stores-container .store-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    margin-top: 30px;
    position: relative;
    transition: all 0.3s ease;
    min-height: 120px;
}

.hexo-fee-store-stores-container .store-row:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.variation-badge {
    position: absolute;
    top: -20px;
    right: 20px;
    background: #4CAF50;
    color: white;
    padding: 3px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: bold;
    z-index: 2;
    max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: none;
}

.store-info {
    flex: 1;

}

.store-header {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    position: relative;
}

.store-title {
    color: white;
    padding: 12px 16px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 18px;
    margin-left: 10px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.store-badge {
    background-color: white;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: bold;
    position: absolute;
    bottom: -15px;
    right: 25%;
    left: 25%;
    line-height: 0;
    padding: 10px 7.5px;
    font-size: 10px;
    text-align: center;
    font-weight: 700;
}

.payment-type {
    font-size: 14px;
    font-weight: bold;
}

.store-description {
    margin: 5px 0;
    color: #666;
    font-size: 13px;
    line-height: 1.4;
}

.store-gateways {
    font-size: 12px;
    color: #666;
    margin-top: 15px;
}

.gateway-check {
    color: var(--hfs-primary-color);
    margin-left: 5px;
}

.store-action {
    text-align: center;
    min-width: 150px;
    max-width: 250px;
}

.price-container {
    margin-bottom: 10px;
}

.price-container .store-price {
    font-size: 20px;
    font-weight: 700;
}

.price-details {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 12px;
    color: #666;
    margin-bottom: 3px;
    display: none;
}

.original-price {
    text-decoration: line-through;
    color: #999;
}

.percentage-increase {
    color: var(--hfs-primary-color);
    font-weight: bold;
}

.price-label {
    font-size: 12px;
    color: #666;
}

.hexo-fee-store-stores-container  .button.add-to-cart-store {
    background: var(--hfs-add-to-cart-store-button-background-color, linear-gradient(135deg, var(--hfs-primary-color), color-mix(in srgb, var(--hfs-primary-color) 80%, transparent)));
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-weight: 700;
    font-size: 14px;
    width: 100%;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 5px;
}

.hexo-fee-store-stores-container  .button.add-to-cart-store:hover {
    background: linear-gradient(135deg, var(--hfs-primary-color), color-mix(in srgb, var(--hfs-primary-color) 80%, transparent));
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.store-variation-wrapper {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .hexo-fee-store-stores-container .store-row {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 35px 10px;
    }
    .hexo-fee-store-stores-container .store-action {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .hexo-fee-store-stores-container  .button.add-to-cart-store {
        width: auto;
        align-self: center;
    }
    .store-info {
        padding-right: 0;
        margin-bottom: 15px;
        width: 100%;
    }
    
    .store-header {
        justify-content: center;
        flex-direction: column;
        gap: 10px;
    }
    
    .store-action {
        width: 100%;
        max-width: none;
    }
    
    .variation-badge {
        right: 50%;
        transform: translateX(50%);
        max-width: 90%;
    }
    
    .store-variations-selector {
        padding: 10px;
    }
}

.variation-row {
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.variation-row.active {
    opacity: 1;
    transform: translateY(0);
    display: flex !important;
}

.no-variation-selected {
    text-align: center;
    padding: 40px 20px;
    color: #666;
    font-size: 16px;
    background: #f9f9f9;
    border-radius: 10px;
    border: 2px dashed #ddd;
}

.no-variation-selected i {
    font-size: 40px;
    margin-bottom: 15px;
    display: block;
    color: var(--hfs-primary-color);
}

.hexo-fee-store-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #fff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 0.8s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}