.store-header {
    text-align: center;
    margin: 40px 0 20px;
}

.store-box {
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 12px;
    padding: 20px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.3s ease;
}

.store-box:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.store-connect-btn {
    padding: 10px 20px;
    background-color: #0d6efd;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
}

.store-connect-btn:hover {
    background-color: #0b5ed7;
}

.store-details {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    justify-content: space-between;
}

.store-info {
    flex: 1;
}

.store-info h6 {
    margin: 0;
    font-weight: 600;
    font-size: 16px;
}

.store-info small {
    color: #6c757d;
}

.store-logo {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    object-fit: contain;
}

.store-remove-btn {
    background-color: #dc3545;
    border: none;
    padding: 6px 12px;
    font-size: 13px;
    border-radius: 6px;
    color: #fff;
}

.store-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.store-popup-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.store-popup-content h5 {
    font-weight: 600;
    margin-bottom: 20px;
}

.store-popup-content .platform-btn {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    font-weight: 500;
    font-size: 14px;
    border: none;
    border-radius: 6px;
    color: white;
}

.platform-shopify {
    background-color: #95bf47;
}

.platform-ebay {
    background-color: #e53238;
}

.platform-tiktok {
    background-color: #000000;
}

.platform-cancel {
    background-color: #6c757d;
}

@media (max-width: 768px) {
    .store-box {
        height: auto;
    }
}